1. Packages
  2. Intersight Provider
  3. API Docs
  4. FabricSwitchClusterProfile
intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet

intersight.FabricSwitchClusterProfile

Explore with Pulumi AI

intersight logo
intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet

    This specifies the configuration policies for a cluster of switches.

    Usage Example

    Resource Creation

    import * as pulumi from "@pulumi/pulumi";
    import * as intersight from "@pulumi/intersight";
    
    const fabricSwitchClusterProfile1 = new intersight.FabricSwitchClusterProfile("fabricSwitchClusterProfile1", {
        description: "demo fabric switch cluster profile",
        type: "instance",
        organizations: [{
            objectType: "organization.Organization",
            moid: _var.organization,
        }],
    });
    
    import pulumi
    import pulumi_intersight as intersight
    
    fabric_switch_cluster_profile1 = intersight.FabricSwitchClusterProfile("fabricSwitchClusterProfile1",
        description="demo fabric switch cluster profile",
        type="instance",
        organizations=[{
            "object_type": "organization.Organization",
            "moid": var["organization"],
        }])
    
    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.NewFabricSwitchClusterProfile(ctx, "fabricSwitchClusterProfile1", &intersight.FabricSwitchClusterProfileArgs{
    			Description: pulumi.String("demo fabric switch cluster profile"),
    			Type:        pulumi.String("instance"),
    			Organizations: intersight.FabricSwitchClusterProfileOrganizationArray{
    				&intersight.FabricSwitchClusterProfileOrganizationArgs{
    					ObjectType: pulumi.String("organization.Organization"),
    					Moid:       pulumi.Any(_var.Organization),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Intersight = Pulumi.Intersight;
    
    return await Deployment.RunAsync(() => 
    {
        var fabricSwitchClusterProfile1 = new Intersight.FabricSwitchClusterProfile("fabricSwitchClusterProfile1", new()
        {
            Description = "demo fabric switch cluster profile",
            Type = "instance",
            Organizations = new[]
            {
                new Intersight.Inputs.FabricSwitchClusterProfileOrganizationArgs
                {
                    ObjectType = "organization.Organization",
                    Moid = @var.Organization,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.intersight.FabricSwitchClusterProfile;
    import com.pulumi.intersight.FabricSwitchClusterProfileArgs;
    import com.pulumi.intersight.inputs.FabricSwitchClusterProfileOrganizationArgs;
    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 fabricSwitchClusterProfile1 = new FabricSwitchClusterProfile("fabricSwitchClusterProfile1", FabricSwitchClusterProfileArgs.builder()
                .description("demo fabric switch cluster profile")
                .type("instance")
                .organizations(FabricSwitchClusterProfileOrganizationArgs.builder()
                    .objectType("organization.Organization")
                    .moid(var_.organization())
                    .build())
                .build());
    
        }
    }
    
    resources:
      fabricSwitchClusterProfile1:
        type: intersight:FabricSwitchClusterProfile
        properties:
          description: demo fabric switch cluster profile
          type: instance
          organizations:
            - objectType: organization.Organization
              moid: ${var.organization}
    

    Create FabricSwitchClusterProfile Resource

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

    Constructor syntax

    new FabricSwitchClusterProfile(name: string, args?: FabricSwitchClusterProfileArgs, opts?: CustomResourceOptions);
    @overload
    def FabricSwitchClusterProfile(resource_name: str,
                                   args: Optional[FabricSwitchClusterProfileArgs] = None,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def FabricSwitchClusterProfile(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   account_moid: Optional[str] = None,
                                   additional_properties: Optional[str] = None,
                                   ancestors: Optional[Sequence[FabricSwitchClusterProfileAncestorArgs]] = None,
                                   class_id: Optional[str] = None,
                                   cluster_assignments: Optional[Sequence[FabricSwitchClusterProfileClusterAssignmentArgs]] = None,
                                   config_contexts: Optional[Sequence[FabricSwitchClusterProfileConfigContextArgs]] = None,
                                   create_time: Optional[str] = None,
                                   deploy_status: Optional[str] = None,
                                   deployed_switches: Optional[str] = None,
                                   description: Optional[str] = None,
                                   domain_group_moid: Optional[str] = None,
                                   fabric_switch_cluster_profile_id: Optional[str] = None,
                                   mod_time: Optional[str] = None,
                                   moid: Optional[str] = None,
                                   name: Optional[str] = None,
                                   object_type: Optional[str] = None,
                                   organizations: Optional[Sequence[FabricSwitchClusterProfileOrganizationArgs]] = None,
                                   owners: Optional[Sequence[str]] = None,
                                   parents: Optional[Sequence[FabricSwitchClusterProfileParentArgs]] = None,
                                   permission_resources: Optional[Sequence[FabricSwitchClusterProfilePermissionResourceArgs]] = None,
                                   shared_scope: Optional[str] = None,
                                   src_templates: Optional[Sequence[FabricSwitchClusterProfileSrcTemplateArgs]] = None,
                                   switch_profiles: Optional[Sequence[FabricSwitchClusterProfileSwitchProfileArgs]] = None,
                                   switch_profiles_count: Optional[float] = None,
                                   tags: Optional[Sequence[FabricSwitchClusterProfileTagArgs]] = None,
                                   type: Optional[str] = None,
                                   user_label: Optional[str] = None,
                                   version_contexts: Optional[Sequence[FabricSwitchClusterProfileVersionContextArgs]] = None)
    func NewFabricSwitchClusterProfile(ctx *Context, name string, args *FabricSwitchClusterProfileArgs, opts ...ResourceOption) (*FabricSwitchClusterProfile, error)
    public FabricSwitchClusterProfile(string name, FabricSwitchClusterProfileArgs? args = null, CustomResourceOptions? opts = null)
    public FabricSwitchClusterProfile(String name, FabricSwitchClusterProfileArgs args)
    public FabricSwitchClusterProfile(String name, FabricSwitchClusterProfileArgs args, CustomResourceOptions options)
    
    type: intersight:FabricSwitchClusterProfile
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args FabricSwitchClusterProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args FabricSwitchClusterProfileArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args FabricSwitchClusterProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FabricSwitchClusterProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FabricSwitchClusterProfileArgs
    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 fabricSwitchClusterProfileResource = new Intersight.FabricSwitchClusterProfile("fabricSwitchClusterProfileResource", new()
    {
        AccountMoid = "string",
        AdditionalProperties = "string",
        Ancestors = new[]
        {
            new Intersight.Inputs.FabricSwitchClusterProfileAncestorArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ClassId = "string",
        ClusterAssignments = new[]
        {
            new Intersight.Inputs.FabricSwitchClusterProfileClusterAssignmentArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                NetworkElements = new[]
                {
                    new Intersight.Inputs.FabricSwitchClusterProfileClusterAssignmentNetworkElementArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                ObjectType = "string",
                SourceSwitchProfileOrTemplateName = "string",
            },
        },
        ConfigContexts = new[]
        {
            new Intersight.Inputs.FabricSwitchClusterProfileConfigContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                ConfigState = "string",
                ConfigStateSummary = "string",
                ConfigType = "string",
                ControlAction = "string",
                ErrorState = "string",
                InconsistencyReasons = new[]
                {
                    "string",
                },
                ObjectType = "string",
                OperState = "string",
            },
        },
        CreateTime = "string",
        DeployStatus = "string",
        DeployedSwitches = "string",
        Description = "string",
        DomainGroupMoid = "string",
        FabricSwitchClusterProfileId = "string",
        ModTime = "string",
        Moid = "string",
        Name = "string",
        ObjectType = "string",
        Organizations = new[]
        {
            new Intersight.Inputs.FabricSwitchClusterProfileOrganizationArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Owners = new[]
        {
            "string",
        },
        Parents = new[]
        {
            new Intersight.Inputs.FabricSwitchClusterProfileParentArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PermissionResources = new[]
        {
            new Intersight.Inputs.FabricSwitchClusterProfilePermissionResourceArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        SharedScope = "string",
        SrcTemplates = new[]
        {
            new Intersight.Inputs.FabricSwitchClusterProfileSrcTemplateArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        SwitchProfiles = new[]
        {
            new Intersight.Inputs.FabricSwitchClusterProfileSwitchProfileArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        SwitchProfilesCount = 0,
        Tags = new[]
        {
            new Intersight.Inputs.FabricSwitchClusterProfileTagArgs
            {
                AdditionalProperties = "string",
                Key = "string",
                Value = "string",
            },
        },
        Type = "string",
        UserLabel = "string",
        VersionContexts = new[]
        {
            new Intersight.Inputs.FabricSwitchClusterProfileVersionContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                InterestedMos = new[]
                {
                    new Intersight.Inputs.FabricSwitchClusterProfileVersionContextInterestedMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                MarkedForDeletion = false,
                NrVersion = "string",
                ObjectType = "string",
                RefMos = new[]
                {
                    new Intersight.Inputs.FabricSwitchClusterProfileVersionContextRefMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                Timestamp = "string",
                VersionType = "string",
            },
        },
    });
    
    example, err := intersight.NewFabricSwitchClusterProfile(ctx, "fabricSwitchClusterProfileResource", &intersight.FabricSwitchClusterProfileArgs{
    	AccountMoid:          pulumi.String("string"),
    	AdditionalProperties: pulumi.String("string"),
    	Ancestors: intersight.FabricSwitchClusterProfileAncestorArray{
    		&intersight.FabricSwitchClusterProfileAncestorArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ClassId: pulumi.String("string"),
    	ClusterAssignments: intersight.FabricSwitchClusterProfileClusterAssignmentArray{
    		&intersight.FabricSwitchClusterProfileClusterAssignmentArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			NetworkElements: intersight.FabricSwitchClusterProfileClusterAssignmentNetworkElementArray{
    				&intersight.FabricSwitchClusterProfileClusterAssignmentNetworkElementArgs{
    					AdditionalProperties: pulumi.String("string"),
    					ClassId:              pulumi.String("string"),
    					Moid:                 pulumi.String("string"),
    					ObjectType:           pulumi.String("string"),
    					Selector:             pulumi.String("string"),
    				},
    			},
    			ObjectType:                        pulumi.String("string"),
    			SourceSwitchProfileOrTemplateName: pulumi.String("string"),
    		},
    	},
    	ConfigContexts: intersight.FabricSwitchClusterProfileConfigContextArray{
    		&intersight.FabricSwitchClusterProfileConfigContextArgs{
    			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"),
    		},
    	},
    	CreateTime:                   pulumi.String("string"),
    	DeployStatus:                 pulumi.String("string"),
    	DeployedSwitches:             pulumi.String("string"),
    	Description:                  pulumi.String("string"),
    	DomainGroupMoid:              pulumi.String("string"),
    	FabricSwitchClusterProfileId: pulumi.String("string"),
    	ModTime:                      pulumi.String("string"),
    	Moid:                         pulumi.String("string"),
    	Name:                         pulumi.String("string"),
    	ObjectType:                   pulumi.String("string"),
    	Organizations: intersight.FabricSwitchClusterProfileOrganizationArray{
    		&intersight.FabricSwitchClusterProfileOrganizationArgs{
    			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.FabricSwitchClusterProfileParentArray{
    		&intersight.FabricSwitchClusterProfileParentArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PermissionResources: intersight.FabricSwitchClusterProfilePermissionResourceArray{
    		&intersight.FabricSwitchClusterProfilePermissionResourceArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	SharedScope: pulumi.String("string"),
    	SrcTemplates: intersight.FabricSwitchClusterProfileSrcTemplateArray{
    		&intersight.FabricSwitchClusterProfileSrcTemplateArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	SwitchProfiles: intersight.FabricSwitchClusterProfileSwitchProfileArray{
    		&intersight.FabricSwitchClusterProfileSwitchProfileArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	SwitchProfilesCount: pulumi.Float64(0),
    	Tags: intersight.FabricSwitchClusterProfileTagArray{
    		&intersight.FabricSwitchClusterProfileTagArgs{
    			AdditionalProperties: pulumi.String("string"),
    			Key:                  pulumi.String("string"),
    			Value:                pulumi.String("string"),
    		},
    	},
    	Type:      pulumi.String("string"),
    	UserLabel: pulumi.String("string"),
    	VersionContexts: intersight.FabricSwitchClusterProfileVersionContextArray{
    		&intersight.FabricSwitchClusterProfileVersionContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			InterestedMos: intersight.FabricSwitchClusterProfileVersionContextInterestedMoArray{
    				&intersight.FabricSwitchClusterProfileVersionContextInterestedMoArgs{
    					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.FabricSwitchClusterProfileVersionContextRefMoArray{
    				&intersight.FabricSwitchClusterProfileVersionContextRefMoArgs{
    					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"),
    		},
    	},
    })
    
    var fabricSwitchClusterProfileResource = new FabricSwitchClusterProfile("fabricSwitchClusterProfileResource", FabricSwitchClusterProfileArgs.builder()
        .accountMoid("string")
        .additionalProperties("string")
        .ancestors(FabricSwitchClusterProfileAncestorArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .classId("string")
        .clusterAssignments(FabricSwitchClusterProfileClusterAssignmentArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .networkElements(FabricSwitchClusterProfileClusterAssignmentNetworkElementArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .objectType("string")
            .sourceSwitchProfileOrTemplateName("string")
            .build())
        .configContexts(FabricSwitchClusterProfileConfigContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .configState("string")
            .configStateSummary("string")
            .configType("string")
            .controlAction("string")
            .errorState("string")
            .inconsistencyReasons("string")
            .objectType("string")
            .operState("string")
            .build())
        .createTime("string")
        .deployStatus("string")
        .deployedSwitches("string")
        .description("string")
        .domainGroupMoid("string")
        .fabricSwitchClusterProfileId("string")
        .modTime("string")
        .moid("string")
        .name("string")
        .objectType("string")
        .organizations(FabricSwitchClusterProfileOrganizationArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .owners("string")
        .parents(FabricSwitchClusterProfileParentArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .permissionResources(FabricSwitchClusterProfilePermissionResourceArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .sharedScope("string")
        .srcTemplates(FabricSwitchClusterProfileSrcTemplateArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .switchProfiles(FabricSwitchClusterProfileSwitchProfileArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .switchProfilesCount(0)
        .tags(FabricSwitchClusterProfileTagArgs.builder()
            .additionalProperties("string")
            .key("string")
            .value("string")
            .build())
        .type("string")
        .userLabel("string")
        .versionContexts(FabricSwitchClusterProfileVersionContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .interestedMos(FabricSwitchClusterProfileVersionContextInterestedMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .markedForDeletion(false)
            .nrVersion("string")
            .objectType("string")
            .refMos(FabricSwitchClusterProfileVersionContextRefMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .timestamp("string")
            .versionType("string")
            .build())
        .build());
    
    fabric_switch_cluster_profile_resource = intersight.FabricSwitchClusterProfile("fabricSwitchClusterProfileResource",
        account_moid="string",
        additional_properties="string",
        ancestors=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        class_id="string",
        cluster_assignments=[{
            "additional_properties": "string",
            "class_id": "string",
            "network_elements": [{
                "additional_properties": "string",
                "class_id": "string",
                "moid": "string",
                "object_type": "string",
                "selector": "string",
            }],
            "object_type": "string",
            "source_switch_profile_or_template_name": "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",
        }],
        create_time="string",
        deploy_status="string",
        deployed_switches="string",
        description="string",
        domain_group_moid="string",
        fabric_switch_cluster_profile_id="string",
        mod_time="string",
        moid="string",
        name="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",
        }],
        shared_scope="string",
        src_templates=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        switch_profiles=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        switch_profiles_count=0,
        tags=[{
            "additional_properties": "string",
            "key": "string",
            "value": "string",
        }],
        type="string",
        user_label="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",
        }])
    
    const fabricSwitchClusterProfileResource = new intersight.FabricSwitchClusterProfile("fabricSwitchClusterProfileResource", {
        accountMoid: "string",
        additionalProperties: "string",
        ancestors: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        classId: "string",
        clusterAssignments: [{
            additionalProperties: "string",
            classId: "string",
            networkElements: [{
                additionalProperties: "string",
                classId: "string",
                moid: "string",
                objectType: "string",
                selector: "string",
            }],
            objectType: "string",
            sourceSwitchProfileOrTemplateName: "string",
        }],
        configContexts: [{
            additionalProperties: "string",
            classId: "string",
            configState: "string",
            configStateSummary: "string",
            configType: "string",
            controlAction: "string",
            errorState: "string",
            inconsistencyReasons: ["string"],
            objectType: "string",
            operState: "string",
        }],
        createTime: "string",
        deployStatus: "string",
        deployedSwitches: "string",
        description: "string",
        domainGroupMoid: "string",
        fabricSwitchClusterProfileId: "string",
        modTime: "string",
        moid: "string",
        name: "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",
        }],
        sharedScope: "string",
        srcTemplates: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        switchProfiles: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        switchProfilesCount: 0,
        tags: [{
            additionalProperties: "string",
            key: "string",
            value: "string",
        }],
        type: "string",
        userLabel: "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",
        }],
    });
    
    type: intersight:FabricSwitchClusterProfile
    properties:
        accountMoid: string
        additionalProperties: string
        ancestors:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        classId: string
        clusterAssignments:
            - additionalProperties: string
              classId: string
              networkElements:
                - additionalProperties: string
                  classId: string
                  moid: string
                  objectType: string
                  selector: string
              objectType: string
              sourceSwitchProfileOrTemplateName: string
        configContexts:
            - additionalProperties: string
              classId: string
              configState: string
              configStateSummary: string
              configType: string
              controlAction: string
              errorState: string
              inconsistencyReasons:
                - string
              objectType: string
              operState: string
        createTime: string
        deployStatus: string
        deployedSwitches: string
        description: string
        domainGroupMoid: string
        fabricSwitchClusterProfileId: string
        modTime: string
        moid: string
        name: 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
        sharedScope: string
        srcTemplates:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        switchProfiles:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        switchProfilesCount: 0
        tags:
            - additionalProperties: string
              key: string
              value: string
        type: string
        userLabel: 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
    

    FabricSwitchClusterProfile 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 FabricSwitchClusterProfile resource accepts the following input properties:

    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors List<FabricSwitchClusterProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    ClusterAssignments List<FabricSwitchClusterProfileClusterAssignment>
    This complex property has following sub-properties:
    ConfigContexts List<FabricSwitchClusterProfileConfigContext>
    (ReadOnly) This provides consolidated configuration context of all the switch profiles referred by Switch Cluster Profile. This complex property has following sub-properties:
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DeployStatus string
    (ReadOnly) Deploy status of the switch cluster profile indicating if deployment has been initiated on all the members of the cluster profile.* None - Switch profiles not deployed on either of the switches.* Complete - Both switch profiles of the cluster profile are deployed.* Partial - Only one of the switch profiles of the cluster profile is deployed.
    DeployedSwitches string
    (ReadOnly) Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both.* None - Switch profiles not deployed on either of the fabric interconnects.* A - Switch profiles deployed only on fabric interconnect A.* B - Switch profiles deployed only on fabric interconnect B.* AB - Switch profiles deployed on both fabric interconnect A and B.
    Description string
    Description of the profile.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FabricSwitchClusterProfileId string
    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.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations List<FabricSwitchClusterProfileOrganization>
    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<FabricSwitchClusterProfileParent>
    (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<FabricSwitchClusterProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    SrcTemplates List<FabricSwitchClusterProfileSrcTemplate>
    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:
    SwitchProfiles List<FabricSwitchClusterProfileSwitchProfile>
    An array of relationships to fabricSwitchProfile resources. This complex property has following sub-properties:
    SwitchProfilesCount double
    (ReadOnly) Number of switch profiles that are part of this cluster profile.
    Tags List<FabricSwitchClusterProfileTag>
    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.
    UserLabel string
    The user defined label assigned to the switch profile.
    VersionContexts List<FabricSwitchClusterProfileVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors []FabricSwitchClusterProfileAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    ClusterAssignments []FabricSwitchClusterProfileClusterAssignmentArgs
    This complex property has following sub-properties:
    ConfigContexts []FabricSwitchClusterProfileConfigContextArgs
    (ReadOnly) This provides consolidated configuration context of all the switch profiles referred by Switch Cluster Profile. This complex property has following sub-properties:
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DeployStatus string
    (ReadOnly) Deploy status of the switch cluster profile indicating if deployment has been initiated on all the members of the cluster profile.* None - Switch profiles not deployed on either of the switches.* Complete - Both switch profiles of the cluster profile are deployed.* Partial - Only one of the switch profiles of the cluster profile is deployed.
    DeployedSwitches string
    (ReadOnly) Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both.* None - Switch profiles not deployed on either of the fabric interconnects.* A - Switch profiles deployed only on fabric interconnect A.* B - Switch profiles deployed only on fabric interconnect B.* AB - Switch profiles deployed on both fabric interconnect A and B.
    Description string
    Description of the profile.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FabricSwitchClusterProfileId string
    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.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations []FabricSwitchClusterProfileOrganizationArgs
    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 []FabricSwitchClusterProfileParentArgs
    (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 []FabricSwitchClusterProfilePermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    SrcTemplates []FabricSwitchClusterProfileSrcTemplateArgs
    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:
    SwitchProfiles []FabricSwitchClusterProfileSwitchProfileArgs
    An array of relationships to fabricSwitchProfile resources. This complex property has following sub-properties:
    SwitchProfilesCount float64
    (ReadOnly) Number of switch profiles that are part of this cluster profile.
    Tags []FabricSwitchClusterProfileTagArgs
    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.
    UserLabel string
    The user defined label assigned to the switch profile.
    VersionContexts []FabricSwitchClusterProfileVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<FabricSwitchClusterProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    clusterAssignments List<FabricSwitchClusterProfileClusterAssignment>
    This complex property has following sub-properties:
    configContexts List<FabricSwitchClusterProfileConfigContext>
    (ReadOnly) This provides consolidated configuration context of all the switch profiles referred by Switch Cluster Profile. This complex property has following sub-properties:
    createTime String
    (ReadOnly) The time when this managed object was created.
    deployStatus String
    (ReadOnly) Deploy status of the switch cluster profile indicating if deployment has been initiated on all the members of the cluster profile.* None - Switch profiles not deployed on either of the switches.* Complete - Both switch profiles of the cluster profile are deployed.* Partial - Only one of the switch profiles of the cluster profile is deployed.
    deployedSwitches String
    (ReadOnly) Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both.* None - Switch profiles not deployed on either of the fabric interconnects.* A - Switch profiles deployed only on fabric interconnect A.* B - Switch profiles deployed only on fabric interconnect B.* AB - Switch profiles deployed on both fabric interconnect A and B.
    description String
    Description of the profile.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    fabricSwitchClusterProfileId String
    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.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations List<FabricSwitchClusterProfileOrganization>
    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<FabricSwitchClusterProfileParent>
    (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<FabricSwitchClusterProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    srcTemplates List<FabricSwitchClusterProfileSrcTemplate>
    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:
    switchProfiles List<FabricSwitchClusterProfileSwitchProfile>
    An array of relationships to fabricSwitchProfile resources. This complex property has following sub-properties:
    switchProfilesCount Double
    (ReadOnly) Number of switch profiles that are part of this cluster profile.
    tags List<FabricSwitchClusterProfileTag>
    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.
    userLabel String
    The user defined label assigned to the switch profile.
    versionContexts List<FabricSwitchClusterProfileVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    additionalProperties string
    ancestors FabricSwitchClusterProfileAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    clusterAssignments FabricSwitchClusterProfileClusterAssignment[]
    This complex property has following sub-properties:
    configContexts FabricSwitchClusterProfileConfigContext[]
    (ReadOnly) This provides consolidated configuration context of all the switch profiles referred by Switch Cluster Profile. This complex property has following sub-properties:
    createTime string
    (ReadOnly) The time when this managed object was created.
    deployStatus string
    (ReadOnly) Deploy status of the switch cluster profile indicating if deployment has been initiated on all the members of the cluster profile.* None - Switch profiles not deployed on either of the switches.* Complete - Both switch profiles of the cluster profile are deployed.* Partial - Only one of the switch profiles of the cluster profile is deployed.
    deployedSwitches string
    (ReadOnly) Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both.* None - Switch profiles not deployed on either of the fabric interconnects.* A - Switch profiles deployed only on fabric interconnect A.* B - Switch profiles deployed only on fabric interconnect B.* AB - Switch profiles deployed on both fabric interconnect A and B.
    description string
    Description of the profile.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    fabricSwitchClusterProfileId string
    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.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations FabricSwitchClusterProfileOrganization[]
    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 FabricSwitchClusterProfileParent[]
    (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 FabricSwitchClusterProfilePermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    srcTemplates FabricSwitchClusterProfileSrcTemplate[]
    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:
    switchProfiles FabricSwitchClusterProfileSwitchProfile[]
    An array of relationships to fabricSwitchProfile resources. This complex property has following sub-properties:
    switchProfilesCount number
    (ReadOnly) Number of switch profiles that are part of this cluster profile.
    tags FabricSwitchClusterProfileTag[]
    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.
    userLabel string
    The user defined label assigned to the switch profile.
    versionContexts FabricSwitchClusterProfileVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    additional_properties str
    ancestors Sequence[FabricSwitchClusterProfileAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. 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_assignments Sequence[FabricSwitchClusterProfileClusterAssignmentArgs]
    This complex property has following sub-properties:
    config_contexts Sequence[FabricSwitchClusterProfileConfigContextArgs]
    (ReadOnly) This provides consolidated configuration context of all the switch profiles referred by Switch Cluster Profile. This complex property has following sub-properties:
    create_time str
    (ReadOnly) The time when this managed object was created.
    deploy_status str
    (ReadOnly) Deploy status of the switch cluster profile indicating if deployment has been initiated on all the members of the cluster profile.* None - Switch profiles not deployed on either of the switches.* Complete - Both switch profiles of the cluster profile are deployed.* Partial - Only one of the switch profiles of the cluster profile is deployed.
    deployed_switches str
    (ReadOnly) Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both.* None - Switch profiles not deployed on either of the fabric interconnects.* A - Switch profiles deployed only on fabric interconnect A.* B - Switch profiles deployed only on fabric interconnect B.* AB - Switch profiles deployed on both fabric interconnect A and B.
    description str
    Description of the profile.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    fabric_switch_cluster_profile_id str
    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.
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations Sequence[FabricSwitchClusterProfileOrganizationArgs]
    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[FabricSwitchClusterProfileParentArgs]
    (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[FabricSwitchClusterProfilePermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    src_templates Sequence[FabricSwitchClusterProfileSrcTemplateArgs]
    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:
    switch_profiles Sequence[FabricSwitchClusterProfileSwitchProfileArgs]
    An array of relationships to fabricSwitchProfile resources. This complex property has following sub-properties:
    switch_profiles_count float
    (ReadOnly) Number of switch profiles that are part of this cluster profile.
    tags Sequence[FabricSwitchClusterProfileTagArgs]
    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.
    user_label str
    The user defined label assigned to the switch profile.
    version_contexts Sequence[FabricSwitchClusterProfileVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    clusterAssignments List<Property Map>
    This complex property has following sub-properties:
    configContexts List<Property Map>
    (ReadOnly) This provides consolidated configuration context of all the switch profiles referred by Switch Cluster Profile. This complex property has following sub-properties:
    createTime String
    (ReadOnly) The time when this managed object was created.
    deployStatus String
    (ReadOnly) Deploy status of the switch cluster profile indicating if deployment has been initiated on all the members of the cluster profile.* None - Switch profiles not deployed on either of the switches.* Complete - Both switch profiles of the cluster profile are deployed.* Partial - Only one of the switch profiles of the cluster profile is deployed.
    deployedSwitches String
    (ReadOnly) Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both.* None - Switch profiles not deployed on either of the fabric interconnects.* A - Switch profiles deployed only on fabric interconnect A.* B - Switch profiles deployed only on fabric interconnect B.* AB - Switch profiles deployed on both fabric interconnect A and B.
    description String
    Description of the profile.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    fabricSwitchClusterProfileId String
    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.
    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:
    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.
    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:
    switchProfiles List<Property Map>
    An array of relationships to fabricSwitchProfile resources. This complex property has following sub-properties:
    switchProfilesCount Number
    (ReadOnly) Number of switch profiles that are part of this cluster profile.
    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.
    userLabel String
    The user defined label assigned to the switch profile.
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

    Outputs

    All input properties are implicitly available as output properties. Additionally, the FabricSwitchClusterProfile 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 FabricSwitchClusterProfile Resource

    Get an existing FabricSwitchClusterProfile 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?: FabricSwitchClusterProfileState, opts?: CustomResourceOptions): FabricSwitchClusterProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_moid: Optional[str] = None,
            additional_properties: Optional[str] = None,
            ancestors: Optional[Sequence[FabricSwitchClusterProfileAncestorArgs]] = None,
            class_id: Optional[str] = None,
            cluster_assignments: Optional[Sequence[FabricSwitchClusterProfileClusterAssignmentArgs]] = None,
            config_contexts: Optional[Sequence[FabricSwitchClusterProfileConfigContextArgs]] = None,
            create_time: Optional[str] = None,
            deploy_status: Optional[str] = None,
            deployed_switches: Optional[str] = None,
            description: Optional[str] = None,
            domain_group_moid: Optional[str] = None,
            fabric_switch_cluster_profile_id: Optional[str] = None,
            mod_time: Optional[str] = None,
            moid: Optional[str] = None,
            name: Optional[str] = None,
            object_type: Optional[str] = None,
            organizations: Optional[Sequence[FabricSwitchClusterProfileOrganizationArgs]] = None,
            owners: Optional[Sequence[str]] = None,
            parents: Optional[Sequence[FabricSwitchClusterProfileParentArgs]] = None,
            permission_resources: Optional[Sequence[FabricSwitchClusterProfilePermissionResourceArgs]] = None,
            shared_scope: Optional[str] = None,
            src_templates: Optional[Sequence[FabricSwitchClusterProfileSrcTemplateArgs]] = None,
            switch_profiles: Optional[Sequence[FabricSwitchClusterProfileSwitchProfileArgs]] = None,
            switch_profiles_count: Optional[float] = None,
            tags: Optional[Sequence[FabricSwitchClusterProfileTagArgs]] = None,
            type: Optional[str] = None,
            user_label: Optional[str] = None,
            version_contexts: Optional[Sequence[FabricSwitchClusterProfileVersionContextArgs]] = None) -> FabricSwitchClusterProfile
    func GetFabricSwitchClusterProfile(ctx *Context, name string, id IDInput, state *FabricSwitchClusterProfileState, opts ...ResourceOption) (*FabricSwitchClusterProfile, error)
    public static FabricSwitchClusterProfile Get(string name, Input<string> id, FabricSwitchClusterProfileState? state, CustomResourceOptions? opts = null)
    public static FabricSwitchClusterProfile get(String name, Output<String> id, FabricSwitchClusterProfileState state, CustomResourceOptions options)
    resources:  _:    type: intersight:FabricSwitchClusterProfile    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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.
    AdditionalProperties string
    Ancestors List<FabricSwitchClusterProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    ClusterAssignments List<FabricSwitchClusterProfileClusterAssignment>
    This complex property has following sub-properties:
    ConfigContexts List<FabricSwitchClusterProfileConfigContext>
    (ReadOnly) This provides consolidated configuration context of all the switch profiles referred by Switch Cluster Profile. This complex property has following sub-properties:
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DeployStatus string
    (ReadOnly) Deploy status of the switch cluster profile indicating if deployment has been initiated on all the members of the cluster profile.* None - Switch profiles not deployed on either of the switches.* Complete - Both switch profiles of the cluster profile are deployed.* Partial - Only one of the switch profiles of the cluster profile is deployed.
    DeployedSwitches string
    (ReadOnly) Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both.* None - Switch profiles not deployed on either of the fabric interconnects.* A - Switch profiles deployed only on fabric interconnect A.* B - Switch profiles deployed only on fabric interconnect B.* AB - Switch profiles deployed on both fabric interconnect A and B.
    Description string
    Description of the profile.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FabricSwitchClusterProfileId string
    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.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations List<FabricSwitchClusterProfileOrganization>
    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<FabricSwitchClusterProfileParent>
    (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<FabricSwitchClusterProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    SrcTemplates List<FabricSwitchClusterProfileSrcTemplate>
    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:
    SwitchProfiles List<FabricSwitchClusterProfileSwitchProfile>
    An array of relationships to fabricSwitchProfile resources. This complex property has following sub-properties:
    SwitchProfilesCount double
    (ReadOnly) Number of switch profiles that are part of this cluster profile.
    Tags List<FabricSwitchClusterProfileTag>
    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.
    UserLabel string
    The user defined label assigned to the switch profile.
    VersionContexts List<FabricSwitchClusterProfileVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors []FabricSwitchClusterProfileAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    ClusterAssignments []FabricSwitchClusterProfileClusterAssignmentArgs
    This complex property has following sub-properties:
    ConfigContexts []FabricSwitchClusterProfileConfigContextArgs
    (ReadOnly) This provides consolidated configuration context of all the switch profiles referred by Switch Cluster Profile. This complex property has following sub-properties:
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DeployStatus string
    (ReadOnly) Deploy status of the switch cluster profile indicating if deployment has been initiated on all the members of the cluster profile.* None - Switch profiles not deployed on either of the switches.* Complete - Both switch profiles of the cluster profile are deployed.* Partial - Only one of the switch profiles of the cluster profile is deployed.
    DeployedSwitches string
    (ReadOnly) Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both.* None - Switch profiles not deployed on either of the fabric interconnects.* A - Switch profiles deployed only on fabric interconnect A.* B - Switch profiles deployed only on fabric interconnect B.* AB - Switch profiles deployed on both fabric interconnect A and B.
    Description string
    Description of the profile.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FabricSwitchClusterProfileId string
    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.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations []FabricSwitchClusterProfileOrganizationArgs
    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 []FabricSwitchClusterProfileParentArgs
    (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 []FabricSwitchClusterProfilePermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    SrcTemplates []FabricSwitchClusterProfileSrcTemplateArgs
    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:
    SwitchProfiles []FabricSwitchClusterProfileSwitchProfileArgs
    An array of relationships to fabricSwitchProfile resources. This complex property has following sub-properties:
    SwitchProfilesCount float64
    (ReadOnly) Number of switch profiles that are part of this cluster profile.
    Tags []FabricSwitchClusterProfileTagArgs
    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.
    UserLabel string
    The user defined label assigned to the switch profile.
    VersionContexts []FabricSwitchClusterProfileVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<FabricSwitchClusterProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    clusterAssignments List<FabricSwitchClusterProfileClusterAssignment>
    This complex property has following sub-properties:
    configContexts List<FabricSwitchClusterProfileConfigContext>
    (ReadOnly) This provides consolidated configuration context of all the switch profiles referred by Switch Cluster Profile. This complex property has following sub-properties:
    createTime String
    (ReadOnly) The time when this managed object was created.
    deployStatus String
    (ReadOnly) Deploy status of the switch cluster profile indicating if deployment has been initiated on all the members of the cluster profile.* None - Switch profiles not deployed on either of the switches.* Complete - Both switch profiles of the cluster profile are deployed.* Partial - Only one of the switch profiles of the cluster profile is deployed.
    deployedSwitches String
    (ReadOnly) Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both.* None - Switch profiles not deployed on either of the fabric interconnects.* A - Switch profiles deployed only on fabric interconnect A.* B - Switch profiles deployed only on fabric interconnect B.* AB - Switch profiles deployed on both fabric interconnect A and B.
    description String
    Description of the profile.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    fabricSwitchClusterProfileId String
    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.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations List<FabricSwitchClusterProfileOrganization>
    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<FabricSwitchClusterProfileParent>
    (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<FabricSwitchClusterProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    srcTemplates List<FabricSwitchClusterProfileSrcTemplate>
    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:
    switchProfiles List<FabricSwitchClusterProfileSwitchProfile>
    An array of relationships to fabricSwitchProfile resources. This complex property has following sub-properties:
    switchProfilesCount Double
    (ReadOnly) Number of switch profiles that are part of this cluster profile.
    tags List<FabricSwitchClusterProfileTag>
    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.
    userLabel String
    The user defined label assigned to the switch profile.
    versionContexts List<FabricSwitchClusterProfileVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    additionalProperties string
    ancestors FabricSwitchClusterProfileAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    clusterAssignments FabricSwitchClusterProfileClusterAssignment[]
    This complex property has following sub-properties:
    configContexts FabricSwitchClusterProfileConfigContext[]
    (ReadOnly) This provides consolidated configuration context of all the switch profiles referred by Switch Cluster Profile. This complex property has following sub-properties:
    createTime string
    (ReadOnly) The time when this managed object was created.
    deployStatus string
    (ReadOnly) Deploy status of the switch cluster profile indicating if deployment has been initiated on all the members of the cluster profile.* None - Switch profiles not deployed on either of the switches.* Complete - Both switch profiles of the cluster profile are deployed.* Partial - Only one of the switch profiles of the cluster profile is deployed.
    deployedSwitches string
    (ReadOnly) Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both.* None - Switch profiles not deployed on either of the fabric interconnects.* A - Switch profiles deployed only on fabric interconnect A.* B - Switch profiles deployed only on fabric interconnect B.* AB - Switch profiles deployed on both fabric interconnect A and B.
    description string
    Description of the profile.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    fabricSwitchClusterProfileId string
    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.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations FabricSwitchClusterProfileOrganization[]
    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 FabricSwitchClusterProfileParent[]
    (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 FabricSwitchClusterProfilePermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    srcTemplates FabricSwitchClusterProfileSrcTemplate[]
    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:
    switchProfiles FabricSwitchClusterProfileSwitchProfile[]
    An array of relationships to fabricSwitchProfile resources. This complex property has following sub-properties:
    switchProfilesCount number
    (ReadOnly) Number of switch profiles that are part of this cluster profile.
    tags FabricSwitchClusterProfileTag[]
    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.
    userLabel string
    The user defined label assigned to the switch profile.
    versionContexts FabricSwitchClusterProfileVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    additional_properties str
    ancestors Sequence[FabricSwitchClusterProfileAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. 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_assignments Sequence[FabricSwitchClusterProfileClusterAssignmentArgs]
    This complex property has following sub-properties:
    config_contexts Sequence[FabricSwitchClusterProfileConfigContextArgs]
    (ReadOnly) This provides consolidated configuration context of all the switch profiles referred by Switch Cluster Profile. This complex property has following sub-properties:
    create_time str
    (ReadOnly) The time when this managed object was created.
    deploy_status str
    (ReadOnly) Deploy status of the switch cluster profile indicating if deployment has been initiated on all the members of the cluster profile.* None - Switch profiles not deployed on either of the switches.* Complete - Both switch profiles of the cluster profile are deployed.* Partial - Only one of the switch profiles of the cluster profile is deployed.
    deployed_switches str
    (ReadOnly) Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both.* None - Switch profiles not deployed on either of the fabric interconnects.* A - Switch profiles deployed only on fabric interconnect A.* B - Switch profiles deployed only on fabric interconnect B.* AB - Switch profiles deployed on both fabric interconnect A and B.
    description str
    Description of the profile.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    fabric_switch_cluster_profile_id str
    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.
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations Sequence[FabricSwitchClusterProfileOrganizationArgs]
    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[FabricSwitchClusterProfileParentArgs]
    (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[FabricSwitchClusterProfilePermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    src_templates Sequence[FabricSwitchClusterProfileSrcTemplateArgs]
    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:
    switch_profiles Sequence[FabricSwitchClusterProfileSwitchProfileArgs]
    An array of relationships to fabricSwitchProfile resources. This complex property has following sub-properties:
    switch_profiles_count float
    (ReadOnly) Number of switch profiles that are part of this cluster profile.
    tags Sequence[FabricSwitchClusterProfileTagArgs]
    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.
    user_label str
    The user defined label assigned to the switch profile.
    version_contexts Sequence[FabricSwitchClusterProfileVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    clusterAssignments List<Property Map>
    This complex property has following sub-properties:
    configContexts List<Property Map>
    (ReadOnly) This provides consolidated configuration context of all the switch profiles referred by Switch Cluster Profile. This complex property has following sub-properties:
    createTime String
    (ReadOnly) The time when this managed object was created.
    deployStatus String
    (ReadOnly) Deploy status of the switch cluster profile indicating if deployment has been initiated on all the members of the cluster profile.* None - Switch profiles not deployed on either of the switches.* Complete - Both switch profiles of the cluster profile are deployed.* Partial - Only one of the switch profiles of the cluster profile is deployed.
    deployedSwitches String
    (ReadOnly) Values indicating the switches on which the cluster profile has been deployed. 0 indicates that the profile has not been deployed on any switch, 1 indicates that the profile has been deployed on A, 2 indicates that it is deployed on B and 3 indicates that it is deployed on both.* None - Switch profiles not deployed on either of the fabric interconnects.* A - Switch profiles deployed only on fabric interconnect A.* B - Switch profiles deployed only on fabric interconnect B.* AB - Switch profiles deployed on both fabric interconnect A and B.
    description String
    Description of the profile.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    fabricSwitchClusterProfileId String
    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.
    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:
    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.
    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:
    switchProfiles List<Property Map>
    An array of relationships to fabricSwitchProfile resources. This complex property has following sub-properties:
    switchProfilesCount Number
    (ReadOnly) Number of switch profiles that are part of this cluster profile.
    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.
    userLabel String
    The user defined label assigned to the switch profile.
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

    Supporting Types

    FabricSwitchClusterProfileAncestor, FabricSwitchClusterProfileAncestorArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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'.

    FabricSwitchClusterProfileClusterAssignment, FabricSwitchClusterProfileClusterAssignmentArgs

    AdditionalProperties string
    ClassId string
    NetworkElements List<FabricSwitchClusterProfileClusterAssignmentNetworkElement>
    The network element that is to be assigned to the cloned switch profile. 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.
    SourceSwitchProfileOrTemplateName string
    Name of the source SwitchProfile or SwitchProfileTemplate whose clone has to be assigned to the network element mentioned in NetworkElement property under ClusterAssignments.
    AdditionalProperties string
    ClassId string
    NetworkElements []FabricSwitchClusterProfileClusterAssignmentNetworkElement
    The network element that is to be assigned to the cloned switch profile. 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.
    SourceSwitchProfileOrTemplateName string
    Name of the source SwitchProfile or SwitchProfileTemplate whose clone has to be assigned to the network element mentioned in NetworkElement property under ClusterAssignments.
    additionalProperties String
    classId String
    networkElements List<FabricSwitchClusterProfileClusterAssignmentNetworkElement>
    The network element that is to be assigned to the cloned switch profile. 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.
    sourceSwitchProfileOrTemplateName String
    Name of the source SwitchProfile or SwitchProfileTemplate whose clone has to be assigned to the network element mentioned in NetworkElement property under ClusterAssignments.
    additionalProperties string
    classId string
    networkElements FabricSwitchClusterProfileClusterAssignmentNetworkElement[]
    The network element that is to be assigned to the cloned switch profile. 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.
    sourceSwitchProfileOrTemplateName string
    Name of the source SwitchProfile or SwitchProfileTemplate whose clone has to be assigned to the network element mentioned in NetworkElement property under ClusterAssignments.
    additional_properties str
    class_id str
    network_elements Sequence[FabricSwitchClusterProfileClusterAssignmentNetworkElement]
    The network element that is to be assigned to the cloned switch profile. 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.
    source_switch_profile_or_template_name str
    Name of the source SwitchProfile or SwitchProfileTemplate whose clone has to be assigned to the network element mentioned in NetworkElement property under ClusterAssignments.
    additionalProperties String
    classId String
    networkElements List<Property Map>
    The network element that is to be assigned to the cloned switch profile. 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.
    sourceSwitchProfileOrTemplateName String
    Name of the source SwitchProfile or SwitchProfileTemplate whose clone has to be assigned to the network element mentioned in NetworkElement property under ClusterAssignments.

    FabricSwitchClusterProfileClusterAssignmentNetworkElement, FabricSwitchClusterProfileClusterAssignmentNetworkElementArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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'.

    FabricSwitchClusterProfileConfigContext, FabricSwitchClusterProfileConfigContextArgs

    AdditionalProperties string
    ClassId string
    ConfigState string
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
    ConfigStateSummary 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 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 string
    System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
    ErrorState 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 List<string>
    (Array of schema.TypeString) -
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    OperState 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 string
    ClassId string
    ConfigState string
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
    ConfigStateSummary 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 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 string
    System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
    ErrorState 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 []string
    (Array of schema.TypeString) -
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    OperState 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 String
    classId String
    configState String
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
    configStateSummary 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 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 String
    System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
    errorState 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 List<String>
    (Array of schema.TypeString) -
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    operState 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 string
    classId string
    configState string
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
    configStateSummary 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 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 string
    System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
    errorState 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 string[]
    (Array of schema.TypeString) -
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    operState 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 str
    class_id str
    config_state 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 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 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 str
    System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
    error_state 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 Sequence[str]
    (Array of schema.TypeString) -
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    oper_state 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 String
    classId String
    configState String
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
    configStateSummary 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 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 String
    System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
    errorState 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 List<String>
    (Array of schema.TypeString) -
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    operState 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.

    FabricSwitchClusterProfileOrganization, FabricSwitchClusterProfileOrganizationArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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'.

    FabricSwitchClusterProfileParent, FabricSwitchClusterProfileParentArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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'.

    FabricSwitchClusterProfilePermissionResource, FabricSwitchClusterProfilePermissionResourceArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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'.

    FabricSwitchClusterProfileSrcTemplate, FabricSwitchClusterProfileSrcTemplateArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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'.

    FabricSwitchClusterProfileSwitchProfile, FabricSwitchClusterProfileSwitchProfileArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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'.

    FabricSwitchClusterProfileTag, FabricSwitchClusterProfileTagArgs

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

    FabricSwitchClusterProfileVersionContext, FabricSwitchClusterProfileVersionContextArgs

    AdditionalProperties string
    ClassId string
    InterestedMos List<FabricSwitchClusterProfileVersionContextInterestedMo>
    This complex property has following sub-properties:
    MarkedForDeletion 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 string
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    RefMos List<FabricSwitchClusterProfileVersionContextRefMo>
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    Timestamp string
    (ReadOnly) The time this versioned Managed Object was created.
    VersionType 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 string
    ClassId string
    InterestedMos []FabricSwitchClusterProfileVersionContextInterestedMo
    This complex property has following sub-properties:
    MarkedForDeletion 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 string
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    RefMos []FabricSwitchClusterProfileVersionContextRefMo
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    Timestamp string
    (ReadOnly) The time this versioned Managed Object was created.
    VersionType 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 String
    classId String
    interestedMos List<FabricSwitchClusterProfileVersionContextInterestedMo>
    This complex property has following sub-properties:
    markedForDeletion 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 String
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    refMos List<FabricSwitchClusterProfileVersionContextRefMo>
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp String
    (ReadOnly) The time this versioned Managed Object was created.
    versionType 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 string
    classId string
    interestedMos FabricSwitchClusterProfileVersionContextInterestedMo[]
    This complex property has following sub-properties:
    markedForDeletion 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 string
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    refMos FabricSwitchClusterProfileVersionContextRefMo[]
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp string
    (ReadOnly) The time this versioned Managed Object was created.
    versionType 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 str
    class_id str
    interested_mos Sequence[FabricSwitchClusterProfileVersionContextInterestedMo]
    This complex property has following sub-properties:
    marked_for_deletion 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 str
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    ref_mos Sequence[FabricSwitchClusterProfileVersionContextRefMo]
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp str
    (ReadOnly) The time this versioned Managed Object was created.
    version_type 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 String
    classId String
    interestedMos List<Property Map>
    This complex property has following sub-properties:
    markedForDeletion 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 String
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    refMos List<Property Map>
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp String
    (ReadOnly) The time this versioned Managed Object was created.
    versionType 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.

    FabricSwitchClusterProfileVersionContextInterestedMo, FabricSwitchClusterProfileVersionContextInterestedMoArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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'.

    FabricSwitchClusterProfileVersionContextRefMo, FabricSwitchClusterProfileVersionContextRefMoArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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_fabric_switch_cluster_profile can be imported using the Moid of the object, e.g.

    $ pulumi import intersight:index/fabricSwitchClusterProfile:FabricSwitchClusterProfile example 1234567890987654321abcde
    

    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.
    intersight logo
    intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet