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

intersight.ChassisProfile

Explore with Pulumi AI

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

    A profile specifying configuration settings for a chassis.

    Usage Example

    Resource Creation

    import * as pulumi from "@pulumi/pulumi";
    import * as intersight from "@pulumi/intersight";
    
    const chassisProfile1 = new intersight.ChassisProfile("chassisProfile1", {
        description: "chassis profile",
        type: "instance",
        targetPlatform: "FIAttached",
        action: "Validate",
        configContexts: [{
            objectType: "policy.ConfigContext",
            controlAction: "deploy",
            errorState: "Validation-error",
        }],
        organizations: [{
            objectType: "organization.Organization",
            moid: _var.organization,
        }],
    });
    
    import pulumi
    import pulumi_intersight as intersight
    
    chassis_profile1 = intersight.ChassisProfile("chassisProfile1",
        description="chassis profile",
        type="instance",
        target_platform="FIAttached",
        action="Validate",
        config_contexts=[{
            "object_type": "policy.ConfigContext",
            "control_action": "deploy",
            "error_state": "Validation-error",
        }],
        organizations=[{
            "object_type": "organization.Organization",
            "moid": var["organization"],
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := intersight.NewChassisProfile(ctx, "chassisProfile1", &intersight.ChassisProfileArgs{
    			Description:    pulumi.String("chassis profile"),
    			Type:           pulumi.String("instance"),
    			TargetPlatform: pulumi.String("FIAttached"),
    			Action:         pulumi.String("Validate"),
    			ConfigContexts: intersight.ChassisProfileConfigContextArray{
    				&intersight.ChassisProfileConfigContextArgs{
    					ObjectType:    pulumi.String("policy.ConfigContext"),
    					ControlAction: pulumi.String("deploy"),
    					ErrorState:    pulumi.String("Validation-error"),
    				},
    			},
    			Organizations: intersight.ChassisProfileOrganizationArray{
    				&intersight.ChassisProfileOrganizationArgs{
    					ObjectType: pulumi.String("organization.Organization"),
    					Moid:       pulumi.Any(_var.Organization),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Intersight = Pulumi.Intersight;
    
    return await Deployment.RunAsync(() => 
    {
        var chassisProfile1 = new Intersight.ChassisProfile("chassisProfile1", new()
        {
            Description = "chassis profile",
            Type = "instance",
            TargetPlatform = "FIAttached",
            Action = "Validate",
            ConfigContexts = new[]
            {
                new Intersight.Inputs.ChassisProfileConfigContextArgs
                {
                    ObjectType = "policy.ConfigContext",
                    ControlAction = "deploy",
                    ErrorState = "Validation-error",
                },
            },
            Organizations = new[]
            {
                new Intersight.Inputs.ChassisProfileOrganizationArgs
                {
                    ObjectType = "organization.Organization",
                    Moid = @var.Organization,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.intersight.ChassisProfile;
    import com.pulumi.intersight.ChassisProfileArgs;
    import com.pulumi.intersight.inputs.ChassisProfileConfigContextArgs;
    import com.pulumi.intersight.inputs.ChassisProfileOrganizationArgs;
    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 chassisProfile1 = new ChassisProfile("chassisProfile1", ChassisProfileArgs.builder()
                .description("chassis profile")
                .type("instance")
                .targetPlatform("FIAttached")
                .action("Validate")
                .configContexts(ChassisProfileConfigContextArgs.builder()
                    .objectType("policy.ConfigContext")
                    .controlAction("deploy")
                    .errorState("Validation-error")
                    .build())
                .organizations(ChassisProfileOrganizationArgs.builder()
                    .objectType("organization.Organization")
                    .moid(var_.organization())
                    .build())
                .build());
    
        }
    }
    
    resources:
      chassisProfile1:
        type: intersight:ChassisProfile
        properties:
          description: chassis profile
          type: instance
          targetPlatform: FIAttached
          action: Validate
          configContexts:
            - objectType: policy.ConfigContext
              controlAction: deploy
              errorState: Validation-error
          organizations:
            - objectType: organization.Organization
              moid: ${var.organization}
    

    Create ChassisProfile Resource

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

    Constructor syntax

    new ChassisProfile(name: string, args?: ChassisProfileArgs, opts?: CustomResourceOptions);
    @overload
    def ChassisProfile(resource_name: str,
                       args: Optional[ChassisProfileArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ChassisProfile(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       account_moid: Optional[str] = None,
                       action: Optional[str] = None,
                       action_params: Optional[Sequence[ChassisProfileActionParamArgs]] = None,
                       additional_properties: Optional[str] = None,
                       ancestors: Optional[Sequence[ChassisProfileAncestorArgs]] = None,
                       assigned_chasses: Optional[Sequence[ChassisProfileAssignedChassArgs]] = None,
                       associated_chasses: Optional[Sequence[ChassisProfileAssociatedChassArgs]] = None,
                       chassis_profile_id: Optional[str] = None,
                       class_id: Optional[str] = None,
                       config_change_contexts: Optional[Sequence[ChassisProfileConfigChangeContextArgs]] = None,
                       config_change_details: Optional[Sequence[ChassisProfileConfigChangeDetailArgs]] = None,
                       config_changes: Optional[Sequence[ChassisProfileConfigChangeArgs]] = None,
                       config_contexts: Optional[Sequence[ChassisProfileConfigContextArgs]] = None,
                       config_results: Optional[Sequence[ChassisProfileConfigResultArgs]] = None,
                       create_time: Optional[str] = None,
                       deployed_policies: Optional[Sequence[str]] = None,
                       description: Optional[str] = None,
                       domain_group_moid: Optional[str] = None,
                       iom_profiles: Optional[Sequence[ChassisProfileIomProfileArgs]] = None,
                       mod_time: Optional[str] = None,
                       moid: Optional[str] = None,
                       name: Optional[str] = None,
                       object_type: Optional[str] = None,
                       organizations: Optional[Sequence[ChassisProfileOrganizationArgs]] = None,
                       owners: Optional[Sequence[str]] = None,
                       parents: Optional[Sequence[ChassisProfileParentArgs]] = None,
                       permission_resources: Optional[Sequence[ChassisProfilePermissionResourceArgs]] = None,
                       policy_buckets: Optional[Sequence[ChassisProfilePolicyBucketArgs]] = None,
                       removed_policies: Optional[Sequence[str]] = None,
                       running_workflows: Optional[Sequence[ChassisProfileRunningWorkflowArgs]] = None,
                       scheduled_actions: Optional[Sequence[ChassisProfileScheduledActionArgs]] = None,
                       shared_scope: Optional[str] = None,
                       src_templates: Optional[Sequence[ChassisProfileSrcTemplateArgs]] = None,
                       tags: Optional[Sequence[ChassisProfileTagArgs]] = None,
                       target_platform: Optional[str] = None,
                       type: Optional[str] = None,
                       user_label: Optional[str] = None,
                       version_contexts: Optional[Sequence[ChassisProfileVersionContextArgs]] = None,
                       wait_for_completion: Optional[bool] = None)
    func NewChassisProfile(ctx *Context, name string, args *ChassisProfileArgs, opts ...ResourceOption) (*ChassisProfile, error)
    public ChassisProfile(string name, ChassisProfileArgs? args = null, CustomResourceOptions? opts = null)
    public ChassisProfile(String name, ChassisProfileArgs args)
    public ChassisProfile(String name, ChassisProfileArgs args, CustomResourceOptions options)
    
    type: intersight:ChassisProfile
    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 ChassisProfileArgs
    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 ChassisProfileArgs
    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 ChassisProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ChassisProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ChassisProfileArgs
    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 chassisProfileResource = new Intersight.ChassisProfile("chassisProfileResource", new()
    {
        AccountMoid = "string",
        Action = "string",
        ActionParams = new[]
        {
            new Intersight.Inputs.ChassisProfileActionParamArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Name = "string",
                ObjectType = "string",
                Value = "string",
            },
        },
        AdditionalProperties = "string",
        Ancestors = new[]
        {
            new Intersight.Inputs.ChassisProfileAncestorArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        AssignedChasses = new[]
        {
            new Intersight.Inputs.ChassisProfileAssignedChassArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        AssociatedChasses = new[]
        {
            new Intersight.Inputs.ChassisProfileAssociatedChassArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ChassisProfileId = "string",
        ClassId = "string",
        ConfigChangeContexts = new[]
        {
            new Intersight.Inputs.ChassisProfileConfigChangeContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                ConfigChangeError = "string",
                ConfigChangeState = "string",
                InitialConfigContexts = new[]
                {
                    new Intersight.Inputs.ChassisProfileConfigChangeContextInitialConfigContextArgs
                    {
                        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.ChassisProfileConfigChangeDetailArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ConfigChanges = new[]
        {
            new Intersight.Inputs.ChassisProfileConfigChangeArgs
            {
                AdditionalProperties = "string",
                Changes = new[]
                {
                    "string",
                },
                ClassId = "string",
                Disruptions = new[]
                {
                    "string",
                },
                ObjectType = "string",
                PolicyDisruptions = new[]
                {
                    new Intersight.Inputs.ChassisProfileConfigChangePolicyDisruptionArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Disruptions = new[]
                        {
                            "string",
                        },
                        IsOnlyRequiredByOtherPolicies = false,
                        ObjectType = "string",
                        PolicyName = "string",
                        PolicyPendingAction = "string",
                        RequiredByPolicies = new[]
                        {
                            "string",
                        },
                    },
                },
            },
        },
        ConfigContexts = new[]
        {
            new Intersight.Inputs.ChassisProfileConfigContextArgs
            {
                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.ChassisProfileConfigResultArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        CreateTime = "string",
        DeployedPolicies = new[]
        {
            "string",
        },
        Description = "string",
        DomainGroupMoid = "string",
        IomProfiles = new[]
        {
            new Intersight.Inputs.ChassisProfileIomProfileArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ModTime = "string",
        Moid = "string",
        Name = "string",
        ObjectType = "string",
        Organizations = new[]
        {
            new Intersight.Inputs.ChassisProfileOrganizationArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Owners = new[]
        {
            "string",
        },
        Parents = new[]
        {
            new Intersight.Inputs.ChassisProfileParentArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PermissionResources = new[]
        {
            new Intersight.Inputs.ChassisProfilePermissionResourceArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PolicyBuckets = new[]
        {
            new Intersight.Inputs.ChassisProfilePolicyBucketArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        RemovedPolicies = new[]
        {
            "string",
        },
        RunningWorkflows = new[]
        {
            new Intersight.Inputs.ChassisProfileRunningWorkflowArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ScheduledActions = new[]
        {
            new Intersight.Inputs.ChassisProfileScheduledActionArgs
            {
                Action = "string",
                ActionQualifiers = new[]
                {
                    new Intersight.Inputs.ChassisProfileScheduledActionActionQualifierArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        ObjectType = "string",
                    },
                },
                AdditionalProperties = "string",
                ClassId = "string",
                ObjectType = "string",
                ProceedOnReboot = false,
            },
        },
        SharedScope = "string",
        SrcTemplates = new[]
        {
            new Intersight.Inputs.ChassisProfileSrcTemplateArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Tags = new[]
        {
            new Intersight.Inputs.ChassisProfileTagArgs
            {
                AdditionalProperties = "string",
                Key = "string",
                Value = "string",
            },
        },
        TargetPlatform = "string",
        Type = "string",
        UserLabel = "string",
        VersionContexts = new[]
        {
            new Intersight.Inputs.ChassisProfileVersionContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                InterestedMos = new[]
                {
                    new Intersight.Inputs.ChassisProfileVersionContextInterestedMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                MarkedForDeletion = false,
                NrVersion = "string",
                ObjectType = "string",
                RefMos = new[]
                {
                    new Intersight.Inputs.ChassisProfileVersionContextRefMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                Timestamp = "string",
                VersionType = "string",
            },
        },
        WaitForCompletion = false,
    });
    
    example, err := intersight.NewChassisProfile(ctx, "chassisProfileResource", &intersight.ChassisProfileArgs{
    	AccountMoid: pulumi.String("string"),
    	Action:      pulumi.String("string"),
    	ActionParams: intersight.ChassisProfileActionParamArray{
    		&intersight.ChassisProfileActionParamArgs{
    			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.ChassisProfileAncestorArray{
    		&intersight.ChassisProfileAncestorArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	AssignedChasses: intersight.ChassisProfileAssignedChassArray{
    		&intersight.ChassisProfileAssignedChassArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	AssociatedChasses: intersight.ChassisProfileAssociatedChassArray{
    		&intersight.ChassisProfileAssociatedChassArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ChassisProfileId: pulumi.String("string"),
    	ClassId:          pulumi.String("string"),
    	ConfigChangeContexts: intersight.ChassisProfileConfigChangeContextArray{
    		&intersight.ChassisProfileConfigChangeContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			ConfigChangeError:    pulumi.String("string"),
    			ConfigChangeState:    pulumi.String("string"),
    			InitialConfigContexts: intersight.ChassisProfileConfigChangeContextInitialConfigContextArray{
    				&intersight.ChassisProfileConfigChangeContextInitialConfigContextArgs{
    					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.ChassisProfileConfigChangeDetailArray{
    		&intersight.ChassisProfileConfigChangeDetailArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ConfigChanges: intersight.ChassisProfileConfigChangeArray{
    		&intersight.ChassisProfileConfigChangeArgs{
    			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.ChassisProfileConfigChangePolicyDisruptionArray{
    				&intersight.ChassisProfileConfigChangePolicyDisruptionArgs{
    					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.ChassisProfileConfigContextArray{
    		&intersight.ChassisProfileConfigContextArgs{
    			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.ChassisProfileConfigResultArray{
    		&intersight.ChassisProfileConfigResultArgs{
    			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"),
    	IomProfiles: intersight.ChassisProfileIomProfileArray{
    		&intersight.ChassisProfileIomProfileArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ModTime:    pulumi.String("string"),
    	Moid:       pulumi.String("string"),
    	Name:       pulumi.String("string"),
    	ObjectType: pulumi.String("string"),
    	Organizations: intersight.ChassisProfileOrganizationArray{
    		&intersight.ChassisProfileOrganizationArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Owners: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Parents: intersight.ChassisProfileParentArray{
    		&intersight.ChassisProfileParentArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PermissionResources: intersight.ChassisProfilePermissionResourceArray{
    		&intersight.ChassisProfilePermissionResourceArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PolicyBuckets: intersight.ChassisProfilePolicyBucketArray{
    		&intersight.ChassisProfilePolicyBucketArgs{
    			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.ChassisProfileRunningWorkflowArray{
    		&intersight.ChassisProfileRunningWorkflowArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ScheduledActions: intersight.ChassisProfileScheduledActionArray{
    		&intersight.ChassisProfileScheduledActionArgs{
    			Action: pulumi.String("string"),
    			ActionQualifiers: intersight.ChassisProfileScheduledActionActionQualifierArray{
    				&intersight.ChassisProfileScheduledActionActionQualifierArgs{
    					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.ChassisProfileSrcTemplateArray{
    		&intersight.ChassisProfileSrcTemplateArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Tags: intersight.ChassisProfileTagArray{
    		&intersight.ChassisProfileTagArgs{
    			AdditionalProperties: pulumi.String("string"),
    			Key:                  pulumi.String("string"),
    			Value:                pulumi.String("string"),
    		},
    	},
    	TargetPlatform: pulumi.String("string"),
    	Type:           pulumi.String("string"),
    	UserLabel:      pulumi.String("string"),
    	VersionContexts: intersight.ChassisProfileVersionContextArray{
    		&intersight.ChassisProfileVersionContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			InterestedMos: intersight.ChassisProfileVersionContextInterestedMoArray{
    				&intersight.ChassisProfileVersionContextInterestedMoArgs{
    					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.ChassisProfileVersionContextRefMoArray{
    				&intersight.ChassisProfileVersionContextRefMoArgs{
    					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 chassisProfileResource = new ChassisProfile("chassisProfileResource", ChassisProfileArgs.builder()
        .accountMoid("string")
        .action("string")
        .actionParams(ChassisProfileActionParamArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .name("string")
            .objectType("string")
            .value("string")
            .build())
        .additionalProperties("string")
        .ancestors(ChassisProfileAncestorArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .assignedChasses(ChassisProfileAssignedChassArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .associatedChasses(ChassisProfileAssociatedChassArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .chassisProfileId("string")
        .classId("string")
        .configChangeContexts(ChassisProfileConfigChangeContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .configChangeError("string")
            .configChangeState("string")
            .initialConfigContexts(ChassisProfileConfigChangeContextInitialConfigContextArgs.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(ChassisProfileConfigChangeDetailArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .configChanges(ChassisProfileConfigChangeArgs.builder()
            .additionalProperties("string")
            .changes("string")
            .classId("string")
            .disruptions("string")
            .objectType("string")
            .policyDisruptions(ChassisProfileConfigChangePolicyDisruptionArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .disruptions("string")
                .isOnlyRequiredByOtherPolicies(false)
                .objectType("string")
                .policyName("string")
                .policyPendingAction("string")
                .requiredByPolicies("string")
                .build())
            .build())
        .configContexts(ChassisProfileConfigContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .configState("string")
            .configStateSummary("string")
            .configType("string")
            .controlAction("string")
            .errorState("string")
            .inconsistencyReasons("string")
            .objectType("string")
            .operState("string")
            .build())
        .configResults(ChassisProfileConfigResultArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .createTime("string")
        .deployedPolicies("string")
        .description("string")
        .domainGroupMoid("string")
        .iomProfiles(ChassisProfileIomProfileArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .modTime("string")
        .moid("string")
        .name("string")
        .objectType("string")
        .organizations(ChassisProfileOrganizationArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .owners("string")
        .parents(ChassisProfileParentArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .permissionResources(ChassisProfilePermissionResourceArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .policyBuckets(ChassisProfilePolicyBucketArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .removedPolicies("string")
        .runningWorkflows(ChassisProfileRunningWorkflowArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .scheduledActions(ChassisProfileScheduledActionArgs.builder()
            .action("string")
            .actionQualifiers(ChassisProfileScheduledActionActionQualifierArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .objectType("string")
                .build())
            .additionalProperties("string")
            .classId("string")
            .objectType("string")
            .proceedOnReboot(false)
            .build())
        .sharedScope("string")
        .srcTemplates(ChassisProfileSrcTemplateArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .tags(ChassisProfileTagArgs.builder()
            .additionalProperties("string")
            .key("string")
            .value("string")
            .build())
        .targetPlatform("string")
        .type("string")
        .userLabel("string")
        .versionContexts(ChassisProfileVersionContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .interestedMos(ChassisProfileVersionContextInterestedMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .markedForDeletion(false)
            .nrVersion("string")
            .objectType("string")
            .refMos(ChassisProfileVersionContextRefMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .timestamp("string")
            .versionType("string")
            .build())
        .waitForCompletion(false)
        .build());
    
    chassis_profile_resource = intersight.ChassisProfile("chassisProfileResource",
        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_chasses=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        associated_chasses=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        chassis_profile_id="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",
        iom_profiles=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        mod_time="string",
        moid="string",
        name="string",
        object_type="string",
        organizations=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        owners=["string"],
        parents=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        permission_resources=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        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",
        }],
        tags=[{
            "additional_properties": "string",
            "key": "string",
            "value": "string",
        }],
        target_platform="string",
        type="string",
        user_label="string",
        version_contexts=[{
            "additional_properties": "string",
            "class_id": "string",
            "interested_mos": [{
                "additional_properties": "string",
                "class_id": "string",
                "moid": "string",
                "object_type": "string",
                "selector": "string",
            }],
            "marked_for_deletion": False,
            "nr_version": "string",
            "object_type": "string",
            "ref_mos": [{
                "additional_properties": "string",
                "class_id": "string",
                "moid": "string",
                "object_type": "string",
                "selector": "string",
            }],
            "timestamp": "string",
            "version_type": "string",
        }],
        wait_for_completion=False)
    
    const chassisProfileResource = new intersight.ChassisProfile("chassisProfileResource", {
        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",
        }],
        assignedChasses: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        associatedChasses: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        chassisProfileId: "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",
        iomProfiles: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        modTime: "string",
        moid: "string",
        name: "string",
        objectType: "string",
        organizations: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        owners: ["string"],
        parents: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        permissionResources: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        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",
        }],
        tags: [{
            additionalProperties: "string",
            key: "string",
            value: "string",
        }],
        targetPlatform: "string",
        type: "string",
        userLabel: "string",
        versionContexts: [{
            additionalProperties: "string",
            classId: "string",
            interestedMos: [{
                additionalProperties: "string",
                classId: "string",
                moid: "string",
                objectType: "string",
                selector: "string",
            }],
            markedForDeletion: false,
            nrVersion: "string",
            objectType: "string",
            refMos: [{
                additionalProperties: "string",
                classId: "string",
                moid: "string",
                objectType: "string",
                selector: "string",
            }],
            timestamp: "string",
            versionType: "string",
        }],
        waitForCompletion: false,
    });
    
    type: intersight:ChassisProfile
    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
        assignedChasses:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        associatedChasses:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        chassisProfileId: 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
        iomProfiles:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        modTime: string
        moid: string
        name: string
        objectType: string
        organizations:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        owners:
            - string
        parents:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        permissionResources:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        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
        tags:
            - additionalProperties: string
              key: string
              value: string
        targetPlatform: string
        type: string
        userLabel: string
        versionContexts:
            - additionalProperties: string
              classId: string
              interestedMos:
                - additionalProperties: string
                  classId: string
                  moid: string
                  objectType: string
                  selector: string
              markedForDeletion: false
              nrVersion: string
              objectType: string
              refMos:
                - additionalProperties: string
                  classId: string
                  moid: string
                  objectType: string
                  selector: string
              timestamp: string
              versionType: string
        waitForCompletion: false
    

    ChassisProfile 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 ChassisProfile 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<ChassisProfileActionParam>
    This complex property has following sub-properties:
    AdditionalProperties string
    Ancestors List<ChassisProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AssignedChasses List<ChassisProfileAssignedChass>
    A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    AssociatedChasses List<ChassisProfileAssociatedChass>
    (ReadOnly) A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ChassisProfileId string
    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<ChassisProfileConfigChangeContext>
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    ConfigChangeDetails List<ChassisProfileConfigChangeDetail>
    (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
    ConfigChanges List<ChassisProfileConfigChange>
    (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    ConfigContexts List<ChassisProfileConfigContext>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    ConfigResults List<ChassisProfileConfigResult>
    (ReadOnly) A reference to a chassisConfigResult 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.
    IomProfiles List<ChassisProfileIomProfile>
    (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the profile instance or profile template.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations List<ChassisProfileOrganization>
    A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Owners List<string>
    (Array of schema.TypeString) -(ReadOnly)
    Parents List<ChassisProfileParent>
    (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<ChassisProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PolicyBuckets List<ChassisProfilePolicyBucket>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    RemovedPolicies List<string>
    (Array of schema.TypeString) -
    RunningWorkflows List<ChassisProfileRunningWorkflow>
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    ScheduledActions List<ChassisProfileScheduledAction>
    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<ChassisProfileSrcTemplate>
    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:
    Tags List<ChassisProfileTag>
    This complex property has following sub-properties:
    TargetPlatform string
    The platform for which the chassis profile is applicable. It can either be a chassis that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* FIAttached - Chassis which are connected to a Fabric Interconnect that is managed by Intersight.
    Type string
    Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
    UserLabel string
    User label assigned to the chassis profile.
    VersionContexts List<ChassisProfileVersionContext>
    (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 []ChassisProfileActionParamArgs
    This complex property has following sub-properties:
    AdditionalProperties string
    Ancestors []ChassisProfileAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AssignedChasses []ChassisProfileAssignedChassArgs
    A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    AssociatedChasses []ChassisProfileAssociatedChassArgs
    (ReadOnly) A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ChassisProfileId string
    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 []ChassisProfileConfigChangeContextArgs
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    ConfigChangeDetails []ChassisProfileConfigChangeDetailArgs
    (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
    ConfigChanges []ChassisProfileConfigChangeArgs
    (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    ConfigContexts []ChassisProfileConfigContextArgs
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    ConfigResults []ChassisProfileConfigResultArgs
    (ReadOnly) A reference to a chassisConfigResult 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.
    IomProfiles []ChassisProfileIomProfileArgs
    (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the profile instance or profile template.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations []ChassisProfileOrganizationArgs
    A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Owners []string
    (Array of schema.TypeString) -(ReadOnly)
    Parents []ChassisProfileParentArgs
    (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 []ChassisProfilePermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PolicyBuckets []ChassisProfilePolicyBucketArgs
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    RemovedPolicies []string
    (Array of schema.TypeString) -
    RunningWorkflows []ChassisProfileRunningWorkflowArgs
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    ScheduledActions []ChassisProfileScheduledActionArgs
    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 []ChassisProfileSrcTemplateArgs
    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:
    Tags []ChassisProfileTagArgs
    This complex property has following sub-properties:
    TargetPlatform string
    The platform for which the chassis profile is applicable. It can either be a chassis that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* FIAttached - Chassis which are connected to a Fabric Interconnect that is managed by Intersight.
    Type string
    Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
    UserLabel string
    User label assigned to the chassis profile.
    VersionContexts []ChassisProfileVersionContextArgs
    (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<ChassisProfileActionParam>
    This complex property has following sub-properties:
    additionalProperties String
    ancestors List<ChassisProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    assignedChasses List<ChassisProfileAssignedChass>
    A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associatedChasses List<ChassisProfileAssociatedChass>
    (ReadOnly) A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    chassisProfileId String
    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<ChassisProfileConfigChangeContext>
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    configChangeDetails List<ChassisProfileConfigChangeDetail>
    (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
    configChanges List<ChassisProfileConfigChange>
    (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    configContexts List<ChassisProfileConfigContext>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    configResults List<ChassisProfileConfigResult>
    (ReadOnly) A reference to a chassisConfigResult 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.
    iomProfiles List<ChassisProfileIomProfile>
    (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the profile instance or profile template.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations List<ChassisProfileOrganization>
    A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<ChassisProfileParent>
    (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<ChassisProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policyBuckets List<ChassisProfilePolicyBucket>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies List<String>
    (Array of schema.TypeString) -
    runningWorkflows List<ChassisProfileRunningWorkflow>
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    scheduledActions List<ChassisProfileScheduledAction>
    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<ChassisProfileSrcTemplate>
    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:
    tags List<ChassisProfileTag>
    This complex property has following sub-properties:
    targetPlatform String
    The platform for which the chassis profile is applicable. It can either be a chassis that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* FIAttached - Chassis which are connected to a Fabric Interconnect that is managed by Intersight.
    type String
    Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
    userLabel String
    User label assigned to the chassis profile.
    versionContexts List<ChassisProfileVersionContext>
    (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 ChassisProfileActionParam[]
    This complex property has following sub-properties:
    additionalProperties string
    ancestors ChassisProfileAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    assignedChasses ChassisProfileAssignedChass[]
    A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associatedChasses ChassisProfileAssociatedChass[]
    (ReadOnly) A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    chassisProfileId string
    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 ChassisProfileConfigChangeContext[]
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    configChangeDetails ChassisProfileConfigChangeDetail[]
    (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
    configChanges ChassisProfileConfigChange[]
    (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    configContexts ChassisProfileConfigContext[]
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    configResults ChassisProfileConfigResult[]
    (ReadOnly) A reference to a chassisConfigResult 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.
    iomProfiles ChassisProfileIomProfile[]
    (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    name string
    Name of the profile instance or profile template.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations ChassisProfileOrganization[]
    A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    owners string[]
    (Array of schema.TypeString) -(ReadOnly)
    parents ChassisProfileParent[]
    (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 ChassisProfilePermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policyBuckets ChassisProfilePolicyBucket[]
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies string[]
    (Array of schema.TypeString) -
    runningWorkflows ChassisProfileRunningWorkflow[]
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    scheduledActions ChassisProfileScheduledAction[]
    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 ChassisProfileSrcTemplate[]
    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:
    tags ChassisProfileTag[]
    This complex property has following sub-properties:
    targetPlatform string
    The platform for which the chassis profile is applicable. It can either be a chassis that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* FIAttached - Chassis which are connected to a Fabric Interconnect that is managed by Intersight.
    type string
    Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
    userLabel string
    User label assigned to the chassis profile.
    versionContexts ChassisProfileVersionContext[]
    (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[ChassisProfileActionParamArgs]
    This complex property has following sub-properties:
    additional_properties str
    ancestors Sequence[ChassisProfileAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    assigned_chasses Sequence[ChassisProfileAssignedChassArgs]
    A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associated_chasses Sequence[ChassisProfileAssociatedChassArgs]
    (ReadOnly) A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    chassis_profile_id str
    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[ChassisProfileConfigChangeContextArgs]
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    config_change_details Sequence[ChassisProfileConfigChangeDetailArgs]
    (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
    config_changes Sequence[ChassisProfileConfigChangeArgs]
    (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    config_contexts Sequence[ChassisProfileConfigContextArgs]
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    config_results Sequence[ChassisProfileConfigResultArgs]
    (ReadOnly) A reference to a chassisConfigResult 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.
    iom_profiles Sequence[ChassisProfileIomProfileArgs]
    (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
    mod_time str
    (ReadOnly) The time when this managed object was last modified.
    moid str
    The unique identifier of this Managed Object instance.
    name str
    Name of the profile instance or profile template.
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations Sequence[ChassisProfileOrganizationArgs]
    A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    owners Sequence[str]
    (Array of schema.TypeString) -(ReadOnly)
    parents Sequence[ChassisProfileParentArgs]
    (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[ChassisProfilePermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policy_buckets Sequence[ChassisProfilePolicyBucketArgs]
    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[ChassisProfileRunningWorkflowArgs]
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    scheduled_actions Sequence[ChassisProfileScheduledActionArgs]
    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[ChassisProfileSrcTemplateArgs]
    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:
    tags Sequence[ChassisProfileTagArgs]
    This complex property has following sub-properties:
    target_platform str
    The platform for which the chassis profile is applicable. It can either be a chassis that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* FIAttached - Chassis which are connected to a Fabric Interconnect that is managed by Intersight.
    type str
    Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
    user_label str
    User label assigned to the chassis profile.
    version_contexts Sequence[ChassisProfileVersionContextArgs]
    (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:
    assignedChasses List<Property Map>
    A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associatedChasses List<Property Map>
    (ReadOnly) A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    chassisProfileId String
    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 chassisConfigChangeDetail resources. This complex property has following sub-properties:
    configChanges List<Property Map>
    (ReadOnly) Pending configuration changes at the summary level. Detail 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 chassisConfigResult 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.
    iomProfiles List<Property Map>
    (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the profile instance or profile template.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations List<Property Map>
    A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<Property Map>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    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:
    tags List<Property Map>
    This complex property has following sub-properties:
    targetPlatform String
    The platform for which the chassis profile is applicable. It can either be a chassis that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* FIAttached - Chassis which are connected to a Fabric Interconnect that is managed by Intersight.
    type String
    Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
    userLabel String
    User label assigned to the chassis profile.
    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 ChassisProfile 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 ChassisProfile Resource

    Get an existing ChassisProfile 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?: ChassisProfileState, opts?: CustomResourceOptions): ChassisProfile
    @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[ChassisProfileActionParamArgs]] = None,
            additional_properties: Optional[str] = None,
            ancestors: Optional[Sequence[ChassisProfileAncestorArgs]] = None,
            assigned_chasses: Optional[Sequence[ChassisProfileAssignedChassArgs]] = None,
            associated_chasses: Optional[Sequence[ChassisProfileAssociatedChassArgs]] = None,
            chassis_profile_id: Optional[str] = None,
            class_id: Optional[str] = None,
            config_change_contexts: Optional[Sequence[ChassisProfileConfigChangeContextArgs]] = None,
            config_change_details: Optional[Sequence[ChassisProfileConfigChangeDetailArgs]] = None,
            config_changes: Optional[Sequence[ChassisProfileConfigChangeArgs]] = None,
            config_contexts: Optional[Sequence[ChassisProfileConfigContextArgs]] = None,
            config_results: Optional[Sequence[ChassisProfileConfigResultArgs]] = None,
            create_time: Optional[str] = None,
            deployed_policies: Optional[Sequence[str]] = None,
            description: Optional[str] = None,
            domain_group_moid: Optional[str] = None,
            iom_profiles: Optional[Sequence[ChassisProfileIomProfileArgs]] = None,
            mod_time: Optional[str] = None,
            moid: Optional[str] = None,
            name: Optional[str] = None,
            object_type: Optional[str] = None,
            organizations: Optional[Sequence[ChassisProfileOrganizationArgs]] = None,
            owners: Optional[Sequence[str]] = None,
            parents: Optional[Sequence[ChassisProfileParentArgs]] = None,
            permission_resources: Optional[Sequence[ChassisProfilePermissionResourceArgs]] = None,
            policy_buckets: Optional[Sequence[ChassisProfilePolicyBucketArgs]] = None,
            removed_policies: Optional[Sequence[str]] = None,
            running_workflows: Optional[Sequence[ChassisProfileRunningWorkflowArgs]] = None,
            scheduled_actions: Optional[Sequence[ChassisProfileScheduledActionArgs]] = None,
            shared_scope: Optional[str] = None,
            src_templates: Optional[Sequence[ChassisProfileSrcTemplateArgs]] = None,
            tags: Optional[Sequence[ChassisProfileTagArgs]] = None,
            target_platform: Optional[str] = None,
            type: Optional[str] = None,
            user_label: Optional[str] = None,
            version_contexts: Optional[Sequence[ChassisProfileVersionContextArgs]] = None,
            wait_for_completion: Optional[bool] = None) -> ChassisProfile
    func GetChassisProfile(ctx *Context, name string, id IDInput, state *ChassisProfileState, opts ...ResourceOption) (*ChassisProfile, error)
    public static ChassisProfile Get(string name, Input<string> id, ChassisProfileState? state, CustomResourceOptions? opts = null)
    public static ChassisProfile get(String name, Output<String> id, ChassisProfileState state, CustomResourceOptions options)
    resources:  _:    type: intersight:ChassisProfile    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<ChassisProfileActionParam>
    This complex property has following sub-properties:
    AdditionalProperties string
    Ancestors List<ChassisProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AssignedChasses List<ChassisProfileAssignedChass>
    A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    AssociatedChasses List<ChassisProfileAssociatedChass>
    (ReadOnly) A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ChassisProfileId string
    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<ChassisProfileConfigChangeContext>
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    ConfigChangeDetails List<ChassisProfileConfigChangeDetail>
    (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
    ConfigChanges List<ChassisProfileConfigChange>
    (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    ConfigContexts List<ChassisProfileConfigContext>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    ConfigResults List<ChassisProfileConfigResult>
    (ReadOnly) A reference to a chassisConfigResult 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.
    IomProfiles List<ChassisProfileIomProfile>
    (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the profile instance or profile template.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations List<ChassisProfileOrganization>
    A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Owners List<string>
    (Array of schema.TypeString) -(ReadOnly)
    Parents List<ChassisProfileParent>
    (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<ChassisProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PolicyBuckets List<ChassisProfilePolicyBucket>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    RemovedPolicies List<string>
    (Array of schema.TypeString) -
    RunningWorkflows List<ChassisProfileRunningWorkflow>
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    ScheduledActions List<ChassisProfileScheduledAction>
    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<ChassisProfileSrcTemplate>
    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:
    Tags List<ChassisProfileTag>
    This complex property has following sub-properties:
    TargetPlatform string
    The platform for which the chassis profile is applicable. It can either be a chassis that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* FIAttached - Chassis which are connected to a Fabric Interconnect that is managed by Intersight.
    Type string
    Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
    UserLabel string
    User label assigned to the chassis profile.
    VersionContexts List<ChassisProfileVersionContext>
    (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 []ChassisProfileActionParamArgs
    This complex property has following sub-properties:
    AdditionalProperties string
    Ancestors []ChassisProfileAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AssignedChasses []ChassisProfileAssignedChassArgs
    A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    AssociatedChasses []ChassisProfileAssociatedChassArgs
    (ReadOnly) A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ChassisProfileId string
    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 []ChassisProfileConfigChangeContextArgs
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    ConfigChangeDetails []ChassisProfileConfigChangeDetailArgs
    (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
    ConfigChanges []ChassisProfileConfigChangeArgs
    (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    ConfigContexts []ChassisProfileConfigContextArgs
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    ConfigResults []ChassisProfileConfigResultArgs
    (ReadOnly) A reference to a chassisConfigResult 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.
    IomProfiles []ChassisProfileIomProfileArgs
    (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the profile instance or profile template.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations []ChassisProfileOrganizationArgs
    A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Owners []string
    (Array of schema.TypeString) -(ReadOnly)
    Parents []ChassisProfileParentArgs
    (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 []ChassisProfilePermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PolicyBuckets []ChassisProfilePolicyBucketArgs
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    RemovedPolicies []string
    (Array of schema.TypeString) -
    RunningWorkflows []ChassisProfileRunningWorkflowArgs
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    ScheduledActions []ChassisProfileScheduledActionArgs
    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 []ChassisProfileSrcTemplateArgs
    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:
    Tags []ChassisProfileTagArgs
    This complex property has following sub-properties:
    TargetPlatform string
    The platform for which the chassis profile is applicable. It can either be a chassis that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* FIAttached - Chassis which are connected to a Fabric Interconnect that is managed by Intersight.
    Type string
    Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
    UserLabel string
    User label assigned to the chassis profile.
    VersionContexts []ChassisProfileVersionContextArgs
    (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<ChassisProfileActionParam>
    This complex property has following sub-properties:
    additionalProperties String
    ancestors List<ChassisProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    assignedChasses List<ChassisProfileAssignedChass>
    A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associatedChasses List<ChassisProfileAssociatedChass>
    (ReadOnly) A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    chassisProfileId String
    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<ChassisProfileConfigChangeContext>
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    configChangeDetails List<ChassisProfileConfigChangeDetail>
    (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
    configChanges List<ChassisProfileConfigChange>
    (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    configContexts List<ChassisProfileConfigContext>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    configResults List<ChassisProfileConfigResult>
    (ReadOnly) A reference to a chassisConfigResult 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.
    iomProfiles List<ChassisProfileIomProfile>
    (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the profile instance or profile template.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations List<ChassisProfileOrganization>
    A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<ChassisProfileParent>
    (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<ChassisProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policyBuckets List<ChassisProfilePolicyBucket>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies List<String>
    (Array of schema.TypeString) -
    runningWorkflows List<ChassisProfileRunningWorkflow>
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    scheduledActions List<ChassisProfileScheduledAction>
    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<ChassisProfileSrcTemplate>
    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:
    tags List<ChassisProfileTag>
    This complex property has following sub-properties:
    targetPlatform String
    The platform for which the chassis profile is applicable. It can either be a chassis that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* FIAttached - Chassis which are connected to a Fabric Interconnect that is managed by Intersight.
    type String
    Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
    userLabel String
    User label assigned to the chassis profile.
    versionContexts List<ChassisProfileVersionContext>
    (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 ChassisProfileActionParam[]
    This complex property has following sub-properties:
    additionalProperties string
    ancestors ChassisProfileAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    assignedChasses ChassisProfileAssignedChass[]
    A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associatedChasses ChassisProfileAssociatedChass[]
    (ReadOnly) A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    chassisProfileId string
    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 ChassisProfileConfigChangeContext[]
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    configChangeDetails ChassisProfileConfigChangeDetail[]
    (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
    configChanges ChassisProfileConfigChange[]
    (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    configContexts ChassisProfileConfigContext[]
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    configResults ChassisProfileConfigResult[]
    (ReadOnly) A reference to a chassisConfigResult 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.
    iomProfiles ChassisProfileIomProfile[]
    (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    name string
    Name of the profile instance or profile template.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations ChassisProfileOrganization[]
    A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    owners string[]
    (Array of schema.TypeString) -(ReadOnly)
    parents ChassisProfileParent[]
    (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 ChassisProfilePermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policyBuckets ChassisProfilePolicyBucket[]
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies string[]
    (Array of schema.TypeString) -
    runningWorkflows ChassisProfileRunningWorkflow[]
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    scheduledActions ChassisProfileScheduledAction[]
    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 ChassisProfileSrcTemplate[]
    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:
    tags ChassisProfileTag[]
    This complex property has following sub-properties:
    targetPlatform string
    The platform for which the chassis profile is applicable. It can either be a chassis that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* FIAttached - Chassis which are connected to a Fabric Interconnect that is managed by Intersight.
    type string
    Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
    userLabel string
    User label assigned to the chassis profile.
    versionContexts ChassisProfileVersionContext[]
    (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[ChassisProfileActionParamArgs]
    This complex property has following sub-properties:
    additional_properties str
    ancestors Sequence[ChassisProfileAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    assigned_chasses Sequence[ChassisProfileAssignedChassArgs]
    A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associated_chasses Sequence[ChassisProfileAssociatedChassArgs]
    (ReadOnly) A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    chassis_profile_id str
    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[ChassisProfileConfigChangeContextArgs]
    (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
    config_change_details Sequence[ChassisProfileConfigChangeDetailArgs]
    (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
    config_changes Sequence[ChassisProfileConfigChangeArgs]
    (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
    config_contexts Sequence[ChassisProfileConfigContextArgs]
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    config_results Sequence[ChassisProfileConfigResultArgs]
    (ReadOnly) A reference to a chassisConfigResult 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.
    iom_profiles Sequence[ChassisProfileIomProfileArgs]
    (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
    mod_time str
    (ReadOnly) The time when this managed object was last modified.
    moid str
    The unique identifier of this Managed Object instance.
    name str
    Name of the profile instance or profile template.
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations Sequence[ChassisProfileOrganizationArgs]
    A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    owners Sequence[str]
    (Array of schema.TypeString) -(ReadOnly)
    parents Sequence[ChassisProfileParentArgs]
    (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[ChassisProfilePermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policy_buckets Sequence[ChassisProfilePolicyBucketArgs]
    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[ChassisProfileRunningWorkflowArgs]
    (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
    scheduled_actions Sequence[ChassisProfileScheduledActionArgs]
    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[ChassisProfileSrcTemplateArgs]
    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:
    tags Sequence[ChassisProfileTagArgs]
    This complex property has following sub-properties:
    target_platform str
    The platform for which the chassis profile is applicable. It can either be a chassis that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* FIAttached - Chassis which are connected to a Fabric Interconnect that is managed by Intersight.
    type str
    Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
    user_label str
    User label assigned to the chassis profile.
    version_contexts Sequence[ChassisProfileVersionContextArgs]
    (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:
    assignedChasses List<Property Map>
    A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    associatedChasses List<Property Map>
    (ReadOnly) A reference to a equipmentChassis resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    chassisProfileId String
    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 chassisConfigChangeDetail resources. This complex property has following sub-properties:
    configChanges List<Property Map>
    (ReadOnly) Pending configuration changes at the summary level. Detail 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 chassisConfigResult 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.
    iomProfiles List<Property Map>
    (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the profile instance or profile template.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations List<Property Map>
    A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<Property Map>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    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:
    tags List<Property Map>
    This complex property has following sub-properties:
    targetPlatform String
    The platform for which the chassis profile is applicable. It can either be a chassis that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* FIAttached - Chassis which are connected to a Fabric Interconnect that is managed by Intersight.
    type String
    Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
    userLabel String
    User label assigned to the chassis profile.
    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

    ChassisProfileActionParam, ChassisProfileActionParamArgs

    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.

    ChassisProfileAncestor, ChassisProfileAncestorArgs

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

    ChassisProfileAssignedChass, ChassisProfileAssignedChassArgs

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

    ChassisProfileAssociatedChass, ChassisProfileAssociatedChassArgs

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

    ChassisProfileConfigChange, ChassisProfileConfigChangeArgs

    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<ChassisProfileConfigChangePolicyDisruption>
    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 []ChassisProfileConfigChangePolicyDisruption
    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<ChassisProfileConfigChangePolicyDisruption>
    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 ChassisProfileConfigChangePolicyDisruption[]
    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[ChassisProfileConfigChangePolicyDisruption]
    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:

    ChassisProfileConfigChangeContext, ChassisProfileConfigChangeContextArgs

    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<ChassisProfileConfigChangeContextInitialConfigContext>
    (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 []ChassisProfileConfigChangeContextInitialConfigContext
    (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<ChassisProfileConfigChangeContextInitialConfigContext>
    (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 ChassisProfileConfigChangeContextInitialConfigContext[]
    (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[ChassisProfileConfigChangeContextInitialConfigContext]
    (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.

    ChassisProfileConfigChangeContextInitialConfigContext, ChassisProfileConfigChangeContextInitialConfigContextArgs

    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.

    ChassisProfileConfigChangeDetail, ChassisProfileConfigChangeDetailArgs

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

    ChassisProfileConfigChangePolicyDisruption, ChassisProfileConfigChangePolicyDisruptionArgs

    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) -

    ChassisProfileConfigContext, ChassisProfileConfigContextArgs

    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.

    ChassisProfileConfigResult, ChassisProfileConfigResultArgs

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

    ChassisProfileIomProfile, ChassisProfileIomProfileArgs

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

    ChassisProfileOrganization, ChassisProfileOrganizationArgs

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

    ChassisProfileParent, ChassisProfileParentArgs

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

    ChassisProfilePermissionResource, ChassisProfilePermissionResourceArgs

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

    ChassisProfilePolicyBucket, ChassisProfilePolicyBucketArgs

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

    ChassisProfileRunningWorkflow, ChassisProfileRunningWorkflowArgs

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

    ChassisProfileScheduledAction, ChassisProfileScheduledActionArgs

    Action string
    Name of the action to be performed on the profile.
    ActionQualifiers List<ChassisProfileScheduledActionActionQualifier>
    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 []ChassisProfileScheduledActionActionQualifier
    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<ChassisProfileScheduledActionActionQualifier>
    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 ChassisProfileScheduledActionActionQualifier[]
    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[ChassisProfileScheduledActionActionQualifier]
    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.

    ChassisProfileScheduledActionActionQualifier, ChassisProfileScheduledActionActionQualifierArgs

    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.

    ChassisProfileSrcTemplate, ChassisProfileSrcTemplateArgs

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

    ChassisProfileTag, ChassisProfileTagArgs

    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.

    ChassisProfileVersionContext, ChassisProfileVersionContextArgs

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

    ChassisProfileVersionContextInterestedMo, ChassisProfileVersionContextInterestedMoArgs

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

    ChassisProfileVersionContextRefMo, ChassisProfileVersionContextRefMoArgs

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

    $ pulumi import intersight:index/chassisProfile:ChassisProfile 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