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

intersight.FabricSwitchProfile

Explore with Pulumi AI

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

    This specifies configuration policies for a managed network switch.

    Usage Example

    Resource Creation

    import * as pulumi from "@pulumi/pulumi";
    import * as intersight from "@pulumi/intersight";
    
    const fabricSwitchProfile1 = new intersight.FabricSwitchProfile("fabricSwitchProfile1", {
        description: "demo fabric switch profile",
        type: "instance",
        action: "No-op",
        switchClusterProfiles: [{
            moid: intersight_fabric_switch_cluster_profile.fabric_switch_cluster_profile1.moid,
            objectType: "fabric.SwitchClusterProfile",
        }],
    });
    
    import pulumi
    import pulumi_intersight as intersight
    
    fabric_switch_profile1 = intersight.FabricSwitchProfile("fabricSwitchProfile1",
        description="demo fabric switch profile",
        type="instance",
        action="No-op",
        switch_cluster_profiles=[{
            "moid": intersight_fabric_switch_cluster_profile["fabric_switch_cluster_profile1"]["moid"],
            "object_type": "fabric.SwitchClusterProfile",
        }])
    
    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.NewFabricSwitchProfile(ctx, "fabricSwitchProfile1", &intersight.FabricSwitchProfileArgs{
    			Description: pulumi.String("demo fabric switch profile"),
    			Type:        pulumi.String("instance"),
    			Action:      pulumi.String("No-op"),
    			SwitchClusterProfiles: intersight.FabricSwitchProfileSwitchClusterProfileArray{
    				&intersight.FabricSwitchProfileSwitchClusterProfileArgs{
    					Moid:       pulumi.Any(intersight_fabric_switch_cluster_profile.Fabric_switch_cluster_profile1.Moid),
    					ObjectType: pulumi.String("fabric.SwitchClusterProfile"),
    				},
    			},
    		})
    		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 fabricSwitchProfile1 = new Intersight.FabricSwitchProfile("fabricSwitchProfile1", new()
        {
            Description = "demo fabric switch profile",
            Type = "instance",
            Action = "No-op",
            SwitchClusterProfiles = new[]
            {
                new Intersight.Inputs.FabricSwitchProfileSwitchClusterProfileArgs
                {
                    Moid = intersight_fabric_switch_cluster_profile.Fabric_switch_cluster_profile1.Moid,
                    ObjectType = "fabric.SwitchClusterProfile",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.intersight.FabricSwitchProfile;
    import com.pulumi.intersight.FabricSwitchProfileArgs;
    import com.pulumi.intersight.inputs.FabricSwitchProfileSwitchClusterProfileArgs;
    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 fabricSwitchProfile1 = new FabricSwitchProfile("fabricSwitchProfile1", FabricSwitchProfileArgs.builder()
                .description("demo fabric switch profile")
                .type("instance")
                .action("No-op")
                .switchClusterProfiles(FabricSwitchProfileSwitchClusterProfileArgs.builder()
                    .moid(intersight_fabric_switch_cluster_profile.fabric_switch_cluster_profile1().moid())
                    .objectType("fabric.SwitchClusterProfile")
                    .build())
                .build());
    
        }
    }
    
    resources:
      fabricSwitchProfile1:
        type: intersight:FabricSwitchProfile
        properties:
          description: demo fabric switch profile
          type: instance
          action: No-op
          switchClusterProfiles:
            - moid: ${intersight_fabric_switch_cluster_profile.fabric_switch_cluster_profile1.moid}
              objectType: fabric.SwitchClusterProfile
    

    Create FabricSwitchProfile Resource

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

    Constructor syntax

    new FabricSwitchProfile(name: string, args?: FabricSwitchProfileArgs, opts?: CustomResourceOptions);
    @overload
    def FabricSwitchProfile(resource_name: str,
                            args: Optional[FabricSwitchProfileArgs] = None,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def FabricSwitchProfile(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            account_moid: Optional[str] = None,
                            action: Optional[str] = None,
                            action_params: Optional[Sequence[FabricSwitchProfileActionParamArgs]] = None,
                            additional_properties: Optional[str] = None,
                            ancestors: Optional[Sequence[FabricSwitchProfileAncestorArgs]] = None,
                            assigned_switches: Optional[Sequence[FabricSwitchProfileAssignedSwitchArgs]] = None,
                            associated_switches: Optional[Sequence[FabricSwitchProfileAssociatedSwitchArgs]] = None,
                            class_id: Optional[str] = None,
                            config_change_contexts: Optional[Sequence[FabricSwitchProfileConfigChangeContextArgs]] = None,
                            config_change_details: Optional[Sequence[FabricSwitchProfileConfigChangeDetailArgs]] = None,
                            config_changes: Optional[Sequence[FabricSwitchProfileConfigChangeArgs]] = None,
                            config_contexts: Optional[Sequence[FabricSwitchProfileConfigContextArgs]] = None,
                            config_results: Optional[Sequence[FabricSwitchProfileConfigResultArgs]] = None,
                            create_time: Optional[str] = None,
                            deployed_policies: Optional[Sequence[str]] = None,
                            description: Optional[str] = None,
                            domain_group_moid: Optional[str] = None,
                            fabric_switch_profile_id: Optional[str] = None,
                            mod_time: Optional[str] = None,
                            moid: Optional[str] = None,
                            name: Optional[str] = None,
                            object_type: Optional[str] = None,
                            owners: Optional[Sequence[str]] = None,
                            parents: Optional[Sequence[FabricSwitchProfileParentArgs]] = None,
                            permission_resources: Optional[Sequence[FabricSwitchProfilePermissionResourceArgs]] = None,
                            policy_buckets: Optional[Sequence[FabricSwitchProfilePolicyBucketArgs]] = None,
                            removed_policies: Optional[Sequence[str]] = None,
                            running_workflows: Optional[Sequence[FabricSwitchProfileRunningWorkflowArgs]] = None,
                            scheduled_actions: Optional[Sequence[FabricSwitchProfileScheduledActionArgs]] = None,
                            shared_scope: Optional[str] = None,
                            src_templates: Optional[Sequence[FabricSwitchProfileSrcTemplateArgs]] = None,
                            switch_cluster_profiles: Optional[Sequence[FabricSwitchProfileSwitchClusterProfileArgs]] = None,
                            switch_id: Optional[str] = None,
                            tags: Optional[Sequence[FabricSwitchProfileTagArgs]] = None,
                            type: Optional[str] = None,
                            version_contexts: Optional[Sequence[FabricSwitchProfileVersionContextArgs]] = None,
                            wait_for_completion: Optional[bool] = None)
    func NewFabricSwitchProfile(ctx *Context, name string, args *FabricSwitchProfileArgs, opts ...ResourceOption) (*FabricSwitchProfile, error)
    public FabricSwitchProfile(string name, FabricSwitchProfileArgs? args = null, CustomResourceOptions? opts = null)
    public FabricSwitchProfile(String name, FabricSwitchProfileArgs args)
    public FabricSwitchProfile(String name, FabricSwitchProfileArgs args, CustomResourceOptions options)
    
    type: intersight:FabricSwitchProfile
    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 FabricSwitchProfileArgs
    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 FabricSwitchProfileArgs
    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 FabricSwitchProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FabricSwitchProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FabricSwitchProfileArgs
    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 fabricSwitchProfileResource = new Intersight.FabricSwitchProfile("fabricSwitchProfileResource", new()
    {
        AccountMoid = "string",
        Action = "string",
        ActionParams = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileActionParamArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Name = "string",
                ObjectType = "string",
                Value = "string",
            },
        },
        AdditionalProperties = "string",
        Ancestors = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileAncestorArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        AssignedSwitches = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileAssignedSwitchArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        AssociatedSwitches = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileAssociatedSwitchArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ClassId = "string",
        ConfigChangeContexts = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileConfigChangeContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                ConfigChangeError = "string",
                ConfigChangeState = "string",
                InitialConfigContexts = new[]
                {
                    new Intersight.Inputs.FabricSwitchProfileConfigChangeContextInitialConfigContextArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        ConfigState = "string",
                        ConfigStateSummary = "string",
                        ConfigType = "string",
                        ControlAction = "string",
                        ErrorState = "string",
                        InconsistencyReasons = new[]
                        {
                            "string",
                        },
                        ObjectType = "string",
                        OperState = "string",
                    },
                },
                ObjectType = "string",
            },
        },
        ConfigChangeDetails = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileConfigChangeDetailArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ConfigChanges = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileConfigChangeArgs
            {
                AdditionalProperties = "string",
                Changes = new[]
                {
                    "string",
                },
                ClassId = "string",
                Disruptions = new[]
                {
                    "string",
                },
                ObjectType = "string",
                PolicyDisruptions = new[]
                {
                    new Intersight.Inputs.FabricSwitchProfileConfigChangePolicyDisruptionArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Disruptions = new[]
                        {
                            "string",
                        },
                        IsOnlyRequiredByOtherPolicies = false,
                        ObjectType = "string",
                        PolicyName = "string",
                        PolicyPendingAction = "string",
                        RequiredByPolicies = new[]
                        {
                            "string",
                        },
                    },
                },
            },
        },
        ConfigContexts = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileConfigContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                ConfigState = "string",
                ConfigStateSummary = "string",
                ConfigType = "string",
                ControlAction = "string",
                ErrorState = "string",
                InconsistencyReasons = new[]
                {
                    "string",
                },
                ObjectType = "string",
                OperState = "string",
            },
        },
        ConfigResults = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileConfigResultArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        CreateTime = "string",
        DeployedPolicies = new[]
        {
            "string",
        },
        Description = "string",
        DomainGroupMoid = "string",
        FabricSwitchProfileId = "string",
        ModTime = "string",
        Moid = "string",
        Name = "string",
        ObjectType = "string",
        Owners = new[]
        {
            "string",
        },
        Parents = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileParentArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PermissionResources = new[]
        {
            new Intersight.Inputs.FabricSwitchProfilePermissionResourceArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PolicyBuckets = new[]
        {
            new Intersight.Inputs.FabricSwitchProfilePolicyBucketArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        RemovedPolicies = new[]
        {
            "string",
        },
        RunningWorkflows = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileRunningWorkflowArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ScheduledActions = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileScheduledActionArgs
            {
                Action = "string",
                ActionQualifiers = new[]
                {
                    new Intersight.Inputs.FabricSwitchProfileScheduledActionActionQualifierArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        ObjectType = "string",
                    },
                },
                AdditionalProperties = "string",
                ClassId = "string",
                ObjectType = "string",
                ProceedOnReboot = false,
            },
        },
        SharedScope = "string",
        SrcTemplates = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileSrcTemplateArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        SwitchClusterProfiles = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileSwitchClusterProfileArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        SwitchId = "string",
        Tags = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileTagArgs
            {
                AdditionalProperties = "string",
                Key = "string",
                Value = "string",
            },
        },
        Type = "string",
        VersionContexts = new[]
        {
            new Intersight.Inputs.FabricSwitchProfileVersionContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                InterestedMos = new[]
                {
                    new Intersight.Inputs.FabricSwitchProfileVersionContextInterestedMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                MarkedForDeletion = false,
                NrVersion = "string",
                ObjectType = "string",
                RefMos = new[]
                {
                    new Intersight.Inputs.FabricSwitchProfileVersionContextRefMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                Timestamp = "string",
                VersionType = "string",
            },
        },
        WaitForCompletion = false,
    });
    
    example, err := intersight.NewFabricSwitchProfile(ctx, "fabricSwitchProfileResource", &intersight.FabricSwitchProfileArgs{
    	AccountMoid: pulumi.String("string"),
    	Action:      pulumi.String("string"),
    	ActionParams: intersight.FabricSwitchProfileActionParamArray{
    		&intersight.FabricSwitchProfileActionParamArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Name:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Value:                pulumi.String("string"),
    		},
    	},
    	AdditionalProperties: pulumi.String("string"),
    	Ancestors: intersight.FabricSwitchProfileAncestorArray{
    		&intersight.FabricSwitchProfileAncestorArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	AssignedSwitches: intersight.FabricSwitchProfileAssignedSwitchArray{
    		&intersight.FabricSwitchProfileAssignedSwitchArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	AssociatedSwitches: intersight.FabricSwitchProfileAssociatedSwitchArray{
    		&intersight.FabricSwitchProfileAssociatedSwitchArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ClassId: pulumi.String("string"),
    	ConfigChangeContexts: intersight.FabricSwitchProfileConfigChangeContextArray{
    		&intersight.FabricSwitchProfileConfigChangeContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			ConfigChangeError:    pulumi.String("string"),
    			ConfigChangeState:    pulumi.String("string"),
    			InitialConfigContexts: intersight.FabricSwitchProfileConfigChangeContextInitialConfigContextArray{
    				&intersight.FabricSwitchProfileConfigChangeContextInitialConfigContextArgs{
    					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"),
    				},
    			},
    			ObjectType: pulumi.String("string"),
    		},
    	},
    	ConfigChangeDetails: intersight.FabricSwitchProfileConfigChangeDetailArray{
    		&intersight.FabricSwitchProfileConfigChangeDetailArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ConfigChanges: intersight.FabricSwitchProfileConfigChangeArray{
    		&intersight.FabricSwitchProfileConfigChangeArgs{
    			AdditionalProperties: pulumi.String("string"),
    			Changes: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ClassId: pulumi.String("string"),
    			Disruptions: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ObjectType: pulumi.String("string"),
    			PolicyDisruptions: intersight.FabricSwitchProfileConfigChangePolicyDisruptionArray{
    				&intersight.FabricSwitchProfileConfigChangePolicyDisruptionArgs{
    					AdditionalProperties: pulumi.String("string"),
    					ClassId:              pulumi.String("string"),
    					Disruptions: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					IsOnlyRequiredByOtherPolicies: pulumi.Bool(false),
    					ObjectType:                    pulumi.String("string"),
    					PolicyName:                    pulumi.String("string"),
    					PolicyPendingAction:           pulumi.String("string"),
    					RequiredByPolicies: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    		},
    	},
    	ConfigContexts: intersight.FabricSwitchProfileConfigContextArray{
    		&intersight.FabricSwitchProfileConfigContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			ConfigState:          pulumi.String("string"),
    			ConfigStateSummary:   pulumi.String("string"),
    			ConfigType:           pulumi.String("string"),
    			ControlAction:        pulumi.String("string"),
    			ErrorState:           pulumi.String("string"),
    			InconsistencyReasons: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ObjectType: pulumi.String("string"),
    			OperState:  pulumi.String("string"),
    		},
    	},
    	ConfigResults: intersight.FabricSwitchProfileConfigResultArray{
    		&intersight.FabricSwitchProfileConfigResultArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	CreateTime: pulumi.String("string"),
    	DeployedPolicies: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Description:           pulumi.String("string"),
    	DomainGroupMoid:       pulumi.String("string"),
    	FabricSwitchProfileId: pulumi.String("string"),
    	ModTime:               pulumi.String("string"),
    	Moid:                  pulumi.String("string"),
    	Name:                  pulumi.String("string"),
    	ObjectType:            pulumi.String("string"),
    	Owners: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Parents: intersight.FabricSwitchProfileParentArray{
    		&intersight.FabricSwitchProfileParentArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PermissionResources: intersight.FabricSwitchProfilePermissionResourceArray{
    		&intersight.FabricSwitchProfilePermissionResourceArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PolicyBuckets: intersight.FabricSwitchProfilePolicyBucketArray{
    		&intersight.FabricSwitchProfilePolicyBucketArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	RemovedPolicies: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	RunningWorkflows: intersight.FabricSwitchProfileRunningWorkflowArray{
    		&intersight.FabricSwitchProfileRunningWorkflowArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ScheduledActions: intersight.FabricSwitchProfileScheduledActionArray{
    		&intersight.FabricSwitchProfileScheduledActionArgs{
    			Action: pulumi.String("string"),
    			ActionQualifiers: intersight.FabricSwitchProfileScheduledActionActionQualifierArray{
    				&intersight.FabricSwitchProfileScheduledActionActionQualifierArgs{
    					AdditionalProperties: pulumi.String("string"),
    					ClassId:              pulumi.String("string"),
    					ObjectType:           pulumi.String("string"),
    				},
    			},
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			ProceedOnReboot:      pulumi.Bool(false),
    		},
    	},
    	SharedScope: pulumi.String("string"),
    	SrcTemplates: intersight.FabricSwitchProfileSrcTemplateArray{
    		&intersight.FabricSwitchProfileSrcTemplateArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	SwitchClusterProfiles: intersight.FabricSwitchProfileSwitchClusterProfileArray{
    		&intersight.FabricSwitchProfileSwitchClusterProfileArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	SwitchId: pulumi.String("string"),
    	Tags: intersight.FabricSwitchProfileTagArray{
    		&intersight.FabricSwitchProfileTagArgs{
    			AdditionalProperties: pulumi.String("string"),
    			Key:                  pulumi.String("string"),
    			Value:                pulumi.String("string"),
    		},
    	},
    	Type: pulumi.String("string"),
    	VersionContexts: intersight.FabricSwitchProfileVersionContextArray{
    		&intersight.FabricSwitchProfileVersionContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			InterestedMos: intersight.FabricSwitchProfileVersionContextInterestedMoArray{
    				&intersight.FabricSwitchProfileVersionContextInterestedMoArgs{
    					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.FabricSwitchProfileVersionContextRefMoArray{
    				&intersight.FabricSwitchProfileVersionContextRefMoArgs{
    					AdditionalProperties: pulumi.String("string"),
    					ClassId:              pulumi.String("string"),
    					Moid:                 pulumi.String("string"),
    					ObjectType:           pulumi.String("string"),
    					Selector:             pulumi.String("string"),
    				},
    			},
    			Timestamp:   pulumi.String("string"),
    			VersionType: pulumi.String("string"),
    		},
    	},
    	WaitForCompletion: pulumi.Bool(false),
    })
    
    var fabricSwitchProfileResource = new FabricSwitchProfile("fabricSwitchProfileResource", FabricSwitchProfileArgs.builder()
        .accountMoid("string")
        .action("string")
        .actionParams(FabricSwitchProfileActionParamArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .name("string")
            .objectType("string")
            .value("string")
            .build())
        .additionalProperties("string")
        .ancestors(FabricSwitchProfileAncestorArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .assignedSwitches(FabricSwitchProfileAssignedSwitchArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .associatedSwitches(FabricSwitchProfileAssociatedSwitchArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .classId("string")
        .configChangeContexts(FabricSwitchProfileConfigChangeContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .configChangeError("string")
            .configChangeState("string")
            .initialConfigContexts(FabricSwitchProfileConfigChangeContextInitialConfigContextArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .configState("string")
                .configStateSummary("string")
                .configType("string")
                .controlAction("string")
                .errorState("string")
                .inconsistencyReasons("string")
                .objectType("string")
                .operState("string")
                .build())
            .objectType("string")
            .build())
        .configChangeDetails(FabricSwitchProfileConfigChangeDetailArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .configChanges(FabricSwitchProfileConfigChangeArgs.builder()
            .additionalProperties("string")
            .changes("string")
            .classId("string")
            .disruptions("string")
            .objectType("string")
            .policyDisruptions(FabricSwitchProfileConfigChangePolicyDisruptionArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .disruptions("string")
                .isOnlyRequiredByOtherPolicies(false)
                .objectType("string")
                .policyName("string")
                .policyPendingAction("string")
                .requiredByPolicies("string")
                .build())
            .build())
        .configContexts(FabricSwitchProfileConfigContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .configState("string")
            .configStateSummary("string")
            .configType("string")
            .controlAction("string")
            .errorState("string")
            .inconsistencyReasons("string")
            .objectType("string")
            .operState("string")
            .build())
        .configResults(FabricSwitchProfileConfigResultArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .createTime("string")
        .deployedPolicies("string")
        .description("string")
        .domainGroupMoid("string")
        .fabricSwitchProfileId("string")
        .modTime("string")
        .moid("string")
        .name("string")
        .objectType("string")
        .owners("string")
        .parents(FabricSwitchProfileParentArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .permissionResources(FabricSwitchProfilePermissionResourceArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .policyBuckets(FabricSwitchProfilePolicyBucketArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .removedPolicies("string")
        .runningWorkflows(FabricSwitchProfileRunningWorkflowArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .scheduledActions(FabricSwitchProfileScheduledActionArgs.builder()
            .action("string")
            .actionQualifiers(FabricSwitchProfileScheduledActionActionQualifierArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .objectType("string")
                .build())
            .additionalProperties("string")
            .classId("string")
            .objectType("string")
            .proceedOnReboot(false)
            .build())
        .sharedScope("string")
        .srcTemplates(FabricSwitchProfileSrcTemplateArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .switchClusterProfiles(FabricSwitchProfileSwitchClusterProfileArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .switchId("string")
        .tags(FabricSwitchProfileTagArgs.builder()
            .additionalProperties("string")
            .key("string")
            .value("string")
            .build())
        .type("string")
        .versionContexts(FabricSwitchProfileVersionContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .interestedMos(FabricSwitchProfileVersionContextInterestedMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .markedForDeletion(false)
            .nrVersion("string")
            .objectType("string")
            .refMos(FabricSwitchProfileVersionContextRefMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .timestamp("string")
            .versionType("string")
            .build())
        .waitForCompletion(false)
        .build());
    
    fabric_switch_profile_resource = intersight.FabricSwitchProfile("fabricSwitchProfileResource",
        account_moid="string",
        action="string",
        action_params=[{
            "additional_properties": "string",
            "class_id": "string",
            "name": "string",
            "object_type": "string",
            "value": "string",
        }],
        additional_properties="string",
        ancestors=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        assigned_switches=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        associated_switches=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        class_id="string",
        config_change_contexts=[{
            "additional_properties": "string",
            "class_id": "string",
            "config_change_error": "string",
            "config_change_state": "string",
            "initial_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",
            }],
            "object_type": "string",
        }],
        config_change_details=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        config_changes=[{
            "additional_properties": "string",
            "changes": ["string"],
            "class_id": "string",
            "disruptions": ["string"],
            "object_type": "string",
            "policy_disruptions": [{
                "additional_properties": "string",
                "class_id": "string",
                "disruptions": ["string"],
                "is_only_required_by_other_policies": False,
                "object_type": "string",
                "policy_name": "string",
                "policy_pending_action": "string",
                "required_by_policies": ["string"],
            }],
        }],
        config_contexts=[{
            "additional_properties": "string",
            "class_id": "string",
            "config_state": "string",
            "config_state_summary": "string",
            "config_type": "string",
            "control_action": "string",
            "error_state": "string",
            "inconsistency_reasons": ["string"],
            "object_type": "string",
            "oper_state": "string",
        }],
        config_results=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        create_time="string",
        deployed_policies=["string"],
        description="string",
        domain_group_moid="string",
        fabric_switch_profile_id="string",
        mod_time="string",
        moid="string",
        name="string",
        object_type="string",
        owners=["string"],
        parents=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        permission_resources=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        policy_buckets=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        removed_policies=["string"],
        running_workflows=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        scheduled_actions=[{
            "action": "string",
            "action_qualifiers": [{
                "additional_properties": "string",
                "class_id": "string",
                "object_type": "string",
            }],
            "additional_properties": "string",
            "class_id": "string",
            "object_type": "string",
            "proceed_on_reboot": False,
        }],
        shared_scope="string",
        src_templates=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        switch_cluster_profiles=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        switch_id="string",
        tags=[{
            "additional_properties": "string",
            "key": "string",
            "value": "string",
        }],
        type="string",
        version_contexts=[{
            "additional_properties": "string",
            "class_id": "string",
            "interested_mos": [{
                "additional_properties": "string",
                "class_id": "string",
                "moid": "string",
                "object_type": "string",
                "selector": "string",
            }],
            "marked_for_deletion": False,
            "nr_version": "string",
            "object_type": "string",
            "ref_mos": [{
                "additional_properties": "string",
                "class_id": "string",
                "moid": "string",
                "object_type": "string",
                "selector": "string",
            }],
            "timestamp": "string",
            "version_type": "string",
        }],
        wait_for_completion=False)
    
    const fabricSwitchProfileResource = new intersight.FabricSwitchProfile("fabricSwitchProfileResource", {
        accountMoid: "string",
        action: "string",
        actionParams: [{
            additionalProperties: "string",
            classId: "string",
            name: "string",
            objectType: "string",
            value: "string",
        }],
        additionalProperties: "string",
        ancestors: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        assignedSwitches: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        associatedSwitches: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        classId: "string",
        configChangeContexts: [{
            additionalProperties: "string",
            classId: "string",
            configChangeError: "string",
            configChangeState: "string",
            initialConfigContexts: [{
                additionalProperties: "string",
                classId: "string",
                configState: "string",
                configStateSummary: "string",
                configType: "string",
                controlAction: "string",
                errorState: "string",
                inconsistencyReasons: ["string"],
                objectType: "string",
                operState: "string",
            }],
            objectType: "string",
        }],
        configChangeDetails: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        configChanges: [{
            additionalProperties: "string",
            changes: ["string"],
            classId: "string",
            disruptions: ["string"],
            objectType: "string",
            policyDisruptions: [{
                additionalProperties: "string",
                classId: "string",
                disruptions: ["string"],
                isOnlyRequiredByOtherPolicies: false,
                objectType: "string",
                policyName: "string",
                policyPendingAction: "string",
                requiredByPolicies: ["string"],
            }],
        }],
        configContexts: [{
            additionalProperties: "string",
            classId: "string",
            configState: "string",
            configStateSummary: "string",
            configType: "string",
            controlAction: "string",
            errorState: "string",
            inconsistencyReasons: ["string"],
            objectType: "string",
            operState: "string",
        }],
        configResults: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        createTime: "string",
        deployedPolicies: ["string"],
        description: "string",
        domainGroupMoid: "string",
        fabricSwitchProfileId: "string",
        modTime: "string",
        moid: "string",
        name: "string",
        objectType: "string",
        owners: ["string"],
        parents: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        permissionResources: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        policyBuckets: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        removedPolicies: ["string"],
        runningWorkflows: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        scheduledActions: [{
            action: "string",
            actionQualifiers: [{
                additionalProperties: "string",
                classId: "string",
                objectType: "string",
            }],
            additionalProperties: "string",
            classId: "string",
            objectType: "string",
            proceedOnReboot: false,
        }],
        sharedScope: "string",
        srcTemplates: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        switchClusterProfiles: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        switchId: "string",
        tags: [{
            additionalProperties: "string",
            key: "string",
            value: "string",
        }],
        type: "string",
        versionContexts: [{
            additionalProperties: "string",
            classId: "string",
            interestedMos: [{
                additionalProperties: "string",
                classId: "string",
                moid: "string",
                objectType: "string",
                selector: "string",
            }],
            markedForDeletion: false,
            nrVersion: "string",
            objectType: "string",
            refMos: [{
                additionalProperties: "string",
                classId: "string",
                moid: "string",
                objectType: "string",
                selector: "string",
            }],
            timestamp: "string",
            versionType: "string",
        }],
        waitForCompletion: false,
    });
    
    type: intersight:FabricSwitchProfile
    properties:
        accountMoid: string
        action: string
        actionParams:
            - additionalProperties: string
              classId: string
              name: string
              objectType: string
              value: string
        additionalProperties: string
        ancestors:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        assignedSwitches:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        associatedSwitches:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        classId: string
        configChangeContexts:
            - additionalProperties: string
              classId: string
              configChangeError: string
              configChangeState: string
              initialConfigContexts:
                - additionalProperties: string
                  classId: string
                  configState: string
                  configStateSummary: string
                  configType: string
                  controlAction: string
                  errorState: string
                  inconsistencyReasons:
                    - string
                  objectType: string
                  operState: string
              objectType: string
        configChangeDetails:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        configChanges:
            - additionalProperties: string
              changes:
                - string
              classId: string
              disruptions:
                - string
              objectType: string
              policyDisruptions:
                - additionalProperties: string
                  classId: string
                  disruptions:
                    - string
                  isOnlyRequiredByOtherPolicies: false
                  objectType: string
                  policyName: string
                  policyPendingAction: string
                  requiredByPolicies:
                    - string
        configContexts:
            - additionalProperties: string
              classId: string
              configState: string
              configStateSummary: string
              configType: string
              controlAction: string
              errorState: string
              inconsistencyReasons:
                - string
              objectType: string
              operState: string
        configResults:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        createTime: string
        deployedPolicies:
            - string
        description: string
        domainGroupMoid: string
        fabricSwitchProfileId: string
        modTime: string
        moid: string
        name: string
        objectType: string
        owners:
            - string
        parents:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        permissionResources:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        policyBuckets:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        removedPolicies:
            - string
        runningWorkflows:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        scheduledActions:
            - action: string
              actionQualifiers:
                - additionalProperties: string
                  classId: string
                  objectType: string
              additionalProperties: string
              classId: string
              objectType: string
              proceedOnReboot: false
        sharedScope: string
        srcTemplates:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        switchClusterProfiles:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        switchId: string
        tags:
            - additionalProperties: string
              key: string
              value: string
        type: string
        versionContexts:
            - additionalProperties: string
              classId: string
              interestedMos:
                - additionalProperties: string
                  classId: string
                  moid: string
                  objectType: string
                  selector: string
              markedForDeletion: false
              nrVersion: string
              objectType: string
              refMos:
                - additionalProperties: string
                  classId: string
                  moid: string
                  objectType: string
                  selector: string
              timestamp: string
              versionType: string
        waitForCompletion: false
    

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

    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    Action string
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    ActionParams List<FabricSwitchProfileActionParam>
    This complex property has following sub-properties:
    AdditionalProperties string
    Ancestors List<FabricSwitchProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AssignedSwitches List<FabricSwitchProfileAssignedSwitch>
    A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    AssociatedSwitches List<FabricSwitchProfileAssociatedSwitch>
    (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    ConfigChangeContexts List<FabricSwitchProfileConfigChangeContext>
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    ConfigChangeDetails List<FabricSwitchProfileConfigChangeDetail>
    (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
    ConfigChanges List<FabricSwitchProfileConfigChange>
    (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    ConfigContexts List<FabricSwitchProfileConfigContext>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    ConfigResults List<FabricSwitchProfileConfigResult>
    (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DeployedPolicies List<string>
    (Array of schema.TypeString) -
    Description string
    Description of the profile.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FabricSwitchProfileId 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.
    Owners List<string>
    (Array of schema.TypeString) -(ReadOnly)
    Parents List<FabricSwitchProfileParent>
    (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<FabricSwitchProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PolicyBuckets List<FabricSwitchProfilePolicyBucket>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    RemovedPolicies List<string>
    (Array of schema.TypeString) -
    RunningWorkflows List<FabricSwitchProfileRunningWorkflow>
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    ScheduledActions List<FabricSwitchProfileScheduledAction>
    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<FabricSwitchProfileSrcTemplate>
    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:
    SwitchClusterProfiles List<FabricSwitchProfileSwitchClusterProfile>
    A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    SwitchId string
    Value indicating the switch side on which the switch profile or template has to be deployed.* None - Switch side not defined for the policy configurations in the switch profile or template.* A - Policy configurations in the switch profile or template to be deployed on fabric interconnect A.* B - Policy configurations in the switch profile or template to be deployed on fabric interconnect B.
    Tags List<FabricSwitchProfileTag>
    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.
    VersionContexts List<FabricSwitchProfileVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    WaitForCompletion bool
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    Action string
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    ActionParams []FabricSwitchProfileActionParamArgs
    This complex property has following sub-properties:
    AdditionalProperties string
    Ancestors []FabricSwitchProfileAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AssignedSwitches []FabricSwitchProfileAssignedSwitchArgs
    A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    AssociatedSwitches []FabricSwitchProfileAssociatedSwitchArgs
    (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    ConfigChangeContexts []FabricSwitchProfileConfigChangeContextArgs
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    ConfigChangeDetails []FabricSwitchProfileConfigChangeDetailArgs
    (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
    ConfigChanges []FabricSwitchProfileConfigChangeArgs
    (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    ConfigContexts []FabricSwitchProfileConfigContextArgs
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    ConfigResults []FabricSwitchProfileConfigResultArgs
    (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DeployedPolicies []string
    (Array of schema.TypeString) -
    Description string
    Description of the profile.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FabricSwitchProfileId 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.
    Owners []string
    (Array of schema.TypeString) -(ReadOnly)
    Parents []FabricSwitchProfileParentArgs
    (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 []FabricSwitchProfilePermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PolicyBuckets []FabricSwitchProfilePolicyBucketArgs
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    RemovedPolicies []string
    (Array of schema.TypeString) -
    RunningWorkflows []FabricSwitchProfileRunningWorkflowArgs
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    ScheduledActions []FabricSwitchProfileScheduledActionArgs
    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 []FabricSwitchProfileSrcTemplateArgs
    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:
    SwitchClusterProfiles []FabricSwitchProfileSwitchClusterProfileArgs
    A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    SwitchId string
    Value indicating the switch side on which the switch profile or template has to be deployed.* None - Switch side not defined for the policy configurations in the switch profile or template.* A - Policy configurations in the switch profile or template to be deployed on fabric interconnect A.* B - Policy configurations in the switch profile or template to be deployed on fabric interconnect B.
    Tags []FabricSwitchProfileTagArgs
    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.
    VersionContexts []FabricSwitchProfileVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    WaitForCompletion bool
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    action String
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    actionParams List<FabricSwitchProfileActionParam>
    This complex property has following sub-properties:
    additionalProperties String
    ancestors List<FabricSwitchProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    assignedSwitches List<FabricSwitchProfileAssignedSwitch>
    A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associatedSwitches List<FabricSwitchProfileAssociatedSwitch>
    (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    configChangeContexts List<FabricSwitchProfileConfigChangeContext>
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    configChangeDetails List<FabricSwitchProfileConfigChangeDetail>
    (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
    configChanges List<FabricSwitchProfileConfigChange>
    (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    configContexts List<FabricSwitchProfileConfigContext>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    configResults List<FabricSwitchProfileConfigResult>
    (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    createTime String
    (ReadOnly) The time when this managed object was created.
    deployedPolicies List<String>
    (Array of schema.TypeString) -
    description String
    Description of the profile.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    fabricSwitchProfileId 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.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<FabricSwitchProfileParent>
    (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<FabricSwitchProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policyBuckets List<FabricSwitchProfilePolicyBucket>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies List<String>
    (Array of schema.TypeString) -
    runningWorkflows List<FabricSwitchProfileRunningWorkflow>
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    scheduledActions List<FabricSwitchProfileScheduledAction>
    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<FabricSwitchProfileSrcTemplate>
    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:
    switchClusterProfiles List<FabricSwitchProfileSwitchClusterProfile>
    A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    switchId String
    Value indicating the switch side on which the switch profile or template has to be deployed.* None - Switch side not defined for the policy configurations in the switch profile or template.* A - Policy configurations in the switch profile or template to be deployed on fabric interconnect A.* B - Policy configurations in the switch profile or template to be deployed on fabric interconnect B.
    tags List<FabricSwitchProfileTag>
    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.
    versionContexts List<FabricSwitchProfileVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    waitForCompletion Boolean
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    action string
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    actionParams FabricSwitchProfileActionParam[]
    This complex property has following sub-properties:
    additionalProperties string
    ancestors FabricSwitchProfileAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    assignedSwitches FabricSwitchProfileAssignedSwitch[]
    A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associatedSwitches FabricSwitchProfileAssociatedSwitch[]
    (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    classId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    configChangeContexts FabricSwitchProfileConfigChangeContext[]
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    configChangeDetails FabricSwitchProfileConfigChangeDetail[]
    (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
    configChanges FabricSwitchProfileConfigChange[]
    (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    configContexts FabricSwitchProfileConfigContext[]
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    configResults FabricSwitchProfileConfigResult[]
    (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    createTime string
    (ReadOnly) The time when this managed object was created.
    deployedPolicies string[]
    (Array of schema.TypeString) -
    description string
    Description of the profile.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    fabricSwitchProfileId 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.
    owners string[]
    (Array of schema.TypeString) -(ReadOnly)
    parents FabricSwitchProfileParent[]
    (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 FabricSwitchProfilePermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policyBuckets FabricSwitchProfilePolicyBucket[]
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies string[]
    (Array of schema.TypeString) -
    runningWorkflows FabricSwitchProfileRunningWorkflow[]
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    scheduledActions FabricSwitchProfileScheduledAction[]
    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 FabricSwitchProfileSrcTemplate[]
    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:
    switchClusterProfiles FabricSwitchProfileSwitchClusterProfile[]
    A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    switchId string
    Value indicating the switch side on which the switch profile or template has to be deployed.* None - Switch side not defined for the policy configurations in the switch profile or template.* A - Policy configurations in the switch profile or template to be deployed on fabric interconnect A.* B - Policy configurations in the switch profile or template to be deployed on fabric interconnect B.
    tags FabricSwitchProfileTag[]
    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.
    versionContexts FabricSwitchProfileVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    waitForCompletion boolean
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    action str
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    action_params Sequence[FabricSwitchProfileActionParamArgs]
    This complex property has following sub-properties:
    additional_properties str
    ancestors Sequence[FabricSwitchProfileAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    assigned_switches Sequence[FabricSwitchProfileAssignedSwitchArgs]
    A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associated_switches Sequence[FabricSwitchProfileAssociatedSwitchArgs]
    (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    class_id str
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    config_change_contexts Sequence[FabricSwitchProfileConfigChangeContextArgs]
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    config_change_details Sequence[FabricSwitchProfileConfigChangeDetailArgs]
    (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
    config_changes Sequence[FabricSwitchProfileConfigChangeArgs]
    (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    config_contexts Sequence[FabricSwitchProfileConfigContextArgs]
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    config_results Sequence[FabricSwitchProfileConfigResultArgs]
    (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    create_time str
    (ReadOnly) The time when this managed object was created.
    deployed_policies Sequence[str]
    (Array of schema.TypeString) -
    description str
    Description of the profile.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    fabric_switch_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.
    owners Sequence[str]
    (Array of schema.TypeString) -(ReadOnly)
    parents Sequence[FabricSwitchProfileParentArgs]
    (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[FabricSwitchProfilePermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policy_buckets Sequence[FabricSwitchProfilePolicyBucketArgs]
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removed_policies Sequence[str]
    (Array of schema.TypeString) -
    running_workflows Sequence[FabricSwitchProfileRunningWorkflowArgs]
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    scheduled_actions Sequence[FabricSwitchProfileScheduledActionArgs]
    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[FabricSwitchProfileSrcTemplateArgs]
    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_cluster_profiles Sequence[FabricSwitchProfileSwitchClusterProfileArgs]
    A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    switch_id str
    Value indicating the switch side on which the switch profile or template has to be deployed.* None - Switch side not defined for the policy configurations in the switch profile or template.* A - Policy configurations in the switch profile or template to be deployed on fabric interconnect A.* B - Policy configurations in the switch profile or template to be deployed on fabric interconnect B.
    tags Sequence[FabricSwitchProfileTagArgs]
    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.
    version_contexts Sequence[FabricSwitchProfileVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    wait_for_completion bool
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    action String
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    actionParams List<Property Map>
    This complex property has following sub-properties:
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    assignedSwitches List<Property Map>
    A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associatedSwitches List<Property Map>
    (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    configChangeContexts List<Property Map>
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    configChangeDetails List<Property Map>
    (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
    configChanges List<Property Map>
    (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    configContexts List<Property Map>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    configResults List<Property Map>
    (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    createTime String
    (ReadOnly) The time when this managed object was created.
    deployedPolicies List<String>
    (Array of schema.TypeString) -
    description String
    Description of the profile.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    fabricSwitchProfileId 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.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<Property Map>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policyBuckets List<Property Map>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies List<String>
    (Array of schema.TypeString) -
    runningWorkflows List<Property Map>
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    scheduledActions List<Property Map>
    This complex property has following sub-properties:
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    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:
    switchClusterProfiles List<Property Map>
    A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    switchId String
    Value indicating the switch side on which the switch profile or template has to be deployed.* None - Switch side not defined for the policy configurations in the switch profile or template.* A - Policy configurations in the switch profile or template to be deployed on fabric interconnect A.* B - Policy configurations in the switch profile or template to be deployed on fabric interconnect B.
    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.
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    waitForCompletion Boolean
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.

    Outputs

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

    Get an existing FabricSwitchProfile 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?: FabricSwitchProfileState, opts?: CustomResourceOptions): FabricSwitchProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_moid: Optional[str] = None,
            action: Optional[str] = None,
            action_params: Optional[Sequence[FabricSwitchProfileActionParamArgs]] = None,
            additional_properties: Optional[str] = None,
            ancestors: Optional[Sequence[FabricSwitchProfileAncestorArgs]] = None,
            assigned_switches: Optional[Sequence[FabricSwitchProfileAssignedSwitchArgs]] = None,
            associated_switches: Optional[Sequence[FabricSwitchProfileAssociatedSwitchArgs]] = None,
            class_id: Optional[str] = None,
            config_change_contexts: Optional[Sequence[FabricSwitchProfileConfigChangeContextArgs]] = None,
            config_change_details: Optional[Sequence[FabricSwitchProfileConfigChangeDetailArgs]] = None,
            config_changes: Optional[Sequence[FabricSwitchProfileConfigChangeArgs]] = None,
            config_contexts: Optional[Sequence[FabricSwitchProfileConfigContextArgs]] = None,
            config_results: Optional[Sequence[FabricSwitchProfileConfigResultArgs]] = None,
            create_time: Optional[str] = None,
            deployed_policies: Optional[Sequence[str]] = None,
            description: Optional[str] = None,
            domain_group_moid: Optional[str] = None,
            fabric_switch_profile_id: Optional[str] = None,
            mod_time: Optional[str] = None,
            moid: Optional[str] = None,
            name: Optional[str] = None,
            object_type: Optional[str] = None,
            owners: Optional[Sequence[str]] = None,
            parents: Optional[Sequence[FabricSwitchProfileParentArgs]] = None,
            permission_resources: Optional[Sequence[FabricSwitchProfilePermissionResourceArgs]] = None,
            policy_buckets: Optional[Sequence[FabricSwitchProfilePolicyBucketArgs]] = None,
            removed_policies: Optional[Sequence[str]] = None,
            running_workflows: Optional[Sequence[FabricSwitchProfileRunningWorkflowArgs]] = None,
            scheduled_actions: Optional[Sequence[FabricSwitchProfileScheduledActionArgs]] = None,
            shared_scope: Optional[str] = None,
            src_templates: Optional[Sequence[FabricSwitchProfileSrcTemplateArgs]] = None,
            switch_cluster_profiles: Optional[Sequence[FabricSwitchProfileSwitchClusterProfileArgs]] = None,
            switch_id: Optional[str] = None,
            tags: Optional[Sequence[FabricSwitchProfileTagArgs]] = None,
            type: Optional[str] = None,
            version_contexts: Optional[Sequence[FabricSwitchProfileVersionContextArgs]] = None,
            wait_for_completion: Optional[bool] = None) -> FabricSwitchProfile
    func GetFabricSwitchProfile(ctx *Context, name string, id IDInput, state *FabricSwitchProfileState, opts ...ResourceOption) (*FabricSwitchProfile, error)
    public static FabricSwitchProfile Get(string name, Input<string> id, FabricSwitchProfileState? state, CustomResourceOptions? opts = null)
    public static FabricSwitchProfile get(String name, Output<String> id, FabricSwitchProfileState state, CustomResourceOptions options)
    resources:  _:    type: intersight:FabricSwitchProfile    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.
    Action string
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    ActionParams List<FabricSwitchProfileActionParam>
    This complex property has following sub-properties:
    AdditionalProperties string
    Ancestors List<FabricSwitchProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AssignedSwitches List<FabricSwitchProfileAssignedSwitch>
    A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    AssociatedSwitches List<FabricSwitchProfileAssociatedSwitch>
    (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    ConfigChangeContexts List<FabricSwitchProfileConfigChangeContext>
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    ConfigChangeDetails List<FabricSwitchProfileConfigChangeDetail>
    (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
    ConfigChanges List<FabricSwitchProfileConfigChange>
    (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    ConfigContexts List<FabricSwitchProfileConfigContext>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    ConfigResults List<FabricSwitchProfileConfigResult>
    (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DeployedPolicies List<string>
    (Array of schema.TypeString) -
    Description string
    Description of the profile.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FabricSwitchProfileId 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.
    Owners List<string>
    (Array of schema.TypeString) -(ReadOnly)
    Parents List<FabricSwitchProfileParent>
    (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<FabricSwitchProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PolicyBuckets List<FabricSwitchProfilePolicyBucket>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    RemovedPolicies List<string>
    (Array of schema.TypeString) -
    RunningWorkflows List<FabricSwitchProfileRunningWorkflow>
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    ScheduledActions List<FabricSwitchProfileScheduledAction>
    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<FabricSwitchProfileSrcTemplate>
    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:
    SwitchClusterProfiles List<FabricSwitchProfileSwitchClusterProfile>
    A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    SwitchId string
    Value indicating the switch side on which the switch profile or template has to be deployed.* None - Switch side not defined for the policy configurations in the switch profile or template.* A - Policy configurations in the switch profile or template to be deployed on fabric interconnect A.* B - Policy configurations in the switch profile or template to be deployed on fabric interconnect B.
    Tags List<FabricSwitchProfileTag>
    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.
    VersionContexts List<FabricSwitchProfileVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    WaitForCompletion bool
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    Action string
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    ActionParams []FabricSwitchProfileActionParamArgs
    This complex property has following sub-properties:
    AdditionalProperties string
    Ancestors []FabricSwitchProfileAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AssignedSwitches []FabricSwitchProfileAssignedSwitchArgs
    A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    AssociatedSwitches []FabricSwitchProfileAssociatedSwitchArgs
    (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    ConfigChangeContexts []FabricSwitchProfileConfigChangeContextArgs
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    ConfigChangeDetails []FabricSwitchProfileConfigChangeDetailArgs
    (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
    ConfigChanges []FabricSwitchProfileConfigChangeArgs
    (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    ConfigContexts []FabricSwitchProfileConfigContextArgs
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    ConfigResults []FabricSwitchProfileConfigResultArgs
    (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DeployedPolicies []string
    (Array of schema.TypeString) -
    Description string
    Description of the profile.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FabricSwitchProfileId 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.
    Owners []string
    (Array of schema.TypeString) -(ReadOnly)
    Parents []FabricSwitchProfileParentArgs
    (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 []FabricSwitchProfilePermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PolicyBuckets []FabricSwitchProfilePolicyBucketArgs
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    RemovedPolicies []string
    (Array of schema.TypeString) -
    RunningWorkflows []FabricSwitchProfileRunningWorkflowArgs
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    ScheduledActions []FabricSwitchProfileScheduledActionArgs
    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 []FabricSwitchProfileSrcTemplateArgs
    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:
    SwitchClusterProfiles []FabricSwitchProfileSwitchClusterProfileArgs
    A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    SwitchId string
    Value indicating the switch side on which the switch profile or template has to be deployed.* None - Switch side not defined for the policy configurations in the switch profile or template.* A - Policy configurations in the switch profile or template to be deployed on fabric interconnect A.* B - Policy configurations in the switch profile or template to be deployed on fabric interconnect B.
    Tags []FabricSwitchProfileTagArgs
    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.
    VersionContexts []FabricSwitchProfileVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    WaitForCompletion bool
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    action String
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    actionParams List<FabricSwitchProfileActionParam>
    This complex property has following sub-properties:
    additionalProperties String
    ancestors List<FabricSwitchProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    assignedSwitches List<FabricSwitchProfileAssignedSwitch>
    A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associatedSwitches List<FabricSwitchProfileAssociatedSwitch>
    (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    configChangeContexts List<FabricSwitchProfileConfigChangeContext>
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    configChangeDetails List<FabricSwitchProfileConfigChangeDetail>
    (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
    configChanges List<FabricSwitchProfileConfigChange>
    (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    configContexts List<FabricSwitchProfileConfigContext>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    configResults List<FabricSwitchProfileConfigResult>
    (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    createTime String
    (ReadOnly) The time when this managed object was created.
    deployedPolicies List<String>
    (Array of schema.TypeString) -
    description String
    Description of the profile.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    fabricSwitchProfileId 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.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<FabricSwitchProfileParent>
    (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<FabricSwitchProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policyBuckets List<FabricSwitchProfilePolicyBucket>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies List<String>
    (Array of schema.TypeString) -
    runningWorkflows List<FabricSwitchProfileRunningWorkflow>
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    scheduledActions List<FabricSwitchProfileScheduledAction>
    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<FabricSwitchProfileSrcTemplate>
    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:
    switchClusterProfiles List<FabricSwitchProfileSwitchClusterProfile>
    A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    switchId String
    Value indicating the switch side on which the switch profile or template has to be deployed.* None - Switch side not defined for the policy configurations in the switch profile or template.* A - Policy configurations in the switch profile or template to be deployed on fabric interconnect A.* B - Policy configurations in the switch profile or template to be deployed on fabric interconnect B.
    tags List<FabricSwitchProfileTag>
    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.
    versionContexts List<FabricSwitchProfileVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    waitForCompletion Boolean
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    action string
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    actionParams FabricSwitchProfileActionParam[]
    This complex property has following sub-properties:
    additionalProperties string
    ancestors FabricSwitchProfileAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    assignedSwitches FabricSwitchProfileAssignedSwitch[]
    A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associatedSwitches FabricSwitchProfileAssociatedSwitch[]
    (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    classId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    configChangeContexts FabricSwitchProfileConfigChangeContext[]
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    configChangeDetails FabricSwitchProfileConfigChangeDetail[]
    (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
    configChanges FabricSwitchProfileConfigChange[]
    (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    configContexts FabricSwitchProfileConfigContext[]
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    configResults FabricSwitchProfileConfigResult[]
    (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    createTime string
    (ReadOnly) The time when this managed object was created.
    deployedPolicies string[]
    (Array of schema.TypeString) -
    description string
    Description of the profile.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    fabricSwitchProfileId 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.
    owners string[]
    (Array of schema.TypeString) -(ReadOnly)
    parents FabricSwitchProfileParent[]
    (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 FabricSwitchProfilePermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policyBuckets FabricSwitchProfilePolicyBucket[]
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies string[]
    (Array of schema.TypeString) -
    runningWorkflows FabricSwitchProfileRunningWorkflow[]
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    scheduledActions FabricSwitchProfileScheduledAction[]
    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 FabricSwitchProfileSrcTemplate[]
    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:
    switchClusterProfiles FabricSwitchProfileSwitchClusterProfile[]
    A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    switchId string
    Value indicating the switch side on which the switch profile or template has to be deployed.* None - Switch side not defined for the policy configurations in the switch profile or template.* A - Policy configurations in the switch profile or template to be deployed on fabric interconnect A.* B - Policy configurations in the switch profile or template to be deployed on fabric interconnect B.
    tags FabricSwitchProfileTag[]
    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.
    versionContexts FabricSwitchProfileVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    waitForCompletion boolean
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    action str
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    action_params Sequence[FabricSwitchProfileActionParamArgs]
    This complex property has following sub-properties:
    additional_properties str
    ancestors Sequence[FabricSwitchProfileAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    assigned_switches Sequence[FabricSwitchProfileAssignedSwitchArgs]
    A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associated_switches Sequence[FabricSwitchProfileAssociatedSwitchArgs]
    (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    class_id str
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    config_change_contexts Sequence[FabricSwitchProfileConfigChangeContextArgs]
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    config_change_details Sequence[FabricSwitchProfileConfigChangeDetailArgs]
    (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
    config_changes Sequence[FabricSwitchProfileConfigChangeArgs]
    (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    config_contexts Sequence[FabricSwitchProfileConfigContextArgs]
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    config_results Sequence[FabricSwitchProfileConfigResultArgs]
    (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    create_time str
    (ReadOnly) The time when this managed object was created.
    deployed_policies Sequence[str]
    (Array of schema.TypeString) -
    description str
    Description of the profile.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    fabric_switch_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.
    owners Sequence[str]
    (Array of schema.TypeString) -(ReadOnly)
    parents Sequence[FabricSwitchProfileParentArgs]
    (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[FabricSwitchProfilePermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policy_buckets Sequence[FabricSwitchProfilePolicyBucketArgs]
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removed_policies Sequence[str]
    (Array of schema.TypeString) -
    running_workflows Sequence[FabricSwitchProfileRunningWorkflowArgs]
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    scheduled_actions Sequence[FabricSwitchProfileScheduledActionArgs]
    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[FabricSwitchProfileSrcTemplateArgs]
    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_cluster_profiles Sequence[FabricSwitchProfileSwitchClusterProfileArgs]
    A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    switch_id str
    Value indicating the switch side on which the switch profile or template has to be deployed.* None - Switch side not defined for the policy configurations in the switch profile or template.* A - Policy configurations in the switch profile or template to be deployed on fabric interconnect A.* B - Policy configurations in the switch profile or template to be deployed on fabric interconnect B.
    tags Sequence[FabricSwitchProfileTagArgs]
    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.
    version_contexts Sequence[FabricSwitchProfileVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    wait_for_completion bool
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    action String
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    actionParams List<Property Map>
    This complex property has following sub-properties:
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    assignedSwitches List<Property Map>
    A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associatedSwitches List<Property Map>
    (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    configChangeContexts List<Property Map>
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    configChangeDetails List<Property Map>
    (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
    configChanges List<Property Map>
    (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    configContexts List<Property Map>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    configResults List<Property Map>
    (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    createTime String
    (ReadOnly) The time when this managed object was created.
    deployedPolicies List<String>
    (Array of schema.TypeString) -
    description String
    Description of the profile.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    fabricSwitchProfileId 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.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<Property Map>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policyBuckets List<Property Map>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies List<String>
    (Array of schema.TypeString) -
    runningWorkflows List<Property Map>
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    scheduledActions List<Property Map>
    This complex property has following sub-properties:
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    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:
    switchClusterProfiles List<Property Map>
    A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    switchId String
    Value indicating the switch side on which the switch profile or template has to be deployed.* None - Switch side not defined for the policy configurations in the switch profile or template.* A - Policy configurations in the switch profile or template to be deployed on fabric interconnect A.* B - Policy configurations in the switch profile or template to be deployed on fabric interconnect B.
    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.
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    waitForCompletion Boolean
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.

    Supporting Types

    FabricSwitchProfileActionParam, FabricSwitchProfileActionParamArgs

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

    FabricSwitchProfileAncestor, FabricSwitchProfileAncestorArgs

    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'.

    FabricSwitchProfileAssignedSwitch, FabricSwitchProfileAssignedSwitchArgs

    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'.

    FabricSwitchProfileAssociatedSwitch, FabricSwitchProfileAssociatedSwitchArgs

    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'.

    FabricSwitchProfileConfigChange, FabricSwitchProfileConfigChangeArgs

    AdditionalProperties string
    Changes List<string>
    (Array of schema.TypeString) -
    ClassId string
    Disruptions 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.
    PolicyDisruptions List<FabricSwitchProfileConfigChangePolicyDisruption>
    This complex property has following sub-properties:
    AdditionalProperties string
    Changes []string
    (Array of schema.TypeString) -
    ClassId string
    Disruptions []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.
    PolicyDisruptions []FabricSwitchProfileConfigChangePolicyDisruption
    This complex property has following sub-properties:
    additionalProperties String
    changes List<String>
    (Array of schema.TypeString) -
    classId String
    disruptions 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.
    policyDisruptions List<FabricSwitchProfileConfigChangePolicyDisruption>
    This complex property has following sub-properties:
    additionalProperties string
    changes string[]
    (Array of schema.TypeString) -
    classId string
    disruptions 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.
    policyDisruptions FabricSwitchProfileConfigChangePolicyDisruption[]
    This complex property has following sub-properties:
    additional_properties str
    changes Sequence[str]
    (Array of schema.TypeString) -
    class_id str
    disruptions 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.
    policy_disruptions Sequence[FabricSwitchProfileConfigChangePolicyDisruption]
    This complex property has following sub-properties:
    additionalProperties String
    changes List<String>
    (Array of schema.TypeString) -
    classId String
    disruptions 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.
    policyDisruptions List<Property Map>
    This complex property has following sub-properties:

    FabricSwitchProfileConfigChangeContext, FabricSwitchProfileConfigChangeContextArgs

    AdditionalProperties string
    ClassId string
    ConfigChangeError string
    (ReadOnly) Indicates reason for failure state of configChangeState.
    ConfigChangeState string
    (ReadOnly) Indicates a profile's configuration change state. Used for tracking pending-changes and out-of-synch states.* Ok - Config change state represents Validation for change/drift is successful or is not applicable.* Validating-change - Config change state represents policy changes are being validated. This state starts when policy is changed and becomes different from deployed changes (Pending-changes).* Validating-drift - Config change state represents endpoint configuration changes are being validated. This state starts when endpoint is changed and endpoint configuration becomes different from policy configured changes (Out-of-sync).* Change-failed - Config change state represents there is internal error in calculating policy change.* Drift-failed - Config change state represents there is internal error in calculating endpoint configuraion drift.
    InitialConfigContexts List<FabricSwitchProfileConfigChangeContextInitialConfigContext>
    (ReadOnly) Stores initial Configuration state. Used for reverting back to initial state of ConfigContext in case of validation failure. 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.
    AdditionalProperties string
    ClassId string
    ConfigChangeError string
    (ReadOnly) Indicates reason for failure state of configChangeState.
    ConfigChangeState string
    (ReadOnly) Indicates a profile's configuration change state. Used for tracking pending-changes and out-of-synch states.* Ok - Config change state represents Validation for change/drift is successful or is not applicable.* Validating-change - Config change state represents policy changes are being validated. This state starts when policy is changed and becomes different from deployed changes (Pending-changes).* Validating-drift - Config change state represents endpoint configuration changes are being validated. This state starts when endpoint is changed and endpoint configuration becomes different from policy configured changes (Out-of-sync).* Change-failed - Config change state represents there is internal error in calculating policy change.* Drift-failed - Config change state represents there is internal error in calculating endpoint configuraion drift.
    InitialConfigContexts []FabricSwitchProfileConfigChangeContextInitialConfigContext
    (ReadOnly) Stores initial Configuration state. Used for reverting back to initial state of ConfigContext in case of validation failure. 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.
    additionalProperties String
    classId String
    configChangeError String
    (ReadOnly) Indicates reason for failure state of configChangeState.
    configChangeState String
    (ReadOnly) Indicates a profile's configuration change state. Used for tracking pending-changes and out-of-synch states.* Ok - Config change state represents Validation for change/drift is successful or is not applicable.* Validating-change - Config change state represents policy changes are being validated. This state starts when policy is changed and becomes different from deployed changes (Pending-changes).* Validating-drift - Config change state represents endpoint configuration changes are being validated. This state starts when endpoint is changed and endpoint configuration becomes different from policy configured changes (Out-of-sync).* Change-failed - Config change state represents there is internal error in calculating policy change.* Drift-failed - Config change state represents there is internal error in calculating endpoint configuraion drift.
    initialConfigContexts List<FabricSwitchProfileConfigChangeContextInitialConfigContext>
    (ReadOnly) Stores initial Configuration state. Used for reverting back to initial state of ConfigContext in case of validation failure. 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.
    additionalProperties string
    classId string
    configChangeError string
    (ReadOnly) Indicates reason for failure state of configChangeState.
    configChangeState string
    (ReadOnly) Indicates a profile's configuration change state. Used for tracking pending-changes and out-of-synch states.* Ok - Config change state represents Validation for change/drift is successful or is not applicable.* Validating-change - Config change state represents policy changes are being validated. This state starts when policy is changed and becomes different from deployed changes (Pending-changes).* Validating-drift - Config change state represents endpoint configuration changes are being validated. This state starts when endpoint is changed and endpoint configuration becomes different from policy configured changes (Out-of-sync).* Change-failed - Config change state represents there is internal error in calculating policy change.* Drift-failed - Config change state represents there is internal error in calculating endpoint configuraion drift.
    initialConfigContexts FabricSwitchProfileConfigChangeContextInitialConfigContext[]
    (ReadOnly) Stores initial Configuration state. Used for reverting back to initial state of ConfigContext in case of validation failure. 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.
    additional_properties str
    class_id str
    config_change_error str
    (ReadOnly) Indicates reason for failure state of configChangeState.
    config_change_state str
    (ReadOnly) Indicates a profile's configuration change state. Used for tracking pending-changes and out-of-synch states.* Ok - Config change state represents Validation for change/drift is successful or is not applicable.* Validating-change - Config change state represents policy changes are being validated. This state starts when policy is changed and becomes different from deployed changes (Pending-changes).* Validating-drift - Config change state represents endpoint configuration changes are being validated. This state starts when endpoint is changed and endpoint configuration becomes different from policy configured changes (Out-of-sync).* Change-failed - Config change state represents there is internal error in calculating policy change.* Drift-failed - Config change state represents there is internal error in calculating endpoint configuraion drift.
    initial_config_contexts Sequence[FabricSwitchProfileConfigChangeContextInitialConfigContext]
    (ReadOnly) Stores initial Configuration state. Used for reverting back to initial state of ConfigContext in case of validation failure. 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.
    additionalProperties String
    classId String
    configChangeError String
    (ReadOnly) Indicates reason for failure state of configChangeState.
    configChangeState String
    (ReadOnly) Indicates a profile's configuration change state. Used for tracking pending-changes and out-of-synch states.* Ok - Config change state represents Validation for change/drift is successful or is not applicable.* Validating-change - Config change state represents policy changes are being validated. This state starts when policy is changed and becomes different from deployed changes (Pending-changes).* Validating-drift - Config change state represents endpoint configuration changes are being validated. This state starts when endpoint is changed and endpoint configuration becomes different from policy configured changes (Out-of-sync).* Change-failed - Config change state represents there is internal error in calculating policy change.* Drift-failed - Config change state represents there is internal error in calculating endpoint configuraion drift.
    initialConfigContexts List<Property Map>
    (ReadOnly) Stores initial Configuration state. Used for reverting back to initial state of ConfigContext in case of validation failure. 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.

    FabricSwitchProfileConfigChangeContextInitialConfigContext, FabricSwitchProfileConfigChangeContextInitialConfigContextArgs

    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.

    FabricSwitchProfileConfigChangeDetail, FabricSwitchProfileConfigChangeDetailArgs

    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'.

    FabricSwitchProfileConfigChangePolicyDisruption, FabricSwitchProfileConfigChangePolicyDisruptionArgs

    AdditionalProperties string
    ClassId string
    Disruptions List<string>
    (Array of schema.TypeString) -
    IsOnlyRequiredByOtherPolicies bool
    The current policy has to be redeployed only because there are other policy changes that require this.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    PolicyName string
    Name of the policy that, when modified, causes the disruption.
    PolicyPendingAction string
    Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
    RequiredByPolicies List<string>
    (Array of schema.TypeString) -
    AdditionalProperties string
    ClassId string
    Disruptions []string
    (Array of schema.TypeString) -
    IsOnlyRequiredByOtherPolicies bool
    The current policy has to be redeployed only because there are other policy changes that require this.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    PolicyName string
    Name of the policy that, when modified, causes the disruption.
    PolicyPendingAction string
    Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
    RequiredByPolicies []string
    (Array of schema.TypeString) -
    additionalProperties String
    classId String
    disruptions List<String>
    (Array of schema.TypeString) -
    isOnlyRequiredByOtherPolicies Boolean
    The current policy has to be redeployed only because there are other policy changes that require this.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    policyName String
    Name of the policy that, when modified, causes the disruption.
    policyPendingAction String
    Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
    requiredByPolicies List<String>
    (Array of schema.TypeString) -
    additionalProperties string
    classId string
    disruptions string[]
    (Array of schema.TypeString) -
    isOnlyRequiredByOtherPolicies boolean
    The current policy has to be redeployed only because there are other policy changes that require this.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    policyName string
    Name of the policy that, when modified, causes the disruption.
    policyPendingAction string
    Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
    requiredByPolicies string[]
    (Array of schema.TypeString) -
    additional_properties str
    class_id str
    disruptions Sequence[str]
    (Array of schema.TypeString) -
    is_only_required_by_other_policies bool
    The current policy has to be redeployed only because there are other policy changes that require this.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    policy_name str
    Name of the policy that, when modified, causes the disruption.
    policy_pending_action str
    Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
    required_by_policies Sequence[str]
    (Array of schema.TypeString) -
    additionalProperties String
    classId String
    disruptions List<String>
    (Array of schema.TypeString) -
    isOnlyRequiredByOtherPolicies Boolean
    The current policy has to be redeployed only because there are other policy changes that require this.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    policyName String
    Name of the policy that, when modified, causes the disruption.
    policyPendingAction String
    Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
    requiredByPolicies List<String>
    (Array of schema.TypeString) -

    FabricSwitchProfileConfigContext, FabricSwitchProfileConfigContextArgs

    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.

    FabricSwitchProfileConfigResult, FabricSwitchProfileConfigResultArgs

    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'.

    FabricSwitchProfileParent, FabricSwitchProfileParentArgs

    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'.

    FabricSwitchProfilePermissionResource, FabricSwitchProfilePermissionResourceArgs

    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'.

    FabricSwitchProfilePolicyBucket, FabricSwitchProfilePolicyBucketArgs

    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'.

    FabricSwitchProfileRunningWorkflow, FabricSwitchProfileRunningWorkflowArgs

    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'.

    FabricSwitchProfileScheduledAction, FabricSwitchProfileScheduledActionArgs

    Action string
    Name of the action to be performed on the profile.
    ActionQualifiers List<FabricSwitchProfileScheduledActionActionQualifier>
    Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
    AdditionalProperties string
    ClassId string
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    ProceedOnReboot bool
    ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
    Action string
    Name of the action to be performed on the profile.
    ActionQualifiers []FabricSwitchProfileScheduledActionActionQualifier
    Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
    AdditionalProperties string
    ClassId string
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    ProceedOnReboot bool
    ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
    action String
    Name of the action to be performed on the profile.
    actionQualifiers List<FabricSwitchProfileScheduledActionActionQualifier>
    Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
    additionalProperties String
    classId String
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    proceedOnReboot Boolean
    ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
    action string
    Name of the action to be performed on the profile.
    actionQualifiers FabricSwitchProfileScheduledActionActionQualifier[]
    Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
    additionalProperties string
    classId string
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    proceedOnReboot boolean
    ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
    action str
    Name of the action to be performed on the profile.
    action_qualifiers Sequence[FabricSwitchProfileScheduledActionActionQualifier]
    Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
    additional_properties str
    class_id str
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    proceed_on_reboot bool
    ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
    action String
    Name of the action to be performed on the profile.
    actionQualifiers List<Property Map>
    Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
    additionalProperties String
    classId String
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    proceedOnReboot Boolean
    ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.

    FabricSwitchProfileScheduledActionActionQualifier, FabricSwitchProfileScheduledActionActionQualifierArgs

    AdditionalProperties string
    ClassId string
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
    AdditionalProperties string
    ClassId string
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
    additionalProperties String
    classId String
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
    additionalProperties string
    classId string
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
    additional_properties str
    class_id str
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
    additionalProperties String
    classId String
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.

    FabricSwitchProfileSrcTemplate, FabricSwitchProfileSrcTemplateArgs

    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'.

    FabricSwitchProfileSwitchClusterProfile, FabricSwitchProfileSwitchClusterProfileArgs

    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'.

    FabricSwitchProfileTag, FabricSwitchProfileTagArgs

    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.

    FabricSwitchProfileVersionContext, FabricSwitchProfileVersionContextArgs

    AdditionalProperties string
    ClassId string
    InterestedMos List<FabricSwitchProfileVersionContextInterestedMo>
    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<FabricSwitchProfileVersionContextRefMo>
    (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 []FabricSwitchProfileVersionContextInterestedMo
    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 []FabricSwitchProfileVersionContextRefMo
    (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<FabricSwitchProfileVersionContextInterestedMo>
    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<FabricSwitchProfileVersionContextRefMo>
    (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 FabricSwitchProfileVersionContextInterestedMo[]
    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 FabricSwitchProfileVersionContextRefMo[]
    (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[FabricSwitchProfileVersionContextInterestedMo]
    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[FabricSwitchProfileVersionContextRefMo]
    (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.

    FabricSwitchProfileVersionContextInterestedMo, FabricSwitchProfileVersionContextInterestedMoArgs

    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'.

    FabricSwitchProfileVersionContextRefMo, FabricSwitchProfileVersionContextRefMoArgs

    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_profile can be imported using the Moid of the object, e.g.

    $ pulumi import intersight:index/fabricSwitchProfile:FabricSwitchProfile 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