1. Packages
  2. Intersight Provider
  3. API Docs
  4. HyperflexClusterProfile
intersight 1.0.63 published on Wednesday, Apr 16, 2025 by ciscodevnet

intersight.HyperflexClusterProfile

Explore with Pulumi AI

A profile specifying configuration settings for a HyperFlex cluster.

Usage Example

Resource Creation

import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";

const hyperflexClusterProfile1 = new intersight.HyperflexClusterProfile("hyperflexClusterProfile1", {
    storageDataVlans: [{
        name: "hx-storage-data",
        vlanId: 27,
        objectType: "hyperflex.NamedVlan",
    }],
    mgmtIpAddress: "10.225.68.237",
    macAddressPrefix: "00:25:B5:D5",
    mgmtPlatform: "EDGE",
    replication: 3,
    description: "This is hyperflex cluster profile",
    tags: [{
        key: "test",
        value: "ucsback-10G-3nodehx-cluster-",
    }],
    organizations: [{
        objectType: "organization.Organization",
        moid: _var.organization,
    }],
});
Copy
import pulumi
import pulumi_intersight as intersight

hyperflex_cluster_profile1 = intersight.HyperflexClusterProfile("hyperflexClusterProfile1",
    storage_data_vlans=[{
        "name": "hx-storage-data",
        "vlan_id": 27,
        "object_type": "hyperflex.NamedVlan",
    }],
    mgmt_ip_address="10.225.68.237",
    mac_address_prefix="00:25:B5:D5",
    mgmt_platform="EDGE",
    replication=3,
    description="This is hyperflex cluster profile",
    tags=[{
        "key": "test",
        "value": "ucsback-10G-3nodehx-cluster-",
    }],
    organizations=[{
        "object_type": "organization.Organization",
        "moid": var["organization"],
    }])
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := intersight.NewHyperflexClusterProfile(ctx, "hyperflexClusterProfile1", &intersight.HyperflexClusterProfileArgs{
			StorageDataVlans: intersight.HyperflexClusterProfileStorageDataVlanArray{
				&intersight.HyperflexClusterProfileStorageDataVlanArgs{
					Name:       pulumi.String("hx-storage-data"),
					VlanId:     pulumi.Float64(27),
					ObjectType: pulumi.String("hyperflex.NamedVlan"),
				},
			},
			MgmtIpAddress:    pulumi.String("10.225.68.237"),
			MacAddressPrefix: pulumi.String("00:25:B5:D5"),
			MgmtPlatform:     pulumi.String("EDGE"),
			Replication:      pulumi.Float64(3),
			Description:      pulumi.String("This is hyperflex cluster profile"),
			Tags: intersight.HyperflexClusterProfileTagArray{
				&intersight.HyperflexClusterProfileTagArgs{
					Key:   pulumi.String("test"),
					Value: pulumi.String("ucsback-10G-3nodehx-cluster-"),
				},
			},
			Organizations: intersight.HyperflexClusterProfileOrganizationArray{
				&intersight.HyperflexClusterProfileOrganizationArgs{
					ObjectType: pulumi.String("organization.Organization"),
					Moid:       pulumi.Any(_var.Organization),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;

return await Deployment.RunAsync(() => 
{
    var hyperflexClusterProfile1 = new Intersight.HyperflexClusterProfile("hyperflexClusterProfile1", new()
    {
        StorageDataVlans = new[]
        {
            new Intersight.Inputs.HyperflexClusterProfileStorageDataVlanArgs
            {
                Name = "hx-storage-data",
                VlanId = 27,
                ObjectType = "hyperflex.NamedVlan",
            },
        },
        MgmtIpAddress = "10.225.68.237",
        MacAddressPrefix = "00:25:B5:D5",
        MgmtPlatform = "EDGE",
        Replication = 3,
        Description = "This is hyperflex cluster profile",
        Tags = new[]
        {
            new Intersight.Inputs.HyperflexClusterProfileTagArgs
            {
                Key = "test",
                Value = "ucsback-10G-3nodehx-cluster-",
            },
        },
        Organizations = new[]
        {
            new Intersight.Inputs.HyperflexClusterProfileOrganizationArgs
            {
                ObjectType = "organization.Organization",
                Moid = @var.Organization,
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.HyperflexClusterProfile;
import com.pulumi.intersight.HyperflexClusterProfileArgs;
import com.pulumi.intersight.inputs.HyperflexClusterProfileStorageDataVlanArgs;
import com.pulumi.intersight.inputs.HyperflexClusterProfileTagArgs;
import com.pulumi.intersight.inputs.HyperflexClusterProfileOrganizationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var hyperflexClusterProfile1 = new HyperflexClusterProfile("hyperflexClusterProfile1", HyperflexClusterProfileArgs.builder()
            .storageDataVlans(HyperflexClusterProfileStorageDataVlanArgs.builder()
                .name("hx-storage-data")
                .vlanId(27)
                .objectType("hyperflex.NamedVlan")
                .build())
            .mgmtIpAddress("10.225.68.237")
            .macAddressPrefix("00:25:B5:D5")
            .mgmtPlatform("EDGE")
            .replication(3)
            .description("This is hyperflex cluster profile")
            .tags(HyperflexClusterProfileTagArgs.builder()
                .key("test")
                .value("ucsback-10G-3nodehx-cluster-")
                .build())
            .organizations(HyperflexClusterProfileOrganizationArgs.builder()
                .objectType("organization.Organization")
                .moid(var_.organization())
                .build())
            .build());

    }
}
Copy
resources:
  hyperflexClusterProfile1:
    type: intersight:HyperflexClusterProfile
    properties:
      storageDataVlans:
        - name: hx-storage-data
          vlanId: 27
          objectType: hyperflex.NamedVlan
      mgmtIpAddress: 10.225.68.237
      macAddressPrefix: 00:25:B5:D5
      mgmtPlatform: EDGE
      replication: 3
      description: This is hyperflex cluster profile
      tags:
        - key: test
          value: ucsback-10G-3nodehx-cluster-
      organizations:
        - objectType: organization.Organization
          moid: ${var.organization}
Copy

Create HyperflexClusterProfile Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new HyperflexClusterProfile(name: string, args?: HyperflexClusterProfileArgs, opts?: CustomResourceOptions);
@overload
def HyperflexClusterProfile(resource_name: str,
                            args: Optional[HyperflexClusterProfileArgs] = None,
                            opts: Optional[ResourceOptions] = None)

@overload
def HyperflexClusterProfile(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            account_moid: Optional[str] = None,
                            action: Optional[str] = None,
                            action_params: Optional[Sequence[HyperflexClusterProfileActionParamArgs]] = None,
                            additional_properties: Optional[str] = None,
                            ancestors: Optional[Sequence[HyperflexClusterProfileAncestorArgs]] = None,
                            associated_clusters: Optional[Sequence[HyperflexClusterProfileAssociatedClusterArgs]] = None,
                            auto_supports: Optional[Sequence[HyperflexClusterProfileAutoSupportArgs]] = None,
                            class_id: Optional[str] = None,
                            cluster_internal_subnets: Optional[Sequence[HyperflexClusterProfileClusterInternalSubnetArgs]] = None,
                            cluster_networks: Optional[Sequence[HyperflexClusterProfileClusterNetworkArgs]] = None,
                            cluster_storages: Optional[Sequence[HyperflexClusterProfileClusterStorageArgs]] = None,
                            config_contexts: Optional[Sequence[HyperflexClusterProfileConfigContextArgs]] = None,
                            config_results: Optional[Sequence[HyperflexClusterProfileConfigResultArgs]] = None,
                            create_time: Optional[str] = None,
                            data_ip_address: Optional[str] = None,
                            deployed_policies: Optional[Sequence[str]] = None,
                            description: Optional[str] = None,
                            domain_group_moid: Optional[str] = None,
                            ext_fc_storages: Optional[Sequence[HyperflexClusterProfileExtFcStorageArgs]] = None,
                            ext_iscsi_storages: Optional[Sequence[HyperflexClusterProfileExtIscsiStorageArgs]] = None,
                            host_name_prefix: Optional[str] = None,
                            httpproxypolicies: Optional[Sequence[HyperflexClusterProfileHttpproxypolicyArgs]] = None,
                            hyperflex_cluster_profile_id: Optional[str] = None,
                            hypervisor_control_ip_address: Optional[str] = None,
                            hypervisor_type: Optional[str] = None,
                            is_nic_based: Optional[bool] = None,
                            local_credentials: Optional[Sequence[HyperflexClusterProfileLocalCredentialArgs]] = None,
                            mac_address_prefix: Optional[str] = None,
                            mgmt_ip_address: Optional[str] = None,
                            mgmt_platform: Optional[str] = None,
                            mod_time: Optional[str] = None,
                            moid: Optional[str] = None,
                            name: Optional[str] = None,
                            node_configs: Optional[Sequence[HyperflexClusterProfileNodeConfigArgs]] = None,
                            node_profile_configs: Optional[Sequence[HyperflexClusterProfileNodeProfileConfigArgs]] = None,
                            object_type: Optional[str] = None,
                            organizations: Optional[Sequence[HyperflexClusterProfileOrganizationArgs]] = None,
                            owners: Optional[Sequence[str]] = None,
                            parents: Optional[Sequence[HyperflexClusterProfileParentArgs]] = None,
                            permission_resources: Optional[Sequence[HyperflexClusterProfilePermissionResourceArgs]] = None,
                            policy_buckets: Optional[Sequence[HyperflexClusterProfilePolicyBucketArgs]] = None,
                            proxy_settings: Optional[Sequence[HyperflexClusterProfileProxySettingArgs]] = None,
                            removed_policies: Optional[Sequence[str]] = None,
                            replication: Optional[float] = None,
                            running_workflows: Optional[Sequence[HyperflexClusterProfileRunningWorkflowArgs]] = None,
                            scheduled_actions: Optional[Sequence[HyperflexClusterProfileScheduledActionArgs]] = None,
                            shared_scope: Optional[str] = None,
                            software_versions: Optional[Sequence[HyperflexClusterProfileSoftwareVersionArgs]] = None,
                            src_templates: Optional[Sequence[HyperflexClusterProfileSrcTemplateArgs]] = None,
                            storage_client_ip_address: Optional[str] = None,
                            storage_client_netmask: Optional[str] = None,
                            storage_client_vlans: Optional[Sequence[HyperflexClusterProfileStorageClientVlanArgs]] = None,
                            storage_cluster_auxiliary_ip: Optional[str] = None,
                            storage_data_vlans: Optional[Sequence[HyperflexClusterProfileStorageDataVlanArgs]] = None,
                            storage_type: Optional[str] = None,
                            sys_configs: Optional[Sequence[HyperflexClusterProfileSysConfigArgs]] = None,
                            tags: Optional[Sequence[HyperflexClusterProfileTagArgs]] = None,
                            type: Optional[str] = None,
                            ucsm_configs: Optional[Sequence[HyperflexClusterProfileUcsmConfigArgs]] = None,
                            vcenter_configs: Optional[Sequence[HyperflexClusterProfileVcenterConfigArgs]] = None,
                            version_contexts: Optional[Sequence[HyperflexClusterProfileVersionContextArgs]] = None,
                            wait_for_completion: Optional[bool] = None,
                            wwxn_prefix: Optional[str] = None)
func NewHyperflexClusterProfile(ctx *Context, name string, args *HyperflexClusterProfileArgs, opts ...ResourceOption) (*HyperflexClusterProfile, error)
public HyperflexClusterProfile(string name, HyperflexClusterProfileArgs? args = null, CustomResourceOptions? opts = null)
public HyperflexClusterProfile(String name, HyperflexClusterProfileArgs args)
public HyperflexClusterProfile(String name, HyperflexClusterProfileArgs args, CustomResourceOptions options)
type: intersight:HyperflexClusterProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args HyperflexClusterProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args HyperflexClusterProfileArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args HyperflexClusterProfileArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args HyperflexClusterProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. HyperflexClusterProfileArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var hyperflexClusterProfileResource = new Intersight.HyperflexClusterProfile("hyperflexClusterProfileResource", new()
{
    AccountMoid = "string",
    Action = "string",
    ActionParams = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileActionParamArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Name = "string",
            ObjectType = "string",
            Value = "string",
        },
    },
    AdditionalProperties = "string",
    Ancestors = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileAncestorArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    AssociatedClusters = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileAssociatedClusterArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    AutoSupports = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileAutoSupportArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ClassId = "string",
    ClusterInternalSubnets = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileClusterInternalSubnetArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Gateway = "string",
            IpAddress = "string",
            Netmask = "string",
            ObjectType = "string",
        },
    },
    ClusterNetworks = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileClusterNetworkArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ClusterStorages = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileClusterStorageArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ConfigContexts = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileConfigContextArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            ConfigState = "string",
            ConfigStateSummary = "string",
            ConfigType = "string",
            ControlAction = "string",
            ErrorState = "string",
            InconsistencyReasons = new[]
            {
                "string",
            },
            ObjectType = "string",
            OperState = "string",
        },
    },
    ConfigResults = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileConfigResultArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    CreateTime = "string",
    DataIpAddress = "string",
    DeployedPolicies = new[]
    {
        "string",
    },
    Description = "string",
    DomainGroupMoid = "string",
    ExtFcStorages = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileExtFcStorageArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ExtIscsiStorages = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileExtIscsiStorageArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    HostNamePrefix = "string",
    Httpproxypolicies = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileHttpproxypolicyArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    HyperflexClusterProfileId = "string",
    HypervisorControlIpAddress = "string",
    HypervisorType = "string",
    IsNicBased = false,
    LocalCredentials = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileLocalCredentialArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    MacAddressPrefix = "string",
    MgmtIpAddress = "string",
    MgmtPlatform = "string",
    ModTime = "string",
    Moid = "string",
    Name = "string",
    NodeConfigs = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileNodeConfigArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    NodeProfileConfigs = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileNodeProfileConfigArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ObjectType = "string",
    Organizations = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileOrganizationArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Owners = new[]
    {
        "string",
    },
    Parents = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileParentArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PermissionResources = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfilePermissionResourceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PolicyBuckets = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfilePolicyBucketArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ProxySettings = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileProxySettingArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    RemovedPolicies = new[]
    {
        "string",
    },
    Replication = 0,
    RunningWorkflows = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileRunningWorkflowArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ScheduledActions = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileScheduledActionArgs
        {
            Action = "string",
            AdditionalProperties = "string",
            ClassId = "string",
            ObjectType = "string",
            ProceedOnReboot = false,
        },
    },
    SharedScope = "string",
    SoftwareVersions = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileSoftwareVersionArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    SrcTemplates = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileSrcTemplateArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    StorageClientIpAddress = "string",
    StorageClientNetmask = "string",
    StorageClientVlans = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileStorageClientVlanArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Name = "string",
            ObjectType = "string",
            VlanId = 0,
        },
    },
    StorageClusterAuxiliaryIp = "string",
    StorageDataVlans = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileStorageDataVlanArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Name = "string",
            ObjectType = "string",
            VlanId = 0,
        },
    },
    StorageType = "string",
    SysConfigs = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileSysConfigArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Tags = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileTagArgs
        {
            AdditionalProperties = "string",
            Key = "string",
            Value = "string",
        },
    },
    Type = "string",
    UcsmConfigs = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileUcsmConfigArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    VcenterConfigs = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileVcenterConfigArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    VersionContexts = new[]
    {
        new Intersight.Inputs.HyperflexClusterProfileVersionContextArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            InterestedMos = new[]
            {
                new Intersight.Inputs.HyperflexClusterProfileVersionContextInterestedMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            MarkedForDeletion = false,
            NrVersion = "string",
            ObjectType = "string",
            RefMos = new[]
            {
                new Intersight.Inputs.HyperflexClusterProfileVersionContextRefMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            Timestamp = "string",
            VersionType = "string",
        },
    },
    WaitForCompletion = false,
    WwxnPrefix = "string",
});
Copy
example, err := intersight.NewHyperflexClusterProfile(ctx, "hyperflexClusterProfileResource", &intersight.HyperflexClusterProfileArgs{
	AccountMoid: pulumi.String("string"),
	Action:      pulumi.String("string"),
	ActionParams: intersight.HyperflexClusterProfileActionParamArray{
		&intersight.HyperflexClusterProfileActionParamArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Name:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Value:                pulumi.String("string"),
		},
	},
	AdditionalProperties: pulumi.String("string"),
	Ancestors: intersight.HyperflexClusterProfileAncestorArray{
		&intersight.HyperflexClusterProfileAncestorArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	AssociatedClusters: intersight.HyperflexClusterProfileAssociatedClusterArray{
		&intersight.HyperflexClusterProfileAssociatedClusterArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	AutoSupports: intersight.HyperflexClusterProfileAutoSupportArray{
		&intersight.HyperflexClusterProfileAutoSupportArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ClassId: pulumi.String("string"),
	ClusterInternalSubnets: intersight.HyperflexClusterProfileClusterInternalSubnetArray{
		&intersight.HyperflexClusterProfileClusterInternalSubnetArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Gateway:              pulumi.String("string"),
			IpAddress:            pulumi.String("string"),
			Netmask:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
		},
	},
	ClusterNetworks: intersight.HyperflexClusterProfileClusterNetworkArray{
		&intersight.HyperflexClusterProfileClusterNetworkArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ClusterStorages: intersight.HyperflexClusterProfileClusterStorageArray{
		&intersight.HyperflexClusterProfileClusterStorageArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ConfigContexts: intersight.HyperflexClusterProfileConfigContextArray{
		&intersight.HyperflexClusterProfileConfigContextArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			ConfigState:          pulumi.String("string"),
			ConfigStateSummary:   pulumi.String("string"),
			ConfigType:           pulumi.String("string"),
			ControlAction:        pulumi.String("string"),
			ErrorState:           pulumi.String("string"),
			InconsistencyReasons: pulumi.StringArray{
				pulumi.String("string"),
			},
			ObjectType: pulumi.String("string"),
			OperState:  pulumi.String("string"),
		},
	},
	ConfigResults: intersight.HyperflexClusterProfileConfigResultArray{
		&intersight.HyperflexClusterProfileConfigResultArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	CreateTime:    pulumi.String("string"),
	DataIpAddress: pulumi.String("string"),
	DeployedPolicies: pulumi.StringArray{
		pulumi.String("string"),
	},
	Description:     pulumi.String("string"),
	DomainGroupMoid: pulumi.String("string"),
	ExtFcStorages: intersight.HyperflexClusterProfileExtFcStorageArray{
		&intersight.HyperflexClusterProfileExtFcStorageArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ExtIscsiStorages: intersight.HyperflexClusterProfileExtIscsiStorageArray{
		&intersight.HyperflexClusterProfileExtIscsiStorageArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	HostNamePrefix: pulumi.String("string"),
	Httpproxypolicies: intersight.HyperflexClusterProfileHttpproxypolicyArray{
		&intersight.HyperflexClusterProfileHttpproxypolicyArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	HyperflexClusterProfileId:  pulumi.String("string"),
	HypervisorControlIpAddress: pulumi.String("string"),
	HypervisorType:             pulumi.String("string"),
	IsNicBased:                 pulumi.Bool(false),
	LocalCredentials: intersight.HyperflexClusterProfileLocalCredentialArray{
		&intersight.HyperflexClusterProfileLocalCredentialArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	MacAddressPrefix: pulumi.String("string"),
	MgmtIpAddress:    pulumi.String("string"),
	MgmtPlatform:     pulumi.String("string"),
	ModTime:          pulumi.String("string"),
	Moid:             pulumi.String("string"),
	Name:             pulumi.String("string"),
	NodeConfigs: intersight.HyperflexClusterProfileNodeConfigArray{
		&intersight.HyperflexClusterProfileNodeConfigArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	NodeProfileConfigs: intersight.HyperflexClusterProfileNodeProfileConfigArray{
		&intersight.HyperflexClusterProfileNodeProfileConfigArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ObjectType: pulumi.String("string"),
	Organizations: intersight.HyperflexClusterProfileOrganizationArray{
		&intersight.HyperflexClusterProfileOrganizationArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	Owners: pulumi.StringArray{
		pulumi.String("string"),
	},
	Parents: intersight.HyperflexClusterProfileParentArray{
		&intersight.HyperflexClusterProfileParentArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	PermissionResources: intersight.HyperflexClusterProfilePermissionResourceArray{
		&intersight.HyperflexClusterProfilePermissionResourceArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	PolicyBuckets: intersight.HyperflexClusterProfilePolicyBucketArray{
		&intersight.HyperflexClusterProfilePolicyBucketArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ProxySettings: intersight.HyperflexClusterProfileProxySettingArray{
		&intersight.HyperflexClusterProfileProxySettingArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	RemovedPolicies: pulumi.StringArray{
		pulumi.String("string"),
	},
	Replication: pulumi.Float64(0),
	RunningWorkflows: intersight.HyperflexClusterProfileRunningWorkflowArray{
		&intersight.HyperflexClusterProfileRunningWorkflowArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ScheduledActions: intersight.HyperflexClusterProfileScheduledActionArray{
		&intersight.HyperflexClusterProfileScheduledActionArgs{
			Action:               pulumi.String("string"),
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			ProceedOnReboot:      pulumi.Bool(false),
		},
	},
	SharedScope: pulumi.String("string"),
	SoftwareVersions: intersight.HyperflexClusterProfileSoftwareVersionArray{
		&intersight.HyperflexClusterProfileSoftwareVersionArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	SrcTemplates: intersight.HyperflexClusterProfileSrcTemplateArray{
		&intersight.HyperflexClusterProfileSrcTemplateArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	StorageClientIpAddress: pulumi.String("string"),
	StorageClientNetmask:   pulumi.String("string"),
	StorageClientVlans: intersight.HyperflexClusterProfileStorageClientVlanArray{
		&intersight.HyperflexClusterProfileStorageClientVlanArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Name:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			VlanId:               pulumi.Float64(0),
		},
	},
	StorageClusterAuxiliaryIp: pulumi.String("string"),
	StorageDataVlans: intersight.HyperflexClusterProfileStorageDataVlanArray{
		&intersight.HyperflexClusterProfileStorageDataVlanArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Name:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			VlanId:               pulumi.Float64(0),
		},
	},
	StorageType: pulumi.String("string"),
	SysConfigs: intersight.HyperflexClusterProfileSysConfigArray{
		&intersight.HyperflexClusterProfileSysConfigArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	Tags: intersight.HyperflexClusterProfileTagArray{
		&intersight.HyperflexClusterProfileTagArgs{
			AdditionalProperties: pulumi.String("string"),
			Key:                  pulumi.String("string"),
			Value:                pulumi.String("string"),
		},
	},
	Type: pulumi.String("string"),
	UcsmConfigs: intersight.HyperflexClusterProfileUcsmConfigArray{
		&intersight.HyperflexClusterProfileUcsmConfigArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	VcenterConfigs: intersight.HyperflexClusterProfileVcenterConfigArray{
		&intersight.HyperflexClusterProfileVcenterConfigArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	VersionContexts: intersight.HyperflexClusterProfileVersionContextArray{
		&intersight.HyperflexClusterProfileVersionContextArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			InterestedMos: intersight.HyperflexClusterProfileVersionContextInterestedMoArray{
				&intersight.HyperflexClusterProfileVersionContextInterestedMoArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Moid:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Selector:             pulumi.String("string"),
				},
			},
			MarkedForDeletion: pulumi.Bool(false),
			NrVersion:         pulumi.String("string"),
			ObjectType:        pulumi.String("string"),
			RefMos: intersight.HyperflexClusterProfileVersionContextRefMoArray{
				&intersight.HyperflexClusterProfileVersionContextRefMoArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Moid:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Selector:             pulumi.String("string"),
				},
			},
			Timestamp:   pulumi.String("string"),
			VersionType: pulumi.String("string"),
		},
	},
	WaitForCompletion: pulumi.Bool(false),
	WwxnPrefix:        pulumi.String("string"),
})
Copy
var hyperflexClusterProfileResource = new HyperflexClusterProfile("hyperflexClusterProfileResource", HyperflexClusterProfileArgs.builder()
    .accountMoid("string")
    .action("string")
    .actionParams(HyperflexClusterProfileActionParamArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .name("string")
        .objectType("string")
        .value("string")
        .build())
    .additionalProperties("string")
    .ancestors(HyperflexClusterProfileAncestorArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .associatedClusters(HyperflexClusterProfileAssociatedClusterArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .autoSupports(HyperflexClusterProfileAutoSupportArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .classId("string")
    .clusterInternalSubnets(HyperflexClusterProfileClusterInternalSubnetArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .gateway("string")
        .ipAddress("string")
        .netmask("string")
        .objectType("string")
        .build())
    .clusterNetworks(HyperflexClusterProfileClusterNetworkArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .clusterStorages(HyperflexClusterProfileClusterStorageArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .configContexts(HyperflexClusterProfileConfigContextArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .configState("string")
        .configStateSummary("string")
        .configType("string")
        .controlAction("string")
        .errorState("string")
        .inconsistencyReasons("string")
        .objectType("string")
        .operState("string")
        .build())
    .configResults(HyperflexClusterProfileConfigResultArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .createTime("string")
    .dataIpAddress("string")
    .deployedPolicies("string")
    .description("string")
    .domainGroupMoid("string")
    .extFcStorages(HyperflexClusterProfileExtFcStorageArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .extIscsiStorages(HyperflexClusterProfileExtIscsiStorageArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .hostNamePrefix("string")
    .httpproxypolicies(HyperflexClusterProfileHttpproxypolicyArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .hyperflexClusterProfileId("string")
    .hypervisorControlIpAddress("string")
    .hypervisorType("string")
    .isNicBased(false)
    .localCredentials(HyperflexClusterProfileLocalCredentialArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .macAddressPrefix("string")
    .mgmtIpAddress("string")
    .mgmtPlatform("string")
    .modTime("string")
    .moid("string")
    .name("string")
    .nodeConfigs(HyperflexClusterProfileNodeConfigArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .nodeProfileConfigs(HyperflexClusterProfileNodeProfileConfigArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .objectType("string")
    .organizations(HyperflexClusterProfileOrganizationArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .owners("string")
    .parents(HyperflexClusterProfileParentArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .permissionResources(HyperflexClusterProfilePermissionResourceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .policyBuckets(HyperflexClusterProfilePolicyBucketArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .proxySettings(HyperflexClusterProfileProxySettingArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .removedPolicies("string")
    .replication(0)
    .runningWorkflows(HyperflexClusterProfileRunningWorkflowArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .scheduledActions(HyperflexClusterProfileScheduledActionArgs.builder()
        .action("string")
        .additionalProperties("string")
        .classId("string")
        .objectType("string")
        .proceedOnReboot(false)
        .build())
    .sharedScope("string")
    .softwareVersions(HyperflexClusterProfileSoftwareVersionArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .srcTemplates(HyperflexClusterProfileSrcTemplateArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .storageClientIpAddress("string")
    .storageClientNetmask("string")
    .storageClientVlans(HyperflexClusterProfileStorageClientVlanArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .name("string")
        .objectType("string")
        .vlanId(0)
        .build())
    .storageClusterAuxiliaryIp("string")
    .storageDataVlans(HyperflexClusterProfileStorageDataVlanArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .name("string")
        .objectType("string")
        .vlanId(0)
        .build())
    .storageType("string")
    .sysConfigs(HyperflexClusterProfileSysConfigArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .tags(HyperflexClusterProfileTagArgs.builder()
        .additionalProperties("string")
        .key("string")
        .value("string")
        .build())
    .type("string")
    .ucsmConfigs(HyperflexClusterProfileUcsmConfigArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .vcenterConfigs(HyperflexClusterProfileVcenterConfigArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .versionContexts(HyperflexClusterProfileVersionContextArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .interestedMos(HyperflexClusterProfileVersionContextInterestedMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .markedForDeletion(false)
        .nrVersion("string")
        .objectType("string")
        .refMos(HyperflexClusterProfileVersionContextRefMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .timestamp("string")
        .versionType("string")
        .build())
    .waitForCompletion(false)
    .wwxnPrefix("string")
    .build());
Copy
hyperflex_cluster_profile_resource = intersight.HyperflexClusterProfile("hyperflexClusterProfileResource",
    account_moid="string",
    action="string",
    action_params=[{
        "additional_properties": "string",
        "class_id": "string",
        "name": "string",
        "object_type": "string",
        "value": "string",
    }],
    additional_properties="string",
    ancestors=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    associated_clusters=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    auto_supports=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    class_id="string",
    cluster_internal_subnets=[{
        "additional_properties": "string",
        "class_id": "string",
        "gateway": "string",
        "ip_address": "string",
        "netmask": "string",
        "object_type": "string",
    }],
    cluster_networks=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    cluster_storages=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    config_contexts=[{
        "additional_properties": "string",
        "class_id": "string",
        "config_state": "string",
        "config_state_summary": "string",
        "config_type": "string",
        "control_action": "string",
        "error_state": "string",
        "inconsistency_reasons": ["string"],
        "object_type": "string",
        "oper_state": "string",
    }],
    config_results=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    create_time="string",
    data_ip_address="string",
    deployed_policies=["string"],
    description="string",
    domain_group_moid="string",
    ext_fc_storages=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    ext_iscsi_storages=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    host_name_prefix="string",
    httpproxypolicies=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    hyperflex_cluster_profile_id="string",
    hypervisor_control_ip_address="string",
    hypervisor_type="string",
    is_nic_based=False,
    local_credentials=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    mac_address_prefix="string",
    mgmt_ip_address="string",
    mgmt_platform="string",
    mod_time="string",
    moid="string",
    name="string",
    node_configs=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    node_profile_configs=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    object_type="string",
    organizations=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    owners=["string"],
    parents=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    permission_resources=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    policy_buckets=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    proxy_settings=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    removed_policies=["string"],
    replication=0,
    running_workflows=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    scheduled_actions=[{
        "action": "string",
        "additional_properties": "string",
        "class_id": "string",
        "object_type": "string",
        "proceed_on_reboot": False,
    }],
    shared_scope="string",
    software_versions=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    src_templates=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    storage_client_ip_address="string",
    storage_client_netmask="string",
    storage_client_vlans=[{
        "additional_properties": "string",
        "class_id": "string",
        "name": "string",
        "object_type": "string",
        "vlan_id": 0,
    }],
    storage_cluster_auxiliary_ip="string",
    storage_data_vlans=[{
        "additional_properties": "string",
        "class_id": "string",
        "name": "string",
        "object_type": "string",
        "vlan_id": 0,
    }],
    storage_type="string",
    sys_configs=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    tags=[{
        "additional_properties": "string",
        "key": "string",
        "value": "string",
    }],
    type="string",
    ucsm_configs=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    vcenter_configs=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    version_contexts=[{
        "additional_properties": "string",
        "class_id": "string",
        "interested_mos": [{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        "marked_for_deletion": False,
        "nr_version": "string",
        "object_type": "string",
        "ref_mos": [{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        "timestamp": "string",
        "version_type": "string",
    }],
    wait_for_completion=False,
    wwxn_prefix="string")
Copy
const hyperflexClusterProfileResource = new intersight.HyperflexClusterProfile("hyperflexClusterProfileResource", {
    accountMoid: "string",
    action: "string",
    actionParams: [{
        additionalProperties: "string",
        classId: "string",
        name: "string",
        objectType: "string",
        value: "string",
    }],
    additionalProperties: "string",
    ancestors: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    associatedClusters: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    autoSupports: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    classId: "string",
    clusterInternalSubnets: [{
        additionalProperties: "string",
        classId: "string",
        gateway: "string",
        ipAddress: "string",
        netmask: "string",
        objectType: "string",
    }],
    clusterNetworks: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    clusterStorages: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    configContexts: [{
        additionalProperties: "string",
        classId: "string",
        configState: "string",
        configStateSummary: "string",
        configType: "string",
        controlAction: "string",
        errorState: "string",
        inconsistencyReasons: ["string"],
        objectType: "string",
        operState: "string",
    }],
    configResults: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    createTime: "string",
    dataIpAddress: "string",
    deployedPolicies: ["string"],
    description: "string",
    domainGroupMoid: "string",
    extFcStorages: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    extIscsiStorages: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    hostNamePrefix: "string",
    httpproxypolicies: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    hyperflexClusterProfileId: "string",
    hypervisorControlIpAddress: "string",
    hypervisorType: "string",
    isNicBased: false,
    localCredentials: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    macAddressPrefix: "string",
    mgmtIpAddress: "string",
    mgmtPlatform: "string",
    modTime: "string",
    moid: "string",
    name: "string",
    nodeConfigs: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    nodeProfileConfigs: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    objectType: "string",
    organizations: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    owners: ["string"],
    parents: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    permissionResources: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    policyBuckets: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    proxySettings: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    removedPolicies: ["string"],
    replication: 0,
    runningWorkflows: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    scheduledActions: [{
        action: "string",
        additionalProperties: "string",
        classId: "string",
        objectType: "string",
        proceedOnReboot: false,
    }],
    sharedScope: "string",
    softwareVersions: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    srcTemplates: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    storageClientIpAddress: "string",
    storageClientNetmask: "string",
    storageClientVlans: [{
        additionalProperties: "string",
        classId: "string",
        name: "string",
        objectType: "string",
        vlanId: 0,
    }],
    storageClusterAuxiliaryIp: "string",
    storageDataVlans: [{
        additionalProperties: "string",
        classId: "string",
        name: "string",
        objectType: "string",
        vlanId: 0,
    }],
    storageType: "string",
    sysConfigs: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    tags: [{
        additionalProperties: "string",
        key: "string",
        value: "string",
    }],
    type: "string",
    ucsmConfigs: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    vcenterConfigs: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    versionContexts: [{
        additionalProperties: "string",
        classId: "string",
        interestedMos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        markedForDeletion: false,
        nrVersion: "string",
        objectType: "string",
        refMos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        timestamp: "string",
        versionType: "string",
    }],
    waitForCompletion: false,
    wwxnPrefix: "string",
});
Copy
type: intersight:HyperflexClusterProfile
properties:
    accountMoid: string
    action: string
    actionParams:
        - additionalProperties: string
          classId: string
          name: string
          objectType: string
          value: string
    additionalProperties: string
    ancestors:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    associatedClusters:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    autoSupports:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    classId: string
    clusterInternalSubnets:
        - additionalProperties: string
          classId: string
          gateway: string
          ipAddress: string
          netmask: string
          objectType: string
    clusterNetworks:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    clusterStorages:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    configContexts:
        - additionalProperties: string
          classId: string
          configState: string
          configStateSummary: string
          configType: string
          controlAction: string
          errorState: string
          inconsistencyReasons:
            - string
          objectType: string
          operState: string
    configResults:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    createTime: string
    dataIpAddress: string
    deployedPolicies:
        - string
    description: string
    domainGroupMoid: string
    extFcStorages:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    extIscsiStorages:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    hostNamePrefix: string
    httpproxypolicies:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    hyperflexClusterProfileId: string
    hypervisorControlIpAddress: string
    hypervisorType: string
    isNicBased: false
    localCredentials:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    macAddressPrefix: string
    mgmtIpAddress: string
    mgmtPlatform: string
    modTime: string
    moid: string
    name: string
    nodeConfigs:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    nodeProfileConfigs:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    objectType: string
    organizations:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    owners:
        - string
    parents:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    permissionResources:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    policyBuckets:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    proxySettings:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    removedPolicies:
        - string
    replication: 0
    runningWorkflows:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    scheduledActions:
        - action: string
          additionalProperties: string
          classId: string
          objectType: string
          proceedOnReboot: false
    sharedScope: string
    softwareVersions:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    srcTemplates:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    storageClientIpAddress: string
    storageClientNetmask: string
    storageClientVlans:
        - additionalProperties: string
          classId: string
          name: string
          objectType: string
          vlanId: 0
    storageClusterAuxiliaryIp: string
    storageDataVlans:
        - additionalProperties: string
          classId: string
          name: string
          objectType: string
          vlanId: 0
    storageType: string
    sysConfigs:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    tags:
        - additionalProperties: string
          key: string
          value: string
    type: string
    ucsmConfigs:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    vcenterConfigs:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    versionContexts:
        - additionalProperties: string
          classId: string
          interestedMos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
          markedForDeletion: false
          nrVersion: string
          objectType: string
          refMos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
          timestamp: string
          versionType: string
    waitForCompletion: false
    wwxnPrefix: string
Copy

HyperflexClusterProfile Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The HyperflexClusterProfile resource accepts the following input properties:

AccountMoid string
(ReadOnly) The Account ID for this managed object.
Action string
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
ActionParams List<HyperflexClusterProfileActionParam>
This complex property has following sub-properties:
AdditionalProperties string
Ancestors List<HyperflexClusterProfileAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
AssociatedClusters List<HyperflexClusterProfileAssociatedCluster>
A reference to a hyperflexCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
AutoSupports List<HyperflexClusterProfileAutoSupport>
A reference to a hyperflexAutoSupportPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
ClusterInternalSubnets List<HyperflexClusterProfileClusterInternalSubnet>
A CIDR subnet for the cluster internal network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
ClusterNetworks List<HyperflexClusterProfileClusterNetwork>
A reference to a hyperflexClusterNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ClusterStorages List<HyperflexClusterProfileClusterStorage>
A reference to a hyperflexClusterStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ConfigContexts List<HyperflexClusterProfileConfigContext>
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
ConfigResults List<HyperflexClusterProfileConfigResult>
(ReadOnly) A reference to a hyperflexConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
CreateTime string
(ReadOnly) The time when this managed object was created.
DataIpAddress string
The storage data IP address for the HyperFlex cluster.
DeployedPolicies List<string>
(Array of schema.TypeString) -
Description string
Description of the profile.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
ExtFcStorages List<HyperflexClusterProfileExtFcStorage>
A reference to a hyperflexExtFcStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ExtIscsiStorages List<HyperflexClusterProfileExtIscsiStorage>
A reference to a hyperflexExtIscsiStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
HostNamePrefix string
The node name prefix that is used to automatically generate the default hostname for each server.A dash (-) will be appended to the prefix followed by the node number to form a hostname.This default naming scheme can be manually overridden in the node configuration.The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and muststart with an alphanumeric character.
Httpproxypolicies List<HyperflexClusterProfileHttpproxypolicy>
A reference to a commHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
HyperflexClusterProfileId string
HypervisorControlIpAddress string
The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management.
HypervisorType string
The hypervisor type for the HyperFlex cluster.* ESXi - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version.* Hyper-V - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V.* Unknown - The hypervisor running on the HyperFlex cluster is not known.
IsNicBased bool
(ReadOnly) The NIC based setup being set/unset determined by inventory.
LocalCredentials List<HyperflexClusterProfileLocalCredential>
A reference to a hyperflexLocalCredentialPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
MacAddressPrefix string
The MAC address prefix in the form of 00:25:B5:XX.
MgmtIpAddress string
The management IP address for the HyperFlex cluster.
MgmtPlatform string
The management platform for the HyperFlex cluster.* FI - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect.* EDGE - The host servers used in the cluster deployment are standalone severs.* DC-No-FI - The host servers used in the cluster deployment are standalone servers with the DC Advantage license.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the profile instance or profile template.
NodeConfigs List<HyperflexClusterProfileNodeConfig>
A reference to a hyperflexNodeConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
NodeProfileConfigs List<HyperflexClusterProfileNodeProfileConfig>
An array of relationships to hyperflexNodeProfile resources. This complex property has following sub-properties:
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Organizations List<HyperflexClusterProfileOrganization>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Owners List<string>
(Array of schema.TypeString) -(ReadOnly)
Parents List<HyperflexClusterProfileParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources List<HyperflexClusterProfilePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PolicyBuckets List<HyperflexClusterProfilePolicyBucket>
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
ProxySettings List<HyperflexClusterProfileProxySetting>
A reference to a hyperflexProxySettingPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
RemovedPolicies List<string>
(Array of schema.TypeString) -
Replication double
The number of copies of each data block written.
RunningWorkflows List<HyperflexClusterProfileRunningWorkflow>
(ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
ScheduledActions List<HyperflexClusterProfileScheduledAction>
This complex property has following sub-properties:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
SoftwareVersions List<HyperflexClusterProfileSoftwareVersion>
A reference to a hyperflexSoftwareVersionPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
SrcTemplates List<HyperflexClusterProfileSrcTemplate>
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
StorageClientIpAddress string
The storage data IP address for the HyperFlex cluster.
StorageClientNetmask string
The netmask for the Storage client network IP address.
StorageClientVlans List<HyperflexClusterProfileStorageClientVlan>
The named VLAN associated with this cluster's storage client network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
StorageClusterAuxiliaryIp string
The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller.
StorageDataVlans List<HyperflexClusterProfileStorageDataVlan>
The VLAN for the HyperFlex storage data traffic. This complex property has following sub-properties:
StorageType string
The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party).* HyperFlexDp - The type of storage is HyperFlex Data Platform.* ThirdParty - The type of storage is 3rd Party Storage (PureStorage, etc..).
SysConfigs List<HyperflexClusterProfileSysConfig>
A reference to a hyperflexSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Tags List<HyperflexClusterProfileTag>
This complex property has following sub-properties:
Type string
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
UcsmConfigs List<HyperflexClusterProfileUcsmConfig>
A reference to a hyperflexUcsmConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
VcenterConfigs List<HyperflexClusterProfileVcenterConfig>
A reference to a hyperflexVcenterConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
VersionContexts List<HyperflexClusterProfileVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
WaitForCompletion bool
This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
WwxnPrefix string
The WWxN prefix in the form of 20:00:00:25:B5:XX.
AccountMoid string
(ReadOnly) The Account ID for this managed object.
Action string
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
ActionParams []HyperflexClusterProfileActionParamArgs
This complex property has following sub-properties:
AdditionalProperties string
Ancestors []HyperflexClusterProfileAncestorArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
AssociatedClusters []HyperflexClusterProfileAssociatedClusterArgs
A reference to a hyperflexCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
AutoSupports []HyperflexClusterProfileAutoSupportArgs
A reference to a hyperflexAutoSupportPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
ClusterInternalSubnets []HyperflexClusterProfileClusterInternalSubnetArgs
A CIDR subnet for the cluster internal network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
ClusterNetworks []HyperflexClusterProfileClusterNetworkArgs
A reference to a hyperflexClusterNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ClusterStorages []HyperflexClusterProfileClusterStorageArgs
A reference to a hyperflexClusterStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ConfigContexts []HyperflexClusterProfileConfigContextArgs
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
ConfigResults []HyperflexClusterProfileConfigResultArgs
(ReadOnly) A reference to a hyperflexConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
CreateTime string
(ReadOnly) The time when this managed object was created.
DataIpAddress string
The storage data IP address for the HyperFlex cluster.
DeployedPolicies []string
(Array of schema.TypeString) -
Description string
Description of the profile.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
ExtFcStorages []HyperflexClusterProfileExtFcStorageArgs
A reference to a hyperflexExtFcStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ExtIscsiStorages []HyperflexClusterProfileExtIscsiStorageArgs
A reference to a hyperflexExtIscsiStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
HostNamePrefix string
The node name prefix that is used to automatically generate the default hostname for each server.A dash (-) will be appended to the prefix followed by the node number to form a hostname.This default naming scheme can be manually overridden in the node configuration.The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and muststart with an alphanumeric character.
Httpproxypolicies []HyperflexClusterProfileHttpproxypolicyArgs
A reference to a commHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
HyperflexClusterProfileId string
HypervisorControlIpAddress string
The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management.
HypervisorType string
The hypervisor type for the HyperFlex cluster.* ESXi - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version.* Hyper-V - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V.* Unknown - The hypervisor running on the HyperFlex cluster is not known.
IsNicBased bool
(ReadOnly) The NIC based setup being set/unset determined by inventory.
LocalCredentials []HyperflexClusterProfileLocalCredentialArgs
A reference to a hyperflexLocalCredentialPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
MacAddressPrefix string
The MAC address prefix in the form of 00:25:B5:XX.
MgmtIpAddress string
The management IP address for the HyperFlex cluster.
MgmtPlatform string
The management platform for the HyperFlex cluster.* FI - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect.* EDGE - The host servers used in the cluster deployment are standalone severs.* DC-No-FI - The host servers used in the cluster deployment are standalone servers with the DC Advantage license.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the profile instance or profile template.
NodeConfigs []HyperflexClusterProfileNodeConfigArgs
A reference to a hyperflexNodeConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
NodeProfileConfigs []HyperflexClusterProfileNodeProfileConfigArgs
An array of relationships to hyperflexNodeProfile resources. This complex property has following sub-properties:
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Organizations []HyperflexClusterProfileOrganizationArgs
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Owners []string
(Array of schema.TypeString) -(ReadOnly)
Parents []HyperflexClusterProfileParentArgs
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources []HyperflexClusterProfilePermissionResourceArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PolicyBuckets []HyperflexClusterProfilePolicyBucketArgs
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
ProxySettings []HyperflexClusterProfileProxySettingArgs
A reference to a hyperflexProxySettingPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
RemovedPolicies []string
(Array of schema.TypeString) -
Replication float64
The number of copies of each data block written.
RunningWorkflows []HyperflexClusterProfileRunningWorkflowArgs
(ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
ScheduledActions []HyperflexClusterProfileScheduledActionArgs
This complex property has following sub-properties:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
SoftwareVersions []HyperflexClusterProfileSoftwareVersionArgs
A reference to a hyperflexSoftwareVersionPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
SrcTemplates []HyperflexClusterProfileSrcTemplateArgs
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
StorageClientIpAddress string
The storage data IP address for the HyperFlex cluster.
StorageClientNetmask string
The netmask for the Storage client network IP address.
StorageClientVlans []HyperflexClusterProfileStorageClientVlanArgs
The named VLAN associated with this cluster's storage client network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
StorageClusterAuxiliaryIp string
The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller.
StorageDataVlans []HyperflexClusterProfileStorageDataVlanArgs
The VLAN for the HyperFlex storage data traffic. This complex property has following sub-properties:
StorageType string
The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party).* HyperFlexDp - The type of storage is HyperFlex Data Platform.* ThirdParty - The type of storage is 3rd Party Storage (PureStorage, etc..).
SysConfigs []HyperflexClusterProfileSysConfigArgs
A reference to a hyperflexSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Tags []HyperflexClusterProfileTagArgs
This complex property has following sub-properties:
Type string
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
UcsmConfigs []HyperflexClusterProfileUcsmConfigArgs
A reference to a hyperflexUcsmConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
VcenterConfigs []HyperflexClusterProfileVcenterConfigArgs
A reference to a hyperflexVcenterConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
VersionContexts []HyperflexClusterProfileVersionContextArgs
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
WaitForCompletion bool
This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
WwxnPrefix string
The WWxN prefix in the form of 20:00:00:25:B5:XX.
accountMoid String
(ReadOnly) The Account ID for this managed object.
action String
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
actionParams List<HyperflexClusterProfileActionParam>
This complex property has following sub-properties:
additionalProperties String
ancestors List<HyperflexClusterProfileAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
associatedClusters List<HyperflexClusterProfileAssociatedCluster>
A reference to a hyperflexCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
autoSupports List<HyperflexClusterProfileAutoSupport>
A reference to a hyperflexAutoSupportPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
clusterInternalSubnets List<HyperflexClusterProfileClusterInternalSubnet>
A CIDR subnet for the cluster internal network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
clusterNetworks List<HyperflexClusterProfileClusterNetwork>
A reference to a hyperflexClusterNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
clusterStorages List<HyperflexClusterProfileClusterStorage>
A reference to a hyperflexClusterStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
configContexts List<HyperflexClusterProfileConfigContext>
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
configResults List<HyperflexClusterProfileConfigResult>
(ReadOnly) A reference to a hyperflexConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
createTime String
(ReadOnly) The time when this managed object was created.
dataIpAddress String
The storage data IP address for the HyperFlex cluster.
deployedPolicies List<String>
(Array of schema.TypeString) -
description String
Description of the profile.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
extFcStorages List<HyperflexClusterProfileExtFcStorage>
A reference to a hyperflexExtFcStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
extIscsiStorages List<HyperflexClusterProfileExtIscsiStorage>
A reference to a hyperflexExtIscsiStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
hostNamePrefix String
The node name prefix that is used to automatically generate the default hostname for each server.A dash (-) will be appended to the prefix followed by the node number to form a hostname.This default naming scheme can be manually overridden in the node configuration.The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and muststart with an alphanumeric character.
httpproxypolicies List<HyperflexClusterProfileHttpproxypolicy>
A reference to a commHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
hyperflexClusterProfileId String
hypervisorControlIpAddress String
The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management.
hypervisorType String
The hypervisor type for the HyperFlex cluster.* ESXi - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version.* Hyper-V - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V.* Unknown - The hypervisor running on the HyperFlex cluster is not known.
isNicBased Boolean
(ReadOnly) The NIC based setup being set/unset determined by inventory.
localCredentials List<HyperflexClusterProfileLocalCredential>
A reference to a hyperflexLocalCredentialPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macAddressPrefix String
The MAC address prefix in the form of 00:25:B5:XX.
mgmtIpAddress String
The management IP address for the HyperFlex cluster.
mgmtPlatform String
The management platform for the HyperFlex cluster.* FI - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect.* EDGE - The host servers used in the cluster deployment are standalone severs.* DC-No-FI - The host servers used in the cluster deployment are standalone servers with the DC Advantage license.
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the profile instance or profile template.
nodeConfigs List<HyperflexClusterProfileNodeConfig>
A reference to a hyperflexNodeConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
nodeProfileConfigs List<HyperflexClusterProfileNodeProfileConfig>
An array of relationships to hyperflexNodeProfile resources. This complex property has following sub-properties:
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations List<HyperflexClusterProfileOrganization>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<HyperflexClusterProfileParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<HyperflexClusterProfilePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policyBuckets List<HyperflexClusterProfilePolicyBucket>
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
proxySettings List<HyperflexClusterProfileProxySetting>
A reference to a hyperflexProxySettingPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
removedPolicies List<String>
(Array of schema.TypeString) -
replication Double
The number of copies of each data block written.
runningWorkflows List<HyperflexClusterProfileRunningWorkflow>
(ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
scheduledActions List<HyperflexClusterProfileScheduledAction>
This complex property has following sub-properties:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
softwareVersions List<HyperflexClusterProfileSoftwareVersion>
A reference to a hyperflexSoftwareVersionPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
srcTemplates List<HyperflexClusterProfileSrcTemplate>
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
storageClientIpAddress String
The storage data IP address for the HyperFlex cluster.
storageClientNetmask String
The netmask for the Storage client network IP address.
storageClientVlans List<HyperflexClusterProfileStorageClientVlan>
The named VLAN associated with this cluster's storage client network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
storageClusterAuxiliaryIp String
The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller.
storageDataVlans List<HyperflexClusterProfileStorageDataVlan>
The VLAN for the HyperFlex storage data traffic. This complex property has following sub-properties:
storageType String
The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party).* HyperFlexDp - The type of storage is HyperFlex Data Platform.* ThirdParty - The type of storage is 3rd Party Storage (PureStorage, etc..).
sysConfigs List<HyperflexClusterProfileSysConfig>
A reference to a hyperflexSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags List<HyperflexClusterProfileTag>
This complex property has following sub-properties:
type String
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
ucsmConfigs List<HyperflexClusterProfileUcsmConfig>
A reference to a hyperflexUcsmConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
vcenterConfigs List<HyperflexClusterProfileVcenterConfig>
A reference to a hyperflexVcenterConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
versionContexts List<HyperflexClusterProfileVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
waitForCompletion Boolean
This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
wwxnPrefix String
The WWxN prefix in the form of 20:00:00:25:B5:XX.
accountMoid string
(ReadOnly) The Account ID for this managed object.
action string
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
actionParams HyperflexClusterProfileActionParam[]
This complex property has following sub-properties:
additionalProperties string
ancestors HyperflexClusterProfileAncestor[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
associatedClusters HyperflexClusterProfileAssociatedCluster[]
A reference to a hyperflexCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
autoSupports HyperflexClusterProfileAutoSupport[]
A reference to a hyperflexAutoSupportPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
classId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
clusterInternalSubnets HyperflexClusterProfileClusterInternalSubnet[]
A CIDR subnet for the cluster internal network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
clusterNetworks HyperflexClusterProfileClusterNetwork[]
A reference to a hyperflexClusterNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
clusterStorages HyperflexClusterProfileClusterStorage[]
A reference to a hyperflexClusterStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
configContexts HyperflexClusterProfileConfigContext[]
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
configResults HyperflexClusterProfileConfigResult[]
(ReadOnly) A reference to a hyperflexConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
createTime string
(ReadOnly) The time when this managed object was created.
dataIpAddress string
The storage data IP address for the HyperFlex cluster.
deployedPolicies string[]
(Array of schema.TypeString) -
description string
Description of the profile.
domainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
extFcStorages HyperflexClusterProfileExtFcStorage[]
A reference to a hyperflexExtFcStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
extIscsiStorages HyperflexClusterProfileExtIscsiStorage[]
A reference to a hyperflexExtIscsiStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
hostNamePrefix string
The node name prefix that is used to automatically generate the default hostname for each server.A dash (-) will be appended to the prefix followed by the node number to form a hostname.This default naming scheme can be manually overridden in the node configuration.The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and muststart with an alphanumeric character.
httpproxypolicies HyperflexClusterProfileHttpproxypolicy[]
A reference to a commHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
hyperflexClusterProfileId string
hypervisorControlIpAddress string
The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management.
hypervisorType string
The hypervisor type for the HyperFlex cluster.* ESXi - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version.* Hyper-V - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V.* Unknown - The hypervisor running on the HyperFlex cluster is not known.
isNicBased boolean
(ReadOnly) The NIC based setup being set/unset determined by inventory.
localCredentials HyperflexClusterProfileLocalCredential[]
A reference to a hyperflexLocalCredentialPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macAddressPrefix string
The MAC address prefix in the form of 00:25:B5:XX.
mgmtIpAddress string
The management IP address for the HyperFlex cluster.
mgmtPlatform string
The management platform for the HyperFlex cluster.* FI - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect.* EDGE - The host servers used in the cluster deployment are standalone severs.* DC-No-FI - The host servers used in the cluster deployment are standalone servers with the DC Advantage license.
modTime string
(ReadOnly) The time when this managed object was last modified.
moid string
The unique identifier of this Managed Object instance.
name string
Name of the profile instance or profile template.
nodeConfigs HyperflexClusterProfileNodeConfig[]
A reference to a hyperflexNodeConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
nodeProfileConfigs HyperflexClusterProfileNodeProfileConfig[]
An array of relationships to hyperflexNodeProfile resources. This complex property has following sub-properties:
objectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations HyperflexClusterProfileOrganization[]
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners string[]
(Array of schema.TypeString) -(ReadOnly)
parents HyperflexClusterProfileParent[]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources HyperflexClusterProfilePermissionResource[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policyBuckets HyperflexClusterProfilePolicyBucket[]
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
proxySettings HyperflexClusterProfileProxySetting[]
A reference to a hyperflexProxySettingPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
removedPolicies string[]
(Array of schema.TypeString) -
replication number
The number of copies of each data block written.
runningWorkflows HyperflexClusterProfileRunningWorkflow[]
(ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
scheduledActions HyperflexClusterProfileScheduledAction[]
This complex property has following sub-properties:
sharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
softwareVersions HyperflexClusterProfileSoftwareVersion[]
A reference to a hyperflexSoftwareVersionPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
srcTemplates HyperflexClusterProfileSrcTemplate[]
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
storageClientIpAddress string
The storage data IP address for the HyperFlex cluster.
storageClientNetmask string
The netmask for the Storage client network IP address.
storageClientVlans HyperflexClusterProfileStorageClientVlan[]
The named VLAN associated with this cluster's storage client network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
storageClusterAuxiliaryIp string
The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller.
storageDataVlans HyperflexClusterProfileStorageDataVlan[]
The VLAN for the HyperFlex storage data traffic. This complex property has following sub-properties:
storageType string
The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party).* HyperFlexDp - The type of storage is HyperFlex Data Platform.* ThirdParty - The type of storage is 3rd Party Storage (PureStorage, etc..).
sysConfigs HyperflexClusterProfileSysConfig[]
A reference to a hyperflexSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags HyperflexClusterProfileTag[]
This complex property has following sub-properties:
type string
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
ucsmConfigs HyperflexClusterProfileUcsmConfig[]
A reference to a hyperflexUcsmConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
vcenterConfigs HyperflexClusterProfileVcenterConfig[]
A reference to a hyperflexVcenterConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
versionContexts HyperflexClusterProfileVersionContext[]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
waitForCompletion boolean
This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
wwxnPrefix string
The WWxN prefix in the form of 20:00:00:25:B5:XX.
account_moid str
(ReadOnly) The Account ID for this managed object.
action str
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
action_params Sequence[HyperflexClusterProfileActionParamArgs]
This complex property has following sub-properties:
additional_properties str
ancestors Sequence[HyperflexClusterProfileAncestorArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
associated_clusters Sequence[HyperflexClusterProfileAssociatedClusterArgs]
A reference to a hyperflexCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
auto_supports Sequence[HyperflexClusterProfileAutoSupportArgs]
A reference to a hyperflexAutoSupportPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
class_id str
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
cluster_internal_subnets Sequence[HyperflexClusterProfileClusterInternalSubnetArgs]
A CIDR subnet for the cluster internal network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
cluster_networks Sequence[HyperflexClusterProfileClusterNetworkArgs]
A reference to a hyperflexClusterNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
cluster_storages Sequence[HyperflexClusterProfileClusterStorageArgs]
A reference to a hyperflexClusterStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
config_contexts Sequence[HyperflexClusterProfileConfigContextArgs]
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
config_results Sequence[HyperflexClusterProfileConfigResultArgs]
(ReadOnly) A reference to a hyperflexConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
create_time str
(ReadOnly) The time when this managed object was created.
data_ip_address str
The storage data IP address for the HyperFlex cluster.
deployed_policies Sequence[str]
(Array of schema.TypeString) -
description str
Description of the profile.
domain_group_moid str
(ReadOnly) The DomainGroup ID for this managed object.
ext_fc_storages Sequence[HyperflexClusterProfileExtFcStorageArgs]
A reference to a hyperflexExtFcStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ext_iscsi_storages Sequence[HyperflexClusterProfileExtIscsiStorageArgs]
A reference to a hyperflexExtIscsiStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
host_name_prefix str
The node name prefix that is used to automatically generate the default hostname for each server.A dash (-) will be appended to the prefix followed by the node number to form a hostname.This default naming scheme can be manually overridden in the node configuration.The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and muststart with an alphanumeric character.
httpproxypolicies Sequence[HyperflexClusterProfileHttpproxypolicyArgs]
A reference to a commHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
hyperflex_cluster_profile_id str
hypervisor_control_ip_address str
The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management.
hypervisor_type str
The hypervisor type for the HyperFlex cluster.* ESXi - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version.* Hyper-V - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V.* Unknown - The hypervisor running on the HyperFlex cluster is not known.
is_nic_based bool
(ReadOnly) The NIC based setup being set/unset determined by inventory.
local_credentials Sequence[HyperflexClusterProfileLocalCredentialArgs]
A reference to a hyperflexLocalCredentialPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
mac_address_prefix str
The MAC address prefix in the form of 00:25:B5:XX.
mgmt_ip_address str
The management IP address for the HyperFlex cluster.
mgmt_platform str
The management platform for the HyperFlex cluster.* FI - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect.* EDGE - The host servers used in the cluster deployment are standalone severs.* DC-No-FI - The host servers used in the cluster deployment are standalone servers with the DC Advantage license.
mod_time str
(ReadOnly) The time when this managed object was last modified.
moid str
The unique identifier of this Managed Object instance.
name str
Name of the profile instance or profile template.
node_configs Sequence[HyperflexClusterProfileNodeConfigArgs]
A reference to a hyperflexNodeConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
node_profile_configs Sequence[HyperflexClusterProfileNodeProfileConfigArgs]
An array of relationships to hyperflexNodeProfile resources. This complex property has following sub-properties:
object_type str
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations Sequence[HyperflexClusterProfileOrganizationArgs]
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners Sequence[str]
(Array of schema.TypeString) -(ReadOnly)
parents Sequence[HyperflexClusterProfileParentArgs]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permission_resources Sequence[HyperflexClusterProfilePermissionResourceArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policy_buckets Sequence[HyperflexClusterProfilePolicyBucketArgs]
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
proxy_settings Sequence[HyperflexClusterProfileProxySettingArgs]
A reference to a hyperflexProxySettingPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
removed_policies Sequence[str]
(Array of schema.TypeString) -
replication float
The number of copies of each data block written.
running_workflows Sequence[HyperflexClusterProfileRunningWorkflowArgs]
(ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
scheduled_actions Sequence[HyperflexClusterProfileScheduledActionArgs]
This complex property has following sub-properties:
shared_scope str
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
software_versions Sequence[HyperflexClusterProfileSoftwareVersionArgs]
A reference to a hyperflexSoftwareVersionPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
src_templates Sequence[HyperflexClusterProfileSrcTemplateArgs]
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
storage_client_ip_address str
The storage data IP address for the HyperFlex cluster.
storage_client_netmask str
The netmask for the Storage client network IP address.
storage_client_vlans Sequence[HyperflexClusterProfileStorageClientVlanArgs]
The named VLAN associated with this cluster's storage client network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
storage_cluster_auxiliary_ip str
The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller.
storage_data_vlans Sequence[HyperflexClusterProfileStorageDataVlanArgs]
The VLAN for the HyperFlex storage data traffic. This complex property has following sub-properties:
storage_type str
The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party).* HyperFlexDp - The type of storage is HyperFlex Data Platform.* ThirdParty - The type of storage is 3rd Party Storage (PureStorage, etc..).
sys_configs Sequence[HyperflexClusterProfileSysConfigArgs]
A reference to a hyperflexSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags Sequence[HyperflexClusterProfileTagArgs]
This complex property has following sub-properties:
type str
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
ucsm_configs Sequence[HyperflexClusterProfileUcsmConfigArgs]
A reference to a hyperflexUcsmConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
vcenter_configs Sequence[HyperflexClusterProfileVcenterConfigArgs]
A reference to a hyperflexVcenterConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
version_contexts Sequence[HyperflexClusterProfileVersionContextArgs]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
wait_for_completion bool
This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
wwxn_prefix str
The WWxN prefix in the form of 20:00:00:25:B5:XX.
accountMoid String
(ReadOnly) The Account ID for this managed object.
action String
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
actionParams List<Property Map>
This complex property has following sub-properties:
additionalProperties String
ancestors List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
associatedClusters List<Property Map>
A reference to a hyperflexCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
autoSupports List<Property Map>
A reference to a hyperflexAutoSupportPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
clusterInternalSubnets List<Property Map>
A CIDR subnet for the cluster internal network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
clusterNetworks List<Property Map>
A reference to a hyperflexClusterNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
clusterStorages List<Property Map>
A reference to a hyperflexClusterStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
configContexts List<Property Map>
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
configResults List<Property Map>
(ReadOnly) A reference to a hyperflexConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
createTime String
(ReadOnly) The time when this managed object was created.
dataIpAddress String
The storage data IP address for the HyperFlex cluster.
deployedPolicies List<String>
(Array of schema.TypeString) -
description String
Description of the profile.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
extFcStorages List<Property Map>
A reference to a hyperflexExtFcStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
extIscsiStorages List<Property Map>
A reference to a hyperflexExtIscsiStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
hostNamePrefix String
The node name prefix that is used to automatically generate the default hostname for each server.A dash (-) will be appended to the prefix followed by the node number to form a hostname.This default naming scheme can be manually overridden in the node configuration.The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and muststart with an alphanumeric character.
httpproxypolicies List<Property Map>
A reference to a commHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
hyperflexClusterProfileId String
hypervisorControlIpAddress String
The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management.
hypervisorType String
The hypervisor type for the HyperFlex cluster.* ESXi - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version.* Hyper-V - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V.* Unknown - The hypervisor running on the HyperFlex cluster is not known.
isNicBased Boolean
(ReadOnly) The NIC based setup being set/unset determined by inventory.
localCredentials List<Property Map>
A reference to a hyperflexLocalCredentialPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macAddressPrefix String
The MAC address prefix in the form of 00:25:B5:XX.
mgmtIpAddress String
The management IP address for the HyperFlex cluster.
mgmtPlatform String
The management platform for the HyperFlex cluster.* FI - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect.* EDGE - The host servers used in the cluster deployment are standalone severs.* DC-No-FI - The host servers used in the cluster deployment are standalone servers with the DC Advantage license.
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the profile instance or profile template.
nodeConfigs List<Property Map>
A reference to a hyperflexNodeConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
nodeProfileConfigs List<Property Map>
An array of relationships to hyperflexNodeProfile resources. This complex property has following sub-properties:
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations List<Property Map>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<Property Map>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policyBuckets List<Property Map>
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
proxySettings List<Property Map>
A reference to a hyperflexProxySettingPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
removedPolicies List<String>
(Array of schema.TypeString) -
replication Number
The number of copies of each data block written.
runningWorkflows List<Property Map>
(ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
scheduledActions List<Property Map>
This complex property has following sub-properties:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
softwareVersions List<Property Map>
A reference to a hyperflexSoftwareVersionPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
srcTemplates List<Property Map>
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
storageClientIpAddress String
The storage data IP address for the HyperFlex cluster.
storageClientNetmask String
The netmask for the Storage client network IP address.
storageClientVlans List<Property Map>
The named VLAN associated with this cluster's storage client network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
storageClusterAuxiliaryIp String
The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller.
storageDataVlans List<Property Map>
The VLAN for the HyperFlex storage data traffic. This complex property has following sub-properties:
storageType String
The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party).* HyperFlexDp - The type of storage is HyperFlex Data Platform.* ThirdParty - The type of storage is 3rd Party Storage (PureStorage, etc..).
sysConfigs List<Property Map>
A reference to a hyperflexSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags List<Property Map>
This complex property has following sub-properties:
type String
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
ucsmConfigs List<Property Map>
A reference to a hyperflexUcsmConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
vcenterConfigs List<Property Map>
A reference to a hyperflexVcenterConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
versionContexts List<Property Map>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
waitForCompletion Boolean
This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
wwxnPrefix String
The WWxN prefix in the form of 20:00:00:25:B5:XX.

Outputs

All input properties are implicitly available as output properties. Additionally, the HyperflexClusterProfile resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing HyperflexClusterProfile Resource

Get an existing HyperflexClusterProfile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: HyperflexClusterProfileState, opts?: CustomResourceOptions): HyperflexClusterProfile
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_moid: Optional[str] = None,
        action: Optional[str] = None,
        action_params: Optional[Sequence[HyperflexClusterProfileActionParamArgs]] = None,
        additional_properties: Optional[str] = None,
        ancestors: Optional[Sequence[HyperflexClusterProfileAncestorArgs]] = None,
        associated_clusters: Optional[Sequence[HyperflexClusterProfileAssociatedClusterArgs]] = None,
        auto_supports: Optional[Sequence[HyperflexClusterProfileAutoSupportArgs]] = None,
        class_id: Optional[str] = None,
        cluster_internal_subnets: Optional[Sequence[HyperflexClusterProfileClusterInternalSubnetArgs]] = None,
        cluster_networks: Optional[Sequence[HyperflexClusterProfileClusterNetworkArgs]] = None,
        cluster_storages: Optional[Sequence[HyperflexClusterProfileClusterStorageArgs]] = None,
        config_contexts: Optional[Sequence[HyperflexClusterProfileConfigContextArgs]] = None,
        config_results: Optional[Sequence[HyperflexClusterProfileConfigResultArgs]] = None,
        create_time: Optional[str] = None,
        data_ip_address: Optional[str] = None,
        deployed_policies: Optional[Sequence[str]] = None,
        description: Optional[str] = None,
        domain_group_moid: Optional[str] = None,
        ext_fc_storages: Optional[Sequence[HyperflexClusterProfileExtFcStorageArgs]] = None,
        ext_iscsi_storages: Optional[Sequence[HyperflexClusterProfileExtIscsiStorageArgs]] = None,
        host_name_prefix: Optional[str] = None,
        httpproxypolicies: Optional[Sequence[HyperflexClusterProfileHttpproxypolicyArgs]] = None,
        hyperflex_cluster_profile_id: Optional[str] = None,
        hypervisor_control_ip_address: Optional[str] = None,
        hypervisor_type: Optional[str] = None,
        is_nic_based: Optional[bool] = None,
        local_credentials: Optional[Sequence[HyperflexClusterProfileLocalCredentialArgs]] = None,
        mac_address_prefix: Optional[str] = None,
        mgmt_ip_address: Optional[str] = None,
        mgmt_platform: Optional[str] = None,
        mod_time: Optional[str] = None,
        moid: Optional[str] = None,
        name: Optional[str] = None,
        node_configs: Optional[Sequence[HyperflexClusterProfileNodeConfigArgs]] = None,
        node_profile_configs: Optional[Sequence[HyperflexClusterProfileNodeProfileConfigArgs]] = None,
        object_type: Optional[str] = None,
        organizations: Optional[Sequence[HyperflexClusterProfileOrganizationArgs]] = None,
        owners: Optional[Sequence[str]] = None,
        parents: Optional[Sequence[HyperflexClusterProfileParentArgs]] = None,
        permission_resources: Optional[Sequence[HyperflexClusterProfilePermissionResourceArgs]] = None,
        policy_buckets: Optional[Sequence[HyperflexClusterProfilePolicyBucketArgs]] = None,
        proxy_settings: Optional[Sequence[HyperflexClusterProfileProxySettingArgs]] = None,
        removed_policies: Optional[Sequence[str]] = None,
        replication: Optional[float] = None,
        running_workflows: Optional[Sequence[HyperflexClusterProfileRunningWorkflowArgs]] = None,
        scheduled_actions: Optional[Sequence[HyperflexClusterProfileScheduledActionArgs]] = None,
        shared_scope: Optional[str] = None,
        software_versions: Optional[Sequence[HyperflexClusterProfileSoftwareVersionArgs]] = None,
        src_templates: Optional[Sequence[HyperflexClusterProfileSrcTemplateArgs]] = None,
        storage_client_ip_address: Optional[str] = None,
        storage_client_netmask: Optional[str] = None,
        storage_client_vlans: Optional[Sequence[HyperflexClusterProfileStorageClientVlanArgs]] = None,
        storage_cluster_auxiliary_ip: Optional[str] = None,
        storage_data_vlans: Optional[Sequence[HyperflexClusterProfileStorageDataVlanArgs]] = None,
        storage_type: Optional[str] = None,
        sys_configs: Optional[Sequence[HyperflexClusterProfileSysConfigArgs]] = None,
        tags: Optional[Sequence[HyperflexClusterProfileTagArgs]] = None,
        type: Optional[str] = None,
        ucsm_configs: Optional[Sequence[HyperflexClusterProfileUcsmConfigArgs]] = None,
        vcenter_configs: Optional[Sequence[HyperflexClusterProfileVcenterConfigArgs]] = None,
        version_contexts: Optional[Sequence[HyperflexClusterProfileVersionContextArgs]] = None,
        wait_for_completion: Optional[bool] = None,
        wwxn_prefix: Optional[str] = None) -> HyperflexClusterProfile
func GetHyperflexClusterProfile(ctx *Context, name string, id IDInput, state *HyperflexClusterProfileState, opts ...ResourceOption) (*HyperflexClusterProfile, error)
public static HyperflexClusterProfile Get(string name, Input<string> id, HyperflexClusterProfileState? state, CustomResourceOptions? opts = null)
public static HyperflexClusterProfile get(String name, Output<String> id, HyperflexClusterProfileState state, CustomResourceOptions options)
resources:  _:    type: intersight:HyperflexClusterProfile    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
Action string
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
ActionParams List<HyperflexClusterProfileActionParam>
This complex property has following sub-properties:
AdditionalProperties string
Ancestors List<HyperflexClusterProfileAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
AssociatedClusters List<HyperflexClusterProfileAssociatedCluster>
A reference to a hyperflexCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
AutoSupports List<HyperflexClusterProfileAutoSupport>
A reference to a hyperflexAutoSupportPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
ClusterInternalSubnets List<HyperflexClusterProfileClusterInternalSubnet>
A CIDR subnet for the cluster internal network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
ClusterNetworks List<HyperflexClusterProfileClusterNetwork>
A reference to a hyperflexClusterNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ClusterStorages List<HyperflexClusterProfileClusterStorage>
A reference to a hyperflexClusterStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ConfigContexts List<HyperflexClusterProfileConfigContext>
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
ConfigResults List<HyperflexClusterProfileConfigResult>
(ReadOnly) A reference to a hyperflexConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
CreateTime string
(ReadOnly) The time when this managed object was created.
DataIpAddress string
The storage data IP address for the HyperFlex cluster.
DeployedPolicies List<string>
(Array of schema.TypeString) -
Description string
Description of the profile.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
ExtFcStorages List<HyperflexClusterProfileExtFcStorage>
A reference to a hyperflexExtFcStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ExtIscsiStorages List<HyperflexClusterProfileExtIscsiStorage>
A reference to a hyperflexExtIscsiStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
HostNamePrefix string
The node name prefix that is used to automatically generate the default hostname for each server.A dash (-) will be appended to the prefix followed by the node number to form a hostname.This default naming scheme can be manually overridden in the node configuration.The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and muststart with an alphanumeric character.
Httpproxypolicies List<HyperflexClusterProfileHttpproxypolicy>
A reference to a commHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
HyperflexClusterProfileId string
HypervisorControlIpAddress string
The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management.
HypervisorType string
The hypervisor type for the HyperFlex cluster.* ESXi - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version.* Hyper-V - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V.* Unknown - The hypervisor running on the HyperFlex cluster is not known.
IsNicBased bool
(ReadOnly) The NIC based setup being set/unset determined by inventory.
LocalCredentials List<HyperflexClusterProfileLocalCredential>
A reference to a hyperflexLocalCredentialPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
MacAddressPrefix string
The MAC address prefix in the form of 00:25:B5:XX.
MgmtIpAddress string
The management IP address for the HyperFlex cluster.
MgmtPlatform string
The management platform for the HyperFlex cluster.* FI - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect.* EDGE - The host servers used in the cluster deployment are standalone severs.* DC-No-FI - The host servers used in the cluster deployment are standalone servers with the DC Advantage license.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the profile instance or profile template.
NodeConfigs List<HyperflexClusterProfileNodeConfig>
A reference to a hyperflexNodeConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
NodeProfileConfigs List<HyperflexClusterProfileNodeProfileConfig>
An array of relationships to hyperflexNodeProfile resources. This complex property has following sub-properties:
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Organizations List<HyperflexClusterProfileOrganization>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Owners List<string>
(Array of schema.TypeString) -(ReadOnly)
Parents List<HyperflexClusterProfileParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources List<HyperflexClusterProfilePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PolicyBuckets List<HyperflexClusterProfilePolicyBucket>
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
ProxySettings List<HyperflexClusterProfileProxySetting>
A reference to a hyperflexProxySettingPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
RemovedPolicies List<string>
(Array of schema.TypeString) -
Replication double
The number of copies of each data block written.
RunningWorkflows List<HyperflexClusterProfileRunningWorkflow>
(ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
ScheduledActions List<HyperflexClusterProfileScheduledAction>
This complex property has following sub-properties:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
SoftwareVersions List<HyperflexClusterProfileSoftwareVersion>
A reference to a hyperflexSoftwareVersionPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
SrcTemplates List<HyperflexClusterProfileSrcTemplate>
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
StorageClientIpAddress string
The storage data IP address for the HyperFlex cluster.
StorageClientNetmask string
The netmask for the Storage client network IP address.
StorageClientVlans List<HyperflexClusterProfileStorageClientVlan>
The named VLAN associated with this cluster's storage client network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
StorageClusterAuxiliaryIp string
The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller.
StorageDataVlans List<HyperflexClusterProfileStorageDataVlan>
The VLAN for the HyperFlex storage data traffic. This complex property has following sub-properties:
StorageType string
The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party).* HyperFlexDp - The type of storage is HyperFlex Data Platform.* ThirdParty - The type of storage is 3rd Party Storage (PureStorage, etc..).
SysConfigs List<HyperflexClusterProfileSysConfig>
A reference to a hyperflexSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Tags List<HyperflexClusterProfileTag>
This complex property has following sub-properties:
Type string
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
UcsmConfigs List<HyperflexClusterProfileUcsmConfig>
A reference to a hyperflexUcsmConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
VcenterConfigs List<HyperflexClusterProfileVcenterConfig>
A reference to a hyperflexVcenterConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
VersionContexts List<HyperflexClusterProfileVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
WaitForCompletion bool
This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
WwxnPrefix string
The WWxN prefix in the form of 20:00:00:25:B5:XX.
AccountMoid string
(ReadOnly) The Account ID for this managed object.
Action string
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
ActionParams []HyperflexClusterProfileActionParamArgs
This complex property has following sub-properties:
AdditionalProperties string
Ancestors []HyperflexClusterProfileAncestorArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
AssociatedClusters []HyperflexClusterProfileAssociatedClusterArgs
A reference to a hyperflexCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
AutoSupports []HyperflexClusterProfileAutoSupportArgs
A reference to a hyperflexAutoSupportPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
ClusterInternalSubnets []HyperflexClusterProfileClusterInternalSubnetArgs
A CIDR subnet for the cluster internal network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
ClusterNetworks []HyperflexClusterProfileClusterNetworkArgs
A reference to a hyperflexClusterNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ClusterStorages []HyperflexClusterProfileClusterStorageArgs
A reference to a hyperflexClusterStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ConfigContexts []HyperflexClusterProfileConfigContextArgs
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
ConfigResults []HyperflexClusterProfileConfigResultArgs
(ReadOnly) A reference to a hyperflexConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
CreateTime string
(ReadOnly) The time when this managed object was created.
DataIpAddress string
The storage data IP address for the HyperFlex cluster.
DeployedPolicies []string
(Array of schema.TypeString) -
Description string
Description of the profile.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
ExtFcStorages []HyperflexClusterProfileExtFcStorageArgs
A reference to a hyperflexExtFcStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ExtIscsiStorages []HyperflexClusterProfileExtIscsiStorageArgs
A reference to a hyperflexExtIscsiStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
HostNamePrefix string
The node name prefix that is used to automatically generate the default hostname for each server.A dash (-) will be appended to the prefix followed by the node number to form a hostname.This default naming scheme can be manually overridden in the node configuration.The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and muststart with an alphanumeric character.
Httpproxypolicies []HyperflexClusterProfileHttpproxypolicyArgs
A reference to a commHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
HyperflexClusterProfileId string
HypervisorControlIpAddress string
The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management.
HypervisorType string
The hypervisor type for the HyperFlex cluster.* ESXi - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version.* Hyper-V - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V.* Unknown - The hypervisor running on the HyperFlex cluster is not known.
IsNicBased bool
(ReadOnly) The NIC based setup being set/unset determined by inventory.
LocalCredentials []HyperflexClusterProfileLocalCredentialArgs
A reference to a hyperflexLocalCredentialPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
MacAddressPrefix string
The MAC address prefix in the form of 00:25:B5:XX.
MgmtIpAddress string
The management IP address for the HyperFlex cluster.
MgmtPlatform string
The management platform for the HyperFlex cluster.* FI - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect.* EDGE - The host servers used in the cluster deployment are standalone severs.* DC-No-FI - The host servers used in the cluster deployment are standalone servers with the DC Advantage license.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the profile instance or profile template.
NodeConfigs []HyperflexClusterProfileNodeConfigArgs
A reference to a hyperflexNodeConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
NodeProfileConfigs []HyperflexClusterProfileNodeProfileConfigArgs
An array of relationships to hyperflexNodeProfile resources. This complex property has following sub-properties:
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Organizations []HyperflexClusterProfileOrganizationArgs
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Owners []string
(Array of schema.TypeString) -(ReadOnly)
Parents []HyperflexClusterProfileParentArgs
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources []HyperflexClusterProfilePermissionResourceArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PolicyBuckets []HyperflexClusterProfilePolicyBucketArgs
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
ProxySettings []HyperflexClusterProfileProxySettingArgs
A reference to a hyperflexProxySettingPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
RemovedPolicies []string
(Array of schema.TypeString) -
Replication float64
The number of copies of each data block written.
RunningWorkflows []HyperflexClusterProfileRunningWorkflowArgs
(ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
ScheduledActions []HyperflexClusterProfileScheduledActionArgs
This complex property has following sub-properties:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
SoftwareVersions []HyperflexClusterProfileSoftwareVersionArgs
A reference to a hyperflexSoftwareVersionPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
SrcTemplates []HyperflexClusterProfileSrcTemplateArgs
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
StorageClientIpAddress string
The storage data IP address for the HyperFlex cluster.
StorageClientNetmask string
The netmask for the Storage client network IP address.
StorageClientVlans []HyperflexClusterProfileStorageClientVlanArgs
The named VLAN associated with this cluster's storage client network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
StorageClusterAuxiliaryIp string
The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller.
StorageDataVlans []HyperflexClusterProfileStorageDataVlanArgs
The VLAN for the HyperFlex storage data traffic. This complex property has following sub-properties:
StorageType string
The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party).* HyperFlexDp - The type of storage is HyperFlex Data Platform.* ThirdParty - The type of storage is 3rd Party Storage (PureStorage, etc..).
SysConfigs []HyperflexClusterProfileSysConfigArgs
A reference to a hyperflexSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Tags []HyperflexClusterProfileTagArgs
This complex property has following sub-properties:
Type string
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
UcsmConfigs []HyperflexClusterProfileUcsmConfigArgs
A reference to a hyperflexUcsmConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
VcenterConfigs []HyperflexClusterProfileVcenterConfigArgs
A reference to a hyperflexVcenterConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
VersionContexts []HyperflexClusterProfileVersionContextArgs
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
WaitForCompletion bool
This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
WwxnPrefix string
The WWxN prefix in the form of 20:00:00:25:B5:XX.
accountMoid String
(ReadOnly) The Account ID for this managed object.
action String
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
actionParams List<HyperflexClusterProfileActionParam>
This complex property has following sub-properties:
additionalProperties String
ancestors List<HyperflexClusterProfileAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
associatedClusters List<HyperflexClusterProfileAssociatedCluster>
A reference to a hyperflexCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
autoSupports List<HyperflexClusterProfileAutoSupport>
A reference to a hyperflexAutoSupportPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
clusterInternalSubnets List<HyperflexClusterProfileClusterInternalSubnet>
A CIDR subnet for the cluster internal network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
clusterNetworks List<HyperflexClusterProfileClusterNetwork>
A reference to a hyperflexClusterNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
clusterStorages List<HyperflexClusterProfileClusterStorage>
A reference to a hyperflexClusterStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
configContexts List<HyperflexClusterProfileConfigContext>
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
configResults List<HyperflexClusterProfileConfigResult>
(ReadOnly) A reference to a hyperflexConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
createTime String
(ReadOnly) The time when this managed object was created.
dataIpAddress String
The storage data IP address for the HyperFlex cluster.
deployedPolicies List<String>
(Array of schema.TypeString) -
description String
Description of the profile.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
extFcStorages List<HyperflexClusterProfileExtFcStorage>
A reference to a hyperflexExtFcStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
extIscsiStorages List<HyperflexClusterProfileExtIscsiStorage>
A reference to a hyperflexExtIscsiStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
hostNamePrefix String
The node name prefix that is used to automatically generate the default hostname for each server.A dash (-) will be appended to the prefix followed by the node number to form a hostname.This default naming scheme can be manually overridden in the node configuration.The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and muststart with an alphanumeric character.
httpproxypolicies List<HyperflexClusterProfileHttpproxypolicy>
A reference to a commHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
hyperflexClusterProfileId String
hypervisorControlIpAddress String
The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management.
hypervisorType String
The hypervisor type for the HyperFlex cluster.* ESXi - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version.* Hyper-V - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V.* Unknown - The hypervisor running on the HyperFlex cluster is not known.
isNicBased Boolean
(ReadOnly) The NIC based setup being set/unset determined by inventory.
localCredentials List<HyperflexClusterProfileLocalCredential>
A reference to a hyperflexLocalCredentialPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macAddressPrefix String
The MAC address prefix in the form of 00:25:B5:XX.
mgmtIpAddress String
The management IP address for the HyperFlex cluster.
mgmtPlatform String
The management platform for the HyperFlex cluster.* FI - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect.* EDGE - The host servers used in the cluster deployment are standalone severs.* DC-No-FI - The host servers used in the cluster deployment are standalone servers with the DC Advantage license.
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the profile instance or profile template.
nodeConfigs List<HyperflexClusterProfileNodeConfig>
A reference to a hyperflexNodeConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
nodeProfileConfigs List<HyperflexClusterProfileNodeProfileConfig>
An array of relationships to hyperflexNodeProfile resources. This complex property has following sub-properties:
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations List<HyperflexClusterProfileOrganization>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<HyperflexClusterProfileParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<HyperflexClusterProfilePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policyBuckets List<HyperflexClusterProfilePolicyBucket>
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
proxySettings List<HyperflexClusterProfileProxySetting>
A reference to a hyperflexProxySettingPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
removedPolicies List<String>
(Array of schema.TypeString) -
replication Double
The number of copies of each data block written.
runningWorkflows List<HyperflexClusterProfileRunningWorkflow>
(ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
scheduledActions List<HyperflexClusterProfileScheduledAction>
This complex property has following sub-properties:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
softwareVersions List<HyperflexClusterProfileSoftwareVersion>
A reference to a hyperflexSoftwareVersionPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
srcTemplates List<HyperflexClusterProfileSrcTemplate>
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
storageClientIpAddress String
The storage data IP address for the HyperFlex cluster.
storageClientNetmask String
The netmask for the Storage client network IP address.
storageClientVlans List<HyperflexClusterProfileStorageClientVlan>
The named VLAN associated with this cluster's storage client network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
storageClusterAuxiliaryIp String
The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller.
storageDataVlans List<HyperflexClusterProfileStorageDataVlan>
The VLAN for the HyperFlex storage data traffic. This complex property has following sub-properties:
storageType String
The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party).* HyperFlexDp - The type of storage is HyperFlex Data Platform.* ThirdParty - The type of storage is 3rd Party Storage (PureStorage, etc..).
sysConfigs List<HyperflexClusterProfileSysConfig>
A reference to a hyperflexSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags List<HyperflexClusterProfileTag>
This complex property has following sub-properties:
type String
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
ucsmConfigs List<HyperflexClusterProfileUcsmConfig>
A reference to a hyperflexUcsmConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
vcenterConfigs List<HyperflexClusterProfileVcenterConfig>
A reference to a hyperflexVcenterConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
versionContexts List<HyperflexClusterProfileVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
waitForCompletion Boolean
This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
wwxnPrefix String
The WWxN prefix in the form of 20:00:00:25:B5:XX.
accountMoid string
(ReadOnly) The Account ID for this managed object.
action string
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
actionParams HyperflexClusterProfileActionParam[]
This complex property has following sub-properties:
additionalProperties string
ancestors HyperflexClusterProfileAncestor[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
associatedClusters HyperflexClusterProfileAssociatedCluster[]
A reference to a hyperflexCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
autoSupports HyperflexClusterProfileAutoSupport[]
A reference to a hyperflexAutoSupportPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
classId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
clusterInternalSubnets HyperflexClusterProfileClusterInternalSubnet[]
A CIDR subnet for the cluster internal network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
clusterNetworks HyperflexClusterProfileClusterNetwork[]
A reference to a hyperflexClusterNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
clusterStorages HyperflexClusterProfileClusterStorage[]
A reference to a hyperflexClusterStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
configContexts HyperflexClusterProfileConfigContext[]
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
configResults HyperflexClusterProfileConfigResult[]
(ReadOnly) A reference to a hyperflexConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
createTime string
(ReadOnly) The time when this managed object was created.
dataIpAddress string
The storage data IP address for the HyperFlex cluster.
deployedPolicies string[]
(Array of schema.TypeString) -
description string
Description of the profile.
domainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
extFcStorages HyperflexClusterProfileExtFcStorage[]
A reference to a hyperflexExtFcStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
extIscsiStorages HyperflexClusterProfileExtIscsiStorage[]
A reference to a hyperflexExtIscsiStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
hostNamePrefix string
The node name prefix that is used to automatically generate the default hostname for each server.A dash (-) will be appended to the prefix followed by the node number to form a hostname.This default naming scheme can be manually overridden in the node configuration.The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and muststart with an alphanumeric character.
httpproxypolicies HyperflexClusterProfileHttpproxypolicy[]
A reference to a commHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
hyperflexClusterProfileId string
hypervisorControlIpAddress string
The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management.
hypervisorType string
The hypervisor type for the HyperFlex cluster.* ESXi - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version.* Hyper-V - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V.* Unknown - The hypervisor running on the HyperFlex cluster is not known.
isNicBased boolean
(ReadOnly) The NIC based setup being set/unset determined by inventory.
localCredentials HyperflexClusterProfileLocalCredential[]
A reference to a hyperflexLocalCredentialPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macAddressPrefix string
The MAC address prefix in the form of 00:25:B5:XX.
mgmtIpAddress string
The management IP address for the HyperFlex cluster.
mgmtPlatform string
The management platform for the HyperFlex cluster.* FI - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect.* EDGE - The host servers used in the cluster deployment are standalone severs.* DC-No-FI - The host servers used in the cluster deployment are standalone servers with the DC Advantage license.
modTime string
(ReadOnly) The time when this managed object was last modified.
moid string
The unique identifier of this Managed Object instance.
name string
Name of the profile instance or profile template.
nodeConfigs HyperflexClusterProfileNodeConfig[]
A reference to a hyperflexNodeConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
nodeProfileConfigs HyperflexClusterProfileNodeProfileConfig[]
An array of relationships to hyperflexNodeProfile resources. This complex property has following sub-properties:
objectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations HyperflexClusterProfileOrganization[]
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners string[]
(Array of schema.TypeString) -(ReadOnly)
parents HyperflexClusterProfileParent[]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources HyperflexClusterProfilePermissionResource[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policyBuckets HyperflexClusterProfilePolicyBucket[]
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
proxySettings HyperflexClusterProfileProxySetting[]
A reference to a hyperflexProxySettingPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
removedPolicies string[]
(Array of schema.TypeString) -
replication number
The number of copies of each data block written.
runningWorkflows HyperflexClusterProfileRunningWorkflow[]
(ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
scheduledActions HyperflexClusterProfileScheduledAction[]
This complex property has following sub-properties:
sharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
softwareVersions HyperflexClusterProfileSoftwareVersion[]
A reference to a hyperflexSoftwareVersionPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
srcTemplates HyperflexClusterProfileSrcTemplate[]
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
storageClientIpAddress string
The storage data IP address for the HyperFlex cluster.
storageClientNetmask string
The netmask for the Storage client network IP address.
storageClientVlans HyperflexClusterProfileStorageClientVlan[]
The named VLAN associated with this cluster's storage client network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
storageClusterAuxiliaryIp string
The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller.
storageDataVlans HyperflexClusterProfileStorageDataVlan[]
The VLAN for the HyperFlex storage data traffic. This complex property has following sub-properties:
storageType string
The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party).* HyperFlexDp - The type of storage is HyperFlex Data Platform.* ThirdParty - The type of storage is 3rd Party Storage (PureStorage, etc..).
sysConfigs HyperflexClusterProfileSysConfig[]
A reference to a hyperflexSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags HyperflexClusterProfileTag[]
This complex property has following sub-properties:
type string
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
ucsmConfigs HyperflexClusterProfileUcsmConfig[]
A reference to a hyperflexUcsmConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
vcenterConfigs HyperflexClusterProfileVcenterConfig[]
A reference to a hyperflexVcenterConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
versionContexts HyperflexClusterProfileVersionContext[]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
waitForCompletion boolean
This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
wwxnPrefix string
The WWxN prefix in the form of 20:00:00:25:B5:XX.
account_moid str
(ReadOnly) The Account ID for this managed object.
action str
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
action_params Sequence[HyperflexClusterProfileActionParamArgs]
This complex property has following sub-properties:
additional_properties str
ancestors Sequence[HyperflexClusterProfileAncestorArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
associated_clusters Sequence[HyperflexClusterProfileAssociatedClusterArgs]
A reference to a hyperflexCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
auto_supports Sequence[HyperflexClusterProfileAutoSupportArgs]
A reference to a hyperflexAutoSupportPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
class_id str
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
cluster_internal_subnets Sequence[HyperflexClusterProfileClusterInternalSubnetArgs]
A CIDR subnet for the cluster internal network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
cluster_networks Sequence[HyperflexClusterProfileClusterNetworkArgs]
A reference to a hyperflexClusterNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
cluster_storages Sequence[HyperflexClusterProfileClusterStorageArgs]
A reference to a hyperflexClusterStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
config_contexts Sequence[HyperflexClusterProfileConfigContextArgs]
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
config_results Sequence[HyperflexClusterProfileConfigResultArgs]
(ReadOnly) A reference to a hyperflexConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
create_time str
(ReadOnly) The time when this managed object was created.
data_ip_address str
The storage data IP address for the HyperFlex cluster.
deployed_policies Sequence[str]
(Array of schema.TypeString) -
description str
Description of the profile.
domain_group_moid str
(ReadOnly) The DomainGroup ID for this managed object.
ext_fc_storages Sequence[HyperflexClusterProfileExtFcStorageArgs]
A reference to a hyperflexExtFcStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ext_iscsi_storages Sequence[HyperflexClusterProfileExtIscsiStorageArgs]
A reference to a hyperflexExtIscsiStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
host_name_prefix str
The node name prefix that is used to automatically generate the default hostname for each server.A dash (-) will be appended to the prefix followed by the node number to form a hostname.This default naming scheme can be manually overridden in the node configuration.The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and muststart with an alphanumeric character.
httpproxypolicies Sequence[HyperflexClusterProfileHttpproxypolicyArgs]
A reference to a commHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
hyperflex_cluster_profile_id str
hypervisor_control_ip_address str
The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management.
hypervisor_type str
The hypervisor type for the HyperFlex cluster.* ESXi - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version.* Hyper-V - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V.* Unknown - The hypervisor running on the HyperFlex cluster is not known.
is_nic_based bool
(ReadOnly) The NIC based setup being set/unset determined by inventory.
local_credentials Sequence[HyperflexClusterProfileLocalCredentialArgs]
A reference to a hyperflexLocalCredentialPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
mac_address_prefix str
The MAC address prefix in the form of 00:25:B5:XX.
mgmt_ip_address str
The management IP address for the HyperFlex cluster.
mgmt_platform str
The management platform for the HyperFlex cluster.* FI - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect.* EDGE - The host servers used in the cluster deployment are standalone severs.* DC-No-FI - The host servers used in the cluster deployment are standalone servers with the DC Advantage license.
mod_time str
(ReadOnly) The time when this managed object was last modified.
moid str
The unique identifier of this Managed Object instance.
name str
Name of the profile instance or profile template.
node_configs Sequence[HyperflexClusterProfileNodeConfigArgs]
A reference to a hyperflexNodeConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
node_profile_configs Sequence[HyperflexClusterProfileNodeProfileConfigArgs]
An array of relationships to hyperflexNodeProfile resources. This complex property has following sub-properties:
object_type str
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations Sequence[HyperflexClusterProfileOrganizationArgs]
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners Sequence[str]
(Array of schema.TypeString) -(ReadOnly)
parents Sequence[HyperflexClusterProfileParentArgs]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permission_resources Sequence[HyperflexClusterProfilePermissionResourceArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policy_buckets Sequence[HyperflexClusterProfilePolicyBucketArgs]
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
proxy_settings Sequence[HyperflexClusterProfileProxySettingArgs]
A reference to a hyperflexProxySettingPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
removed_policies Sequence[str]
(Array of schema.TypeString) -
replication float
The number of copies of each data block written.
running_workflows Sequence[HyperflexClusterProfileRunningWorkflowArgs]
(ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
scheduled_actions Sequence[HyperflexClusterProfileScheduledActionArgs]
This complex property has following sub-properties:
shared_scope str
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
software_versions Sequence[HyperflexClusterProfileSoftwareVersionArgs]
A reference to a hyperflexSoftwareVersionPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
src_templates Sequence[HyperflexClusterProfileSrcTemplateArgs]
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
storage_client_ip_address str
The storage data IP address for the HyperFlex cluster.
storage_client_netmask str
The netmask for the Storage client network IP address.
storage_client_vlans Sequence[HyperflexClusterProfileStorageClientVlanArgs]
The named VLAN associated with this cluster's storage client network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
storage_cluster_auxiliary_ip str
The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller.
storage_data_vlans Sequence[HyperflexClusterProfileStorageDataVlanArgs]
The VLAN for the HyperFlex storage data traffic. This complex property has following sub-properties:
storage_type str
The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party).* HyperFlexDp - The type of storage is HyperFlex Data Platform.* ThirdParty - The type of storage is 3rd Party Storage (PureStorage, etc..).
sys_configs Sequence[HyperflexClusterProfileSysConfigArgs]
A reference to a hyperflexSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags Sequence[HyperflexClusterProfileTagArgs]
This complex property has following sub-properties:
type str
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
ucsm_configs Sequence[HyperflexClusterProfileUcsmConfigArgs]
A reference to a hyperflexUcsmConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
vcenter_configs Sequence[HyperflexClusterProfileVcenterConfigArgs]
A reference to a hyperflexVcenterConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
version_contexts Sequence[HyperflexClusterProfileVersionContextArgs]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
wait_for_completion bool
This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
wwxn_prefix str
The WWxN prefix in the form of 20:00:00:25:B5:XX.
accountMoid String
(ReadOnly) The Account ID for this managed object.
action String
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
actionParams List<Property Map>
This complex property has following sub-properties:
additionalProperties String
ancestors List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
associatedClusters List<Property Map>
A reference to a hyperflexCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
autoSupports List<Property Map>
A reference to a hyperflexAutoSupportPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
clusterInternalSubnets List<Property Map>
A CIDR subnet for the cluster internal network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
clusterNetworks List<Property Map>
A reference to a hyperflexClusterNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
clusterStorages List<Property Map>
A reference to a hyperflexClusterStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
configContexts List<Property Map>
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
configResults List<Property Map>
(ReadOnly) A reference to a hyperflexConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
createTime String
(ReadOnly) The time when this managed object was created.
dataIpAddress String
The storage data IP address for the HyperFlex cluster.
deployedPolicies List<String>
(Array of schema.TypeString) -
description String
Description of the profile.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
extFcStorages List<Property Map>
A reference to a hyperflexExtFcStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
extIscsiStorages List<Property Map>
A reference to a hyperflexExtIscsiStoragePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
hostNamePrefix String
The node name prefix that is used to automatically generate the default hostname for each server.A dash (-) will be appended to the prefix followed by the node number to form a hostname.This default naming scheme can be manually overridden in the node configuration.The maximum length of a prefix is 60, must only contain alphanumeric characters or dash (-), and muststart with an alphanumeric character.
httpproxypolicies List<Property Map>
A reference to a commHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
hyperflexClusterProfileId String
hypervisorControlIpAddress String
The hypervisor control virtual IP address for the HyperFlex compute cluster that is used for node/pod management.
hypervisorType String
The hypervisor type for the HyperFlex cluster.* ESXi - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version.* Hyper-V - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V.* Unknown - The hypervisor running on the HyperFlex cluster is not known.
isNicBased Boolean
(ReadOnly) The NIC based setup being set/unset determined by inventory.
localCredentials List<Property Map>
A reference to a hyperflexLocalCredentialPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
macAddressPrefix String
The MAC address prefix in the form of 00:25:B5:XX.
mgmtIpAddress String
The management IP address for the HyperFlex cluster.
mgmtPlatform String
The management platform for the HyperFlex cluster.* FI - The host servers used in the cluster deployment are managed by a UCS Fabric Interconnect.* EDGE - The host servers used in the cluster deployment are standalone severs.* DC-No-FI - The host servers used in the cluster deployment are standalone servers with the DC Advantage license.
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the profile instance or profile template.
nodeConfigs List<Property Map>
A reference to a hyperflexNodeConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
nodeProfileConfigs List<Property Map>
An array of relationships to hyperflexNodeProfile resources. This complex property has following sub-properties:
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations List<Property Map>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<Property Map>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policyBuckets List<Property Map>
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
proxySettings List<Property Map>
A reference to a hyperflexProxySettingPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
removedPolicies List<String>
(Array of schema.TypeString) -
replication Number
The number of copies of each data block written.
runningWorkflows List<Property Map>
(ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
scheduledActions List<Property Map>
This complex property has following sub-properties:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
softwareVersions List<Property Map>
A reference to a hyperflexSoftwareVersionPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
srcTemplates List<Property Map>
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
storageClientIpAddress String
The storage data IP address for the HyperFlex cluster.
storageClientNetmask String
The netmask for the Storage client network IP address.
storageClientVlans List<Property Map>
The named VLAN associated with this cluster's storage client network. This applies to Intersight Workload Engine clusters only. This complex property has following sub-properties:
storageClusterAuxiliaryIp String
The auxiliary storage IP address for the HyperFlex cluster. For two node clusters, this is the IP address of the auxiliary ZK controller.
storageDataVlans List<Property Map>
The VLAN for the HyperFlex storage data traffic. This complex property has following sub-properties:
storageType String
The storage type used for the HyperFlex cluster (HyperFlex Storage or 3rd party).* HyperFlexDp - The type of storage is HyperFlex Data Platform.* ThirdParty - The type of storage is 3rd Party Storage (PureStorage, etc..).
sysConfigs List<Property Map>
A reference to a hyperflexSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags List<Property Map>
This complex property has following sub-properties:
type String
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
ucsmConfigs List<Property Map>
A reference to a hyperflexUcsmConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
vcenterConfigs List<Property Map>
A reference to a hyperflexVcenterConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
versionContexts List<Property Map>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
waitForCompletion Boolean
This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
wwxnPrefix String
The WWxN prefix in the form of 20:00:00:25:B5:XX.

Supporting Types

HyperflexClusterProfileActionParam
, HyperflexClusterProfileActionParamArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Name This property is required. string
The action parameter identifier.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Value This property is required. string
The action parameter value.
AdditionalProperties This property is required. string
ClassId This property is required. string
Name This property is required. string
The action parameter identifier.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Value This property is required. string
The action parameter value.
additionalProperties This property is required. String
classId This property is required. String
name This property is required. String
The action parameter identifier.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. String
The action parameter value.
additionalProperties This property is required. string
classId This property is required. string
name This property is required. string
The action parameter identifier.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. string
The action parameter value.
additional_properties This property is required. str
class_id This property is required. str
name This property is required. str
The action parameter identifier.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. str
The action parameter value.
additionalProperties This property is required. String
classId This property is required. String
name This property is required. String
The action parameter identifier.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. String
The action parameter value.

HyperflexClusterProfileAncestor
, HyperflexClusterProfileAncestorArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileAssociatedCluster
, HyperflexClusterProfileAssociatedClusterArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileAutoSupport
, HyperflexClusterProfileAutoSupportArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileClusterInternalSubnet
, HyperflexClusterProfileClusterInternalSubnetArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Gateway This property is required. string
The IPv4 address of the default gateway.
IpAddress This property is required. string
The IPv4 Address, represented in the standard dot-decimal notation, e.g. 192.168.1.3.
Netmask This property is required. string
The IPv4 Netmask, represented in the standard dot-decimal notation, e.g. 255.255.255.0.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
AdditionalProperties This property is required. string
ClassId This property is required. string
Gateway This property is required. string
The IPv4 address of the default gateway.
IpAddress This property is required. string
The IPv4 Address, represented in the standard dot-decimal notation, e.g. 192.168.1.3.
Netmask This property is required. string
The IPv4 Netmask, represented in the standard dot-decimal notation, e.g. 255.255.255.0.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
additionalProperties This property is required. String
classId This property is required. String
gateway This property is required. String
The IPv4 address of the default gateway.
ipAddress This property is required. String
The IPv4 Address, represented in the standard dot-decimal notation, e.g. 192.168.1.3.
netmask This property is required. String
The IPv4 Netmask, represented in the standard dot-decimal notation, e.g. 255.255.255.0.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
additionalProperties This property is required. string
classId This property is required. string
gateway This property is required. string
The IPv4 address of the default gateway.
ipAddress This property is required. string
The IPv4 Address, represented in the standard dot-decimal notation, e.g. 192.168.1.3.
netmask This property is required. string
The IPv4 Netmask, represented in the standard dot-decimal notation, e.g. 255.255.255.0.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
additional_properties This property is required. str
class_id This property is required. str
gateway This property is required. str
The IPv4 address of the default gateway.
ip_address This property is required. str
The IPv4 Address, represented in the standard dot-decimal notation, e.g. 192.168.1.3.
netmask This property is required. str
The IPv4 Netmask, represented in the standard dot-decimal notation, e.g. 255.255.255.0.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
additionalProperties This property is required. String
classId This property is required. String
gateway This property is required. String
The IPv4 address of the default gateway.
ipAddress This property is required. String
The IPv4 Address, represented in the standard dot-decimal notation, e.g. 192.168.1.3.
netmask This property is required. String
The IPv4 Netmask, represented in the standard dot-decimal notation, e.g. 255.255.255.0.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.

HyperflexClusterProfileClusterNetwork
, HyperflexClusterProfileClusterNetworkArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileClusterStorage
, HyperflexClusterProfileClusterStorageArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileConfigContext
, HyperflexClusterProfileConfigContextArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
ConfigState This property is required. string
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
ConfigStateSummary This property is required. string
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
ConfigType This property is required. string
(ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
ControlAction This property is required. string
System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
ErrorState This property is required. string
Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
InconsistencyReasons This property is required. List<string>
(Array of schema.TypeString) -
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
OperState This property is required. string
(ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
AdditionalProperties This property is required. string
ClassId This property is required. string
ConfigState This property is required. string
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
ConfigStateSummary This property is required. string
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
ConfigType This property is required. string
(ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
ControlAction This property is required. string
System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
ErrorState This property is required. string
Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
InconsistencyReasons This property is required. []string
(Array of schema.TypeString) -
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
OperState This property is required. string
(ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
additionalProperties This property is required. String
classId This property is required. String
configState This property is required. String
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
configStateSummary This property is required. String
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
configType This property is required. String
(ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
controlAction This property is required. String
System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
errorState This property is required. String
Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
inconsistencyReasons This property is required. List<String>
(Array of schema.TypeString) -
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
operState This property is required. String
(ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
additionalProperties This property is required. string
classId This property is required. string
configState This property is required. string
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
configStateSummary This property is required. string
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
configType This property is required. string
(ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
controlAction This property is required. string
System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
errorState This property is required. string
Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
inconsistencyReasons This property is required. string[]
(Array of schema.TypeString) -
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
operState This property is required. string
(ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
additional_properties This property is required. str
class_id This property is required. str
config_state This property is required. str
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
config_state_summary This property is required. str
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
config_type This property is required. str
(ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
control_action This property is required. str
System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
error_state This property is required. str
Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
inconsistency_reasons This property is required. Sequence[str]
(Array of schema.TypeString) -
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
oper_state This property is required. str
(ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
additionalProperties This property is required. String
classId This property is required. String
configState This property is required. String
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
configStateSummary This property is required. String
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
configType This property is required. String
(ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
controlAction This property is required. String
System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
errorState This property is required. String
Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
inconsistencyReasons This property is required. List<String>
(Array of schema.TypeString) -
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
operState This property is required. String
(ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.

HyperflexClusterProfileConfigResult
, HyperflexClusterProfileConfigResultArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileExtFcStorage
, HyperflexClusterProfileExtFcStorageArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileExtIscsiStorage
, HyperflexClusterProfileExtIscsiStorageArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileHttpproxypolicy
, HyperflexClusterProfileHttpproxypolicyArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileLocalCredential
, HyperflexClusterProfileLocalCredentialArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileNodeConfig
, HyperflexClusterProfileNodeConfigArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileNodeProfileConfig
, HyperflexClusterProfileNodeProfileConfigArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileOrganization
, HyperflexClusterProfileOrganizationArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileParent
, HyperflexClusterProfileParentArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfilePermissionResource
, HyperflexClusterProfilePermissionResourceArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfilePolicyBucket
, HyperflexClusterProfilePolicyBucketArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileProxySetting
, HyperflexClusterProfileProxySettingArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileRunningWorkflow
, HyperflexClusterProfileRunningWorkflowArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileScheduledAction
, HyperflexClusterProfileScheduledActionArgs

Action This property is required. string
Name of the action to be performed on the profile.
AdditionalProperties This property is required. string
ClassId This property is required. string
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
ProceedOnReboot This property is required. bool
ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
Action This property is required. string
Name of the action to be performed on the profile.
AdditionalProperties This property is required. string
ClassId This property is required. string
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
ProceedOnReboot This property is required. bool
ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
action This property is required. String
Name of the action to be performed on the profile.
additionalProperties This property is required. String
classId This property is required. String
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
proceedOnReboot This property is required. Boolean
ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
action This property is required. string
Name of the action to be performed on the profile.
additionalProperties This property is required. string
classId This property is required. string
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
proceedOnReboot This property is required. boolean
ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
action This property is required. str
Name of the action to be performed on the profile.
additional_properties This property is required. str
class_id This property is required. str
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
proceed_on_reboot This property is required. bool
ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
action This property is required. String
Name of the action to be performed on the profile.
additionalProperties This property is required. String
classId This property is required. String
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
proceedOnReboot This property is required. Boolean
ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.

HyperflexClusterProfileSoftwareVersion
, HyperflexClusterProfileSoftwareVersionArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileSrcTemplate
, HyperflexClusterProfileSrcTemplateArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileStorageClientVlan
, HyperflexClusterProfileStorageClientVlanArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Name This property is required. string
The name of the VLAN.The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
VlanId This property is required. double
The ID of the named VLAN. An ID of 0 means the traffic is untagged.The ID can be any number between 0 and 4095, inclusive.
AdditionalProperties This property is required. string
ClassId This property is required. string
Name This property is required. string
The name of the VLAN.The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
VlanId This property is required. float64
The ID of the named VLAN. An ID of 0 means the traffic is untagged.The ID can be any number between 0 and 4095, inclusive.
additionalProperties This property is required. String
classId This property is required. String
name This property is required. String
The name of the VLAN.The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
vlanId This property is required. Double
The ID of the named VLAN. An ID of 0 means the traffic is untagged.The ID can be any number between 0 and 4095, inclusive.
additionalProperties This property is required. string
classId This property is required. string
name This property is required. string
The name of the VLAN.The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
vlanId This property is required. number
The ID of the named VLAN. An ID of 0 means the traffic is untagged.The ID can be any number between 0 and 4095, inclusive.
additional_properties This property is required. str
class_id This property is required. str
name This property is required. str
The name of the VLAN.The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
vlan_id This property is required. float
The ID of the named VLAN. An ID of 0 means the traffic is untagged.The ID can be any number between 0 and 4095, inclusive.
additionalProperties This property is required. String
classId This property is required. String
name This property is required. String
The name of the VLAN.The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
vlanId This property is required. Number
The ID of the named VLAN. An ID of 0 means the traffic is untagged.The ID can be any number between 0 and 4095, inclusive.

HyperflexClusterProfileStorageDataVlan
, HyperflexClusterProfileStorageDataVlanArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Name This property is required. string
The name of the VLAN.The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
VlanId This property is required. double
The ID of the named VLAN. An ID of 0 means the traffic is untagged.The ID can be any number between 0 and 4095, inclusive.
AdditionalProperties This property is required. string
ClassId This property is required. string
Name This property is required. string
The name of the VLAN.The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
VlanId This property is required. float64
The ID of the named VLAN. An ID of 0 means the traffic is untagged.The ID can be any number between 0 and 4095, inclusive.
additionalProperties This property is required. String
classId This property is required. String
name This property is required. String
The name of the VLAN.The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
vlanId This property is required. Double
The ID of the named VLAN. An ID of 0 means the traffic is untagged.The ID can be any number between 0 and 4095, inclusive.
additionalProperties This property is required. string
classId This property is required. string
name This property is required. string
The name of the VLAN.The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
vlanId This property is required. number
The ID of the named VLAN. An ID of 0 means the traffic is untagged.The ID can be any number between 0 and 4095, inclusive.
additional_properties This property is required. str
class_id This property is required. str
name This property is required. str
The name of the VLAN.The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
vlan_id This property is required. float
The ID of the named VLAN. An ID of 0 means the traffic is untagged.The ID can be any number between 0 and 4095, inclusive.
additionalProperties This property is required. String
classId This property is required. String
name This property is required. String
The name of the VLAN.The name can be from 1 to 32 characters long and can contain a combination of alphanumeric characters, underscores, and hyphens.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
vlanId This property is required. Number
The ID of the named VLAN. An ID of 0 means the traffic is untagged.The ID can be any number between 0 and 4095, inclusive.

HyperflexClusterProfileSysConfig
, HyperflexClusterProfileSysConfigArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileTag
, HyperflexClusterProfileTagArgs

AdditionalProperties This property is required. string
Key This property is required. string
The string representation of a tag key.
Value This property is required. string
The string representation of a tag value.
AdditionalProperties This property is required. string
Key This property is required. string
The string representation of a tag key.
Value This property is required. string
The string representation of a tag value.
additionalProperties This property is required. String
key This property is required. String
The string representation of a tag key.
value This property is required. String
The string representation of a tag value.
additionalProperties This property is required. string
key This property is required. string
The string representation of a tag key.
value This property is required. string
The string representation of a tag value.
additional_properties This property is required. str
key This property is required. str
The string representation of a tag key.
value This property is required. str
The string representation of a tag value.
additionalProperties This property is required. String
key This property is required. String
The string representation of a tag key.
value This property is required. String
The string representation of a tag value.

HyperflexClusterProfileUcsmConfig
, HyperflexClusterProfileUcsmConfigArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileVcenterConfig
, HyperflexClusterProfileVcenterConfigArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileVersionContext
, HyperflexClusterProfileVersionContextArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
InterestedMos This property is required. List<HyperflexClusterProfileVersionContextInterestedMo>
This complex property has following sub-properties:
MarkedForDeletion This property is required. bool
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
NrVersion This property is required. string
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
RefMos This property is required. List<HyperflexClusterProfileVersionContextRefMo>
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
Timestamp This property is required. string
(ReadOnly) The time this versioned Managed Object was created.
VersionType This property is required. string
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
AdditionalProperties This property is required. string
ClassId This property is required. string
InterestedMos This property is required. []HyperflexClusterProfileVersionContextInterestedMo
This complex property has following sub-properties:
MarkedForDeletion This property is required. bool
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
NrVersion This property is required. string
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
RefMos This property is required. []HyperflexClusterProfileVersionContextRefMo
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
Timestamp This property is required. string
(ReadOnly) The time this versioned Managed Object was created.
VersionType This property is required. string
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additionalProperties This property is required. String
classId This property is required. String
interestedMos This property is required. List<HyperflexClusterProfileVersionContextInterestedMo>
This complex property has following sub-properties:
markedForDeletion This property is required. Boolean
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nrVersion This property is required. String
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
refMos This property is required. List<HyperflexClusterProfileVersionContextRefMo>
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. String
(ReadOnly) The time this versioned Managed Object was created.
versionType This property is required. String
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additionalProperties This property is required. string
classId This property is required. string
interestedMos This property is required. HyperflexClusterProfileVersionContextInterestedMo[]
This complex property has following sub-properties:
markedForDeletion This property is required. boolean
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nrVersion This property is required. string
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
refMos This property is required. HyperflexClusterProfileVersionContextRefMo[]
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. string
(ReadOnly) The time this versioned Managed Object was created.
versionType This property is required. string
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additional_properties This property is required. str
class_id This property is required. str
interested_mos This property is required. Sequence[HyperflexClusterProfileVersionContextInterestedMo]
This complex property has following sub-properties:
marked_for_deletion This property is required. bool
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nr_version This property is required. str
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
ref_mos This property is required. Sequence[HyperflexClusterProfileVersionContextRefMo]
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. str
(ReadOnly) The time this versioned Managed Object was created.
version_type This property is required. str
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additionalProperties This property is required. String
classId This property is required. String
interestedMos This property is required. List<Property Map>
This complex property has following sub-properties:
markedForDeletion This property is required. Boolean
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nrVersion This property is required. String
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
refMos This property is required. List<Property Map>
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. String
(ReadOnly) The time this versioned Managed Object was created.
versionType This property is required. String
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.

HyperflexClusterProfileVersionContextInterestedMo
, HyperflexClusterProfileVersionContextInterestedMoArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

HyperflexClusterProfileVersionContextRefMo
, HyperflexClusterProfileVersionContextRefMoArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

Import

intersight_hyperflex_cluster_profile can be imported using the Moid of the object, e.g.

$ pulumi import intersight:index/hyperflexClusterProfile:HyperflexClusterProfile example 1234567890987654321abcde
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
intersight ciscodevnet/terraform-provider-intersight
License
Notes
This Pulumi package is based on the intersight Terraform Provider.