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

intersight.ChassisProfile

Explore with Pulumi AI

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,
    }],
});
Copy
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"],
    }])
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := intersight.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
	})
}
Copy
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,
            },
        },
    });

});
Copy
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());

    }
}
Copy
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}
Copy

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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. String
The unique name of the resource.
args This property is required. 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",
                    },
                    ObjectType = "string",
                    PolicyName = "string",
                    PolicyPendingAction = "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",
            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,
});
Copy
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"),
					},
					ObjectType:          pulumi.String("string"),
					PolicyName:          pulumi.String("string"),
					PolicyPendingAction: 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"),
			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),
})
Copy
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")
            .objectType("string")
            .policyName("string")
            .policyPendingAction("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")
        .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());
Copy
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"],
            "object_type": "string",
            "policy_name": "string",
            "policy_pending_action": "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",
        "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)
Copy
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"],
            objectType: "string",
            policyName: "string",
            policyPendingAction: "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",
        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,
});
Copy
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
              objectType: string
              policyName: string
              policyPendingAction: 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
          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
Copy

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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
Action string
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
ActionParams List<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 This property is required. string
ClassId This property is required. string
Name This property is required. string
The action parameter identifier.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Value This property is required. string
The action parameter value.
AdditionalProperties This property is required. string
ClassId This property is required. string
Name This property is required. string
The action parameter identifier.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Value This property is required. string
The action parameter value.
additionalProperties This property is required. String
classId This property is required. String
name This property is required. String
The action parameter identifier.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. String
The action parameter value.
additionalProperties This property is required. string
classId This property is required. string
name This property is required. string
The action parameter identifier.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. string
The action parameter value.
additional_properties This property is required. str
class_id This property is required. str
name This property is required. str
The action parameter identifier.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. str
The action parameter value.
additionalProperties This property is required. String
classId This property is required. String
name This property is required. String
The action parameter identifier.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. String
The action parameter value.

ChassisProfileAncestor
, ChassisProfileAncestorArgs

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

ChassisProfileAssignedChass
, ChassisProfileAssignedChassArgs

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

ChassisProfileAssociatedChass
, ChassisProfileAssociatedChassArgs

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

ChassisProfileConfigChange
, ChassisProfileConfigChangeArgs

AdditionalProperties This property is required. string
Changes This property is required. List<string>
(Array of schema.TypeString) -
ClassId This property is required. string
Disruptions This property is required. List<string>
(Array of schema.TypeString) -
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
PolicyDisruptions This property is required. List<ChassisProfileConfigChangePolicyDisruption>
This complex property has following sub-properties:
AdditionalProperties This property is required. string
Changes This property is required. []string
(Array of schema.TypeString) -
ClassId This property is required. string
Disruptions This property is required. []string
(Array of schema.TypeString) -
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
PolicyDisruptions This property is required. []ChassisProfileConfigChangePolicyDisruption
This complex property has following sub-properties:
additionalProperties This property is required. String
changes This property is required. List<String>
(Array of schema.TypeString) -
classId This property is required. String
disruptions This property is required. List<String>
(Array of schema.TypeString) -
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
policyDisruptions This property is required. List<ChassisProfileConfigChangePolicyDisruption>
This complex property has following sub-properties:
additionalProperties This property is required. string
changes This property is required. string[]
(Array of schema.TypeString) -
classId This property is required. string
disruptions This property is required. string[]
(Array of schema.TypeString) -
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
policyDisruptions This property is required. ChassisProfileConfigChangePolicyDisruption[]
This complex property has following sub-properties:
additional_properties This property is required. str
changes This property is required. Sequence[str]
(Array of schema.TypeString) -
class_id This property is required. str
disruptions This property is required. Sequence[str]
(Array of schema.TypeString) -
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
policy_disruptions This property is required. Sequence[ChassisProfileConfigChangePolicyDisruption]
This complex property has following sub-properties:
additionalProperties This property is required. String
changes This property is required. List<String>
(Array of schema.TypeString) -
classId This property is required. String
disruptions This property is required. List<String>
(Array of schema.TypeString) -
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
policyDisruptions This property is required. List<Property Map>
This complex property has following sub-properties:

ChassisProfileConfigChangeContext
, ChassisProfileConfigChangeContextArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
ConfigChangeError This property is required. string
(ReadOnly) Indicates reason for failure state of configChangeState.
ConfigChangeState This property is required. 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 This property is required. 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 This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
AdditionalProperties This property is required. string
ClassId This property is required. string
ConfigChangeError This property is required. string
(ReadOnly) Indicates reason for failure state of configChangeState.
ConfigChangeState This property is required. 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 This property is required. []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 This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
additionalProperties This property is required. String
classId This property is required. String
configChangeError This property is required. String
(ReadOnly) Indicates reason for failure state of configChangeState.
configChangeState This property is required. 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 This property is required. 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 This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
additionalProperties This property is required. string
classId This property is required. string
configChangeError This property is required. string
(ReadOnly) Indicates reason for failure state of configChangeState.
configChangeState This property is required. 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 This property is required. 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 This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
additional_properties This property is required. str
class_id This property is required. str
config_change_error This property is required. str
(ReadOnly) Indicates reason for failure state of configChangeState.
config_change_state This property is required. 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 This property is required. 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 This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
additionalProperties This property is required. String
classId This property is required. String
configChangeError This property is required. String
(ReadOnly) Indicates reason for failure state of configChangeState.
configChangeState This property is required. 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 This property is required. 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 This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.

ChassisProfileConfigChangeContextInitialConfigContext
, ChassisProfileConfigChangeContextInitialConfigContextArgs

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

ChassisProfileConfigChangeDetail
, ChassisProfileConfigChangeDetailArgs

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

ChassisProfileConfigChangePolicyDisruption
, ChassisProfileConfigChangePolicyDisruptionArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Disruptions This property is required. List<string>
(Array of schema.TypeString) -
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
PolicyName This property is required. string
Name of the policy that, when modified, causes the disruption.
PolicyPendingAction This property is required. 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.
AdditionalProperties This property is required. string
ClassId This property is required. string
Disruptions This property is required. []string
(Array of schema.TypeString) -
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
PolicyName This property is required. string
Name of the policy that, when modified, causes the disruption.
PolicyPendingAction This property is required. 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.
additionalProperties This property is required. String
classId This property is required. String
disruptions This property is required. List<String>
(Array of schema.TypeString) -
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
policyName This property is required. String
Name of the policy that, when modified, causes the disruption.
policyPendingAction This property is required. 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.
additionalProperties This property is required. string
classId This property is required. string
disruptions This property is required. string[]
(Array of schema.TypeString) -
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
policyName This property is required. string
Name of the policy that, when modified, causes the disruption.
policyPendingAction This property is required. 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.
additional_properties This property is required. str
class_id This property is required. str
disruptions This property is required. Sequence[str]
(Array of schema.TypeString) -
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
policy_name This property is required. str
Name of the policy that, when modified, causes the disruption.
policy_pending_action This property is required. 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.
additionalProperties This property is required. String
classId This property is required. String
disruptions This property is required. List<String>
(Array of schema.TypeString) -
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
policyName This property is required. String
Name of the policy that, when modified, causes the disruption.
policyPendingAction This property is required. 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.

ChassisProfileConfigContext
, ChassisProfileConfigContextArgs

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

ChassisProfileConfigResult
, ChassisProfileConfigResultArgs

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

ChassisProfileIomProfile
, ChassisProfileIomProfileArgs

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

ChassisProfileOrganization
, ChassisProfileOrganizationArgs

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

ChassisProfileParent
, ChassisProfileParentArgs

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

ChassisProfilePermissionResource
, ChassisProfilePermissionResourceArgs

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

ChassisProfilePolicyBucket
, ChassisProfilePolicyBucketArgs

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

ChassisProfileRunningWorkflow
, ChassisProfileRunningWorkflowArgs

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

ChassisProfileScheduledAction
, ChassisProfileScheduledActionArgs

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

ChassisProfileSrcTemplate
, ChassisProfileSrcTemplateArgs

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

ChassisProfileTag
, ChassisProfileTagArgs

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

ChassisProfileVersionContext
, ChassisProfileVersionContextArgs

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

ChassisProfileVersionContextInterestedMo
, ChassisProfileVersionContextInterestedMoArgs

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

ChassisProfileVersionContextRefMo
, ChassisProfileVersionContextRefMoArgs

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

Import

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

$ pulumi import intersight:index/chassisProfile:ChassisProfile example 1234567890987654321abcde
Copy

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

Package Details

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