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,
}],
});
import pulumi
import pulumi_intersight as intersight
chassis_profile1 = intersight.ChassisProfile("chassisProfile1",
description="chassis profile",
type="instance",
target_platform="FIAttached",
action="Validate",
config_contexts=[{
"object_type": "policy.ConfigContext",
"control_action": "deploy",
"error_state": "Validation-error",
}],
organizations=[{
"object_type": "organization.Organization",
"moid": var["organization"],
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := intersight.NewChassisProfile(ctx, "chassisProfile1", &intersight.ChassisProfileArgs{
Description: pulumi.String("chassis profile"),
Type: pulumi.String("instance"),
TargetPlatform: pulumi.String("FIAttached"),
Action: pulumi.String("Validate"),
ConfigContexts: intersight.ChassisProfileConfigContextArray{
&intersight.ChassisProfileConfigContextArgs{
ObjectType: pulumi.String("policy.ConfigContext"),
ControlAction: pulumi.String("deploy"),
ErrorState: pulumi.String("Validation-error"),
},
},
Organizations: intersight.ChassisProfileOrganizationArray{
&intersight.ChassisProfileOrganizationArgs{
ObjectType: pulumi.String("organization.Organization"),
Moid: pulumi.Any(_var.Organization),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() =>
{
var chassisProfile1 = new Intersight.ChassisProfile("chassisProfile1", new()
{
Description = "chassis profile",
Type = "instance",
TargetPlatform = "FIAttached",
Action = "Validate",
ConfigContexts = new[]
{
new Intersight.Inputs.ChassisProfileConfigContextArgs
{
ObjectType = "policy.ConfigContext",
ControlAction = "deploy",
ErrorState = "Validation-error",
},
},
Organizations = new[]
{
new Intersight.Inputs.ChassisProfileOrganizationArgs
{
ObjectType = "organization.Organization",
Moid = @var.Organization,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.ChassisProfile;
import com.pulumi.intersight.ChassisProfileArgs;
import com.pulumi.intersight.inputs.ChassisProfileConfigContextArgs;
import com.pulumi.intersight.inputs.ChassisProfileOrganizationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var chassisProfile1 = new ChassisProfile("chassisProfile1", ChassisProfileArgs.builder()
.description("chassis profile")
.type("instance")
.targetPlatform("FIAttached")
.action("Validate")
.configContexts(ChassisProfileConfigContextArgs.builder()
.objectType("policy.ConfigContext")
.controlAction("deploy")
.errorState("Validation-error")
.build())
.organizations(ChassisProfileOrganizationArgs.builder()
.objectType("organization.Organization")
.moid(var_.organization())
.build())
.build());
}
}
resources:
chassisProfile1:
type: intersight:ChassisProfile
properties:
description: chassis profile
type: instance
targetPlatform: FIAttached
action: Validate
configContexts:
- objectType: policy.ConfigContext
controlAction: deploy
errorState: Validation-error
organizations:
- objectType: organization.Organization
moid: ${var.organization}
Create ChassisProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ChassisProfile(name: string, args?: ChassisProfileArgs, opts?: CustomResourceOptions);
@overload
def ChassisProfile(resource_name: str,
args: Optional[ChassisProfileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ChassisProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
action: Optional[str] = None,
action_params: Optional[Sequence[ChassisProfileActionParamArgs]] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[ChassisProfileAncestorArgs]] = None,
assigned_chasses: Optional[Sequence[ChassisProfileAssignedChassArgs]] = None,
associated_chasses: Optional[Sequence[ChassisProfileAssociatedChassArgs]] = None,
chassis_profile_id: Optional[str] = None,
class_id: Optional[str] = None,
config_change_contexts: Optional[Sequence[ChassisProfileConfigChangeContextArgs]] = None,
config_change_details: Optional[Sequence[ChassisProfileConfigChangeDetailArgs]] = None,
config_changes: Optional[Sequence[ChassisProfileConfigChangeArgs]] = None,
config_contexts: Optional[Sequence[ChassisProfileConfigContextArgs]] = None,
config_results: Optional[Sequence[ChassisProfileConfigResultArgs]] = None,
create_time: Optional[str] = None,
deployed_policies: Optional[Sequence[str]] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
iom_profiles: Optional[Sequence[ChassisProfileIomProfileArgs]] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
object_type: Optional[str] = None,
organizations: Optional[Sequence[ChassisProfileOrganizationArgs]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[ChassisProfileParentArgs]] = None,
permission_resources: Optional[Sequence[ChassisProfilePermissionResourceArgs]] = None,
policy_buckets: Optional[Sequence[ChassisProfilePolicyBucketArgs]] = None,
removed_policies: Optional[Sequence[str]] = None,
running_workflows: Optional[Sequence[ChassisProfileRunningWorkflowArgs]] = None,
scheduled_actions: Optional[Sequence[ChassisProfileScheduledActionArgs]] = None,
shared_scope: Optional[str] = None,
src_templates: Optional[Sequence[ChassisProfileSrcTemplateArgs]] = None,
tags: Optional[Sequence[ChassisProfileTagArgs]] = None,
target_platform: Optional[str] = None,
type: Optional[str] = None,
user_label: Optional[str] = None,
version_contexts: Optional[Sequence[ChassisProfileVersionContextArgs]] = None,
wait_for_completion: Optional[bool] = None)
func NewChassisProfile(ctx *Context, name string, args *ChassisProfileArgs, opts ...ResourceOption) (*ChassisProfile, error)
public ChassisProfile(string name, ChassisProfileArgs? args = null, CustomResourceOptions? opts = null)
public ChassisProfile(String name, ChassisProfileArgs args)
public ChassisProfile(String name, ChassisProfileArgs args, CustomResourceOptions options)
type: intersight:ChassisProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ChassisProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ChassisProfileArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ChassisProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ChassisProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ChassisProfileArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var chassisProfileResource = new Intersight.ChassisProfile("chassisProfileResource", new()
{
AccountMoid = "string",
Action = "string",
ActionParams = new[]
{
new Intersight.Inputs.ChassisProfileActionParamArgs
{
AdditionalProperties = "string",
ClassId = "string",
Name = "string",
ObjectType = "string",
Value = "string",
},
},
AdditionalProperties = "string",
Ancestors = new[]
{
new Intersight.Inputs.ChassisProfileAncestorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
AssignedChasses = new[]
{
new Intersight.Inputs.ChassisProfileAssignedChassArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
AssociatedChasses = new[]
{
new Intersight.Inputs.ChassisProfileAssociatedChassArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ChassisProfileId = "string",
ClassId = "string",
ConfigChangeContexts = new[]
{
new Intersight.Inputs.ChassisProfileConfigChangeContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
ConfigChangeError = "string",
ConfigChangeState = "string",
InitialConfigContexts = new[]
{
new Intersight.Inputs.ChassisProfileConfigChangeContextInitialConfigContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
ConfigState = "string",
ConfigStateSummary = "string",
ConfigType = "string",
ControlAction = "string",
ErrorState = "string",
InconsistencyReasons = new[]
{
"string",
},
ObjectType = "string",
OperState = "string",
},
},
ObjectType = "string",
},
},
ConfigChangeDetails = new[]
{
new Intersight.Inputs.ChassisProfileConfigChangeDetailArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ConfigChanges = new[]
{
new Intersight.Inputs.ChassisProfileConfigChangeArgs
{
AdditionalProperties = "string",
Changes = new[]
{
"string",
},
ClassId = "string",
Disruptions = new[]
{
"string",
},
ObjectType = "string",
PolicyDisruptions = new[]
{
new Intersight.Inputs.ChassisProfileConfigChangePolicyDisruptionArgs
{
AdditionalProperties = "string",
ClassId = "string",
Disruptions = new[]
{
"string",
},
IsOnlyRequiredByOtherPolicies = false,
ObjectType = "string",
PolicyName = "string",
PolicyPendingAction = "string",
RequiredByPolicies = new[]
{
"string",
},
},
},
},
},
ConfigContexts = new[]
{
new Intersight.Inputs.ChassisProfileConfigContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
ConfigState = "string",
ConfigStateSummary = "string",
ConfigType = "string",
ControlAction = "string",
ErrorState = "string",
InconsistencyReasons = new[]
{
"string",
},
ObjectType = "string",
OperState = "string",
},
},
ConfigResults = new[]
{
new Intersight.Inputs.ChassisProfileConfigResultArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
CreateTime = "string",
DeployedPolicies = new[]
{
"string",
},
Description = "string",
DomainGroupMoid = "string",
IomProfiles = new[]
{
new Intersight.Inputs.ChassisProfileIomProfileArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ModTime = "string",
Moid = "string",
Name = "string",
ObjectType = "string",
Organizations = new[]
{
new Intersight.Inputs.ChassisProfileOrganizationArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Owners = new[]
{
"string",
},
Parents = new[]
{
new Intersight.Inputs.ChassisProfileParentArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PermissionResources = new[]
{
new Intersight.Inputs.ChassisProfilePermissionResourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PolicyBuckets = new[]
{
new Intersight.Inputs.ChassisProfilePolicyBucketArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
RemovedPolicies = new[]
{
"string",
},
RunningWorkflows = new[]
{
new Intersight.Inputs.ChassisProfileRunningWorkflowArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ScheduledActions = new[]
{
new Intersight.Inputs.ChassisProfileScheduledActionArgs
{
Action = "string",
ActionQualifiers = new[]
{
new Intersight.Inputs.ChassisProfileScheduledActionActionQualifierArgs
{
AdditionalProperties = "string",
ClassId = "string",
ObjectType = "string",
},
},
AdditionalProperties = "string",
ClassId = "string",
ObjectType = "string",
ProceedOnReboot = false,
},
},
SharedScope = "string",
SrcTemplates = new[]
{
new Intersight.Inputs.ChassisProfileSrcTemplateArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Tags = new[]
{
new Intersight.Inputs.ChassisProfileTagArgs
{
AdditionalProperties = "string",
Key = "string",
Value = "string",
},
},
TargetPlatform = "string",
Type = "string",
UserLabel = "string",
VersionContexts = new[]
{
new Intersight.Inputs.ChassisProfileVersionContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
InterestedMos = new[]
{
new Intersight.Inputs.ChassisProfileVersionContextInterestedMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
MarkedForDeletion = false,
NrVersion = "string",
ObjectType = "string",
RefMos = new[]
{
new Intersight.Inputs.ChassisProfileVersionContextRefMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Timestamp = "string",
VersionType = "string",
},
},
WaitForCompletion = false,
});
example, err := intersight.NewChassisProfile(ctx, "chassisProfileResource", &intersight.ChassisProfileArgs{
AccountMoid: pulumi.String("string"),
Action: pulumi.String("string"),
ActionParams: intersight.ChassisProfileActionParamArray{
&intersight.ChassisProfileActionParamArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
AdditionalProperties: pulumi.String("string"),
Ancestors: intersight.ChassisProfileAncestorArray{
&intersight.ChassisProfileAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
AssignedChasses: intersight.ChassisProfileAssignedChassArray{
&intersight.ChassisProfileAssignedChassArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
AssociatedChasses: intersight.ChassisProfileAssociatedChassArray{
&intersight.ChassisProfileAssociatedChassArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ChassisProfileId: pulumi.String("string"),
ClassId: pulumi.String("string"),
ConfigChangeContexts: intersight.ChassisProfileConfigChangeContextArray{
&intersight.ChassisProfileConfigChangeContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ConfigChangeError: pulumi.String("string"),
ConfigChangeState: pulumi.String("string"),
InitialConfigContexts: intersight.ChassisProfileConfigChangeContextInitialConfigContextArray{
&intersight.ChassisProfileConfigChangeContextInitialConfigContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ConfigState: pulumi.String("string"),
ConfigStateSummary: pulumi.String("string"),
ConfigType: pulumi.String("string"),
ControlAction: pulumi.String("string"),
ErrorState: pulumi.String("string"),
InconsistencyReasons: pulumi.StringArray{
pulumi.String("string"),
},
ObjectType: pulumi.String("string"),
OperState: pulumi.String("string"),
},
},
ObjectType: pulumi.String("string"),
},
},
ConfigChangeDetails: intersight.ChassisProfileConfigChangeDetailArray{
&intersight.ChassisProfileConfigChangeDetailArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ConfigChanges: intersight.ChassisProfileConfigChangeArray{
&intersight.ChassisProfileConfigChangeArgs{
AdditionalProperties: pulumi.String("string"),
Changes: pulumi.StringArray{
pulumi.String("string"),
},
ClassId: pulumi.String("string"),
Disruptions: pulumi.StringArray{
pulumi.String("string"),
},
ObjectType: pulumi.String("string"),
PolicyDisruptions: intersight.ChassisProfileConfigChangePolicyDisruptionArray{
&intersight.ChassisProfileConfigChangePolicyDisruptionArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Disruptions: pulumi.StringArray{
pulumi.String("string"),
},
IsOnlyRequiredByOtherPolicies: pulumi.Bool(false),
ObjectType: pulumi.String("string"),
PolicyName: pulumi.String("string"),
PolicyPendingAction: pulumi.String("string"),
RequiredByPolicies: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
ConfigContexts: intersight.ChassisProfileConfigContextArray{
&intersight.ChassisProfileConfigContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ConfigState: pulumi.String("string"),
ConfigStateSummary: pulumi.String("string"),
ConfigType: pulumi.String("string"),
ControlAction: pulumi.String("string"),
ErrorState: pulumi.String("string"),
InconsistencyReasons: pulumi.StringArray{
pulumi.String("string"),
},
ObjectType: pulumi.String("string"),
OperState: pulumi.String("string"),
},
},
ConfigResults: intersight.ChassisProfileConfigResultArray{
&intersight.ChassisProfileConfigResultArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
CreateTime: pulumi.String("string"),
DeployedPolicies: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
IomProfiles: intersight.ChassisProfileIomProfileArray{
&intersight.ChassisProfileIomProfileArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ModTime: pulumi.String("string"),
Moid: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Organizations: intersight.ChassisProfileOrganizationArray{
&intersight.ChassisProfileOrganizationArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Owners: pulumi.StringArray{
pulumi.String("string"),
},
Parents: intersight.ChassisProfileParentArray{
&intersight.ChassisProfileParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: intersight.ChassisProfilePermissionResourceArray{
&intersight.ChassisProfilePermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PolicyBuckets: intersight.ChassisProfilePolicyBucketArray{
&intersight.ChassisProfilePolicyBucketArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
RemovedPolicies: pulumi.StringArray{
pulumi.String("string"),
},
RunningWorkflows: intersight.ChassisProfileRunningWorkflowArray{
&intersight.ChassisProfileRunningWorkflowArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ScheduledActions: intersight.ChassisProfileScheduledActionArray{
&intersight.ChassisProfileScheduledActionArgs{
Action: pulumi.String("string"),
ActionQualifiers: intersight.ChassisProfileScheduledActionActionQualifierArray{
&intersight.ChassisProfileScheduledActionActionQualifierArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ObjectType: pulumi.String("string"),
},
},
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ObjectType: pulumi.String("string"),
ProceedOnReboot: pulumi.Bool(false),
},
},
SharedScope: pulumi.String("string"),
SrcTemplates: intersight.ChassisProfileSrcTemplateArray{
&intersight.ChassisProfileSrcTemplateArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Tags: intersight.ChassisProfileTagArray{
&intersight.ChassisProfileTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TargetPlatform: pulumi.String("string"),
Type: pulumi.String("string"),
UserLabel: pulumi.String("string"),
VersionContexts: intersight.ChassisProfileVersionContextArray{
&intersight.ChassisProfileVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: intersight.ChassisProfileVersionContextInterestedMoArray{
&intersight.ChassisProfileVersionContextInterestedMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
MarkedForDeletion: pulumi.Bool(false),
NrVersion: pulumi.String("string"),
ObjectType: pulumi.String("string"),
RefMos: intersight.ChassisProfileVersionContextRefMoArray{
&intersight.ChassisProfileVersionContextRefMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Timestamp: pulumi.String("string"),
VersionType: pulumi.String("string"),
},
},
WaitForCompletion: pulumi.Bool(false),
})
var chassisProfileResource = new ChassisProfile("chassisProfileResource", ChassisProfileArgs.builder()
.accountMoid("string")
.action("string")
.actionParams(ChassisProfileActionParamArgs.builder()
.additionalProperties("string")
.classId("string")
.name("string")
.objectType("string")
.value("string")
.build())
.additionalProperties("string")
.ancestors(ChassisProfileAncestorArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.assignedChasses(ChassisProfileAssignedChassArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.associatedChasses(ChassisProfileAssociatedChassArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.chassisProfileId("string")
.classId("string")
.configChangeContexts(ChassisProfileConfigChangeContextArgs.builder()
.additionalProperties("string")
.classId("string")
.configChangeError("string")
.configChangeState("string")
.initialConfigContexts(ChassisProfileConfigChangeContextInitialConfigContextArgs.builder()
.additionalProperties("string")
.classId("string")
.configState("string")
.configStateSummary("string")
.configType("string")
.controlAction("string")
.errorState("string")
.inconsistencyReasons("string")
.objectType("string")
.operState("string")
.build())
.objectType("string")
.build())
.configChangeDetails(ChassisProfileConfigChangeDetailArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.configChanges(ChassisProfileConfigChangeArgs.builder()
.additionalProperties("string")
.changes("string")
.classId("string")
.disruptions("string")
.objectType("string")
.policyDisruptions(ChassisProfileConfigChangePolicyDisruptionArgs.builder()
.additionalProperties("string")
.classId("string")
.disruptions("string")
.isOnlyRequiredByOtherPolicies(false)
.objectType("string")
.policyName("string")
.policyPendingAction("string")
.requiredByPolicies("string")
.build())
.build())
.configContexts(ChassisProfileConfigContextArgs.builder()
.additionalProperties("string")
.classId("string")
.configState("string")
.configStateSummary("string")
.configType("string")
.controlAction("string")
.errorState("string")
.inconsistencyReasons("string")
.objectType("string")
.operState("string")
.build())
.configResults(ChassisProfileConfigResultArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.createTime("string")
.deployedPolicies("string")
.description("string")
.domainGroupMoid("string")
.iomProfiles(ChassisProfileIomProfileArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.modTime("string")
.moid("string")
.name("string")
.objectType("string")
.organizations(ChassisProfileOrganizationArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.owners("string")
.parents(ChassisProfileParentArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.permissionResources(ChassisProfilePermissionResourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.policyBuckets(ChassisProfilePolicyBucketArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.removedPolicies("string")
.runningWorkflows(ChassisProfileRunningWorkflowArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.scheduledActions(ChassisProfileScheduledActionArgs.builder()
.action("string")
.actionQualifiers(ChassisProfileScheduledActionActionQualifierArgs.builder()
.additionalProperties("string")
.classId("string")
.objectType("string")
.build())
.additionalProperties("string")
.classId("string")
.objectType("string")
.proceedOnReboot(false)
.build())
.sharedScope("string")
.srcTemplates(ChassisProfileSrcTemplateArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.tags(ChassisProfileTagArgs.builder()
.additionalProperties("string")
.key("string")
.value("string")
.build())
.targetPlatform("string")
.type("string")
.userLabel("string")
.versionContexts(ChassisProfileVersionContextArgs.builder()
.additionalProperties("string")
.classId("string")
.interestedMos(ChassisProfileVersionContextInterestedMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.markedForDeletion(false)
.nrVersion("string")
.objectType("string")
.refMos(ChassisProfileVersionContextRefMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.timestamp("string")
.versionType("string")
.build())
.waitForCompletion(false)
.build());
chassis_profile_resource = intersight.ChassisProfile("chassisProfileResource",
account_moid="string",
action="string",
action_params=[{
"additional_properties": "string",
"class_id": "string",
"name": "string",
"object_type": "string",
"value": "string",
}],
additional_properties="string",
ancestors=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
assigned_chasses=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
associated_chasses=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
chassis_profile_id="string",
class_id="string",
config_change_contexts=[{
"additional_properties": "string",
"class_id": "string",
"config_change_error": "string",
"config_change_state": "string",
"initial_config_contexts": [{
"additional_properties": "string",
"class_id": "string",
"config_state": "string",
"config_state_summary": "string",
"config_type": "string",
"control_action": "string",
"error_state": "string",
"inconsistency_reasons": ["string"],
"object_type": "string",
"oper_state": "string",
}],
"object_type": "string",
}],
config_change_details=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
config_changes=[{
"additional_properties": "string",
"changes": ["string"],
"class_id": "string",
"disruptions": ["string"],
"object_type": "string",
"policy_disruptions": [{
"additional_properties": "string",
"class_id": "string",
"disruptions": ["string"],
"is_only_required_by_other_policies": False,
"object_type": "string",
"policy_name": "string",
"policy_pending_action": "string",
"required_by_policies": ["string"],
}],
}],
config_contexts=[{
"additional_properties": "string",
"class_id": "string",
"config_state": "string",
"config_state_summary": "string",
"config_type": "string",
"control_action": "string",
"error_state": "string",
"inconsistency_reasons": ["string"],
"object_type": "string",
"oper_state": "string",
}],
config_results=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
create_time="string",
deployed_policies=["string"],
description="string",
domain_group_moid="string",
iom_profiles=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
mod_time="string",
moid="string",
name="string",
object_type="string",
organizations=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
owners=["string"],
parents=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
permission_resources=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
policy_buckets=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
removed_policies=["string"],
running_workflows=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
scheduled_actions=[{
"action": "string",
"action_qualifiers": [{
"additional_properties": "string",
"class_id": "string",
"object_type": "string",
}],
"additional_properties": "string",
"class_id": "string",
"object_type": "string",
"proceed_on_reboot": False,
}],
shared_scope="string",
src_templates=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
tags=[{
"additional_properties": "string",
"key": "string",
"value": "string",
}],
target_platform="string",
type="string",
user_label="string",
version_contexts=[{
"additional_properties": "string",
"class_id": "string",
"interested_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"marked_for_deletion": False,
"nr_version": "string",
"object_type": "string",
"ref_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"timestamp": "string",
"version_type": "string",
}],
wait_for_completion=False)
const chassisProfileResource = new intersight.ChassisProfile("chassisProfileResource", {
accountMoid: "string",
action: "string",
actionParams: [{
additionalProperties: "string",
classId: "string",
name: "string",
objectType: "string",
value: "string",
}],
additionalProperties: "string",
ancestors: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
assignedChasses: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
associatedChasses: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
chassisProfileId: "string",
classId: "string",
configChangeContexts: [{
additionalProperties: "string",
classId: "string",
configChangeError: "string",
configChangeState: "string",
initialConfigContexts: [{
additionalProperties: "string",
classId: "string",
configState: "string",
configStateSummary: "string",
configType: "string",
controlAction: "string",
errorState: "string",
inconsistencyReasons: ["string"],
objectType: "string",
operState: "string",
}],
objectType: "string",
}],
configChangeDetails: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
configChanges: [{
additionalProperties: "string",
changes: ["string"],
classId: "string",
disruptions: ["string"],
objectType: "string",
policyDisruptions: [{
additionalProperties: "string",
classId: "string",
disruptions: ["string"],
isOnlyRequiredByOtherPolicies: false,
objectType: "string",
policyName: "string",
policyPendingAction: "string",
requiredByPolicies: ["string"],
}],
}],
configContexts: [{
additionalProperties: "string",
classId: "string",
configState: "string",
configStateSummary: "string",
configType: "string",
controlAction: "string",
errorState: "string",
inconsistencyReasons: ["string"],
objectType: "string",
operState: "string",
}],
configResults: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
createTime: "string",
deployedPolicies: ["string"],
description: "string",
domainGroupMoid: "string",
iomProfiles: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
modTime: "string",
moid: "string",
name: "string",
objectType: "string",
organizations: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
owners: ["string"],
parents: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
permissionResources: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
policyBuckets: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
removedPolicies: ["string"],
runningWorkflows: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
scheduledActions: [{
action: "string",
actionQualifiers: [{
additionalProperties: "string",
classId: "string",
objectType: "string",
}],
additionalProperties: "string",
classId: "string",
objectType: "string",
proceedOnReboot: false,
}],
sharedScope: "string",
srcTemplates: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
tags: [{
additionalProperties: "string",
key: "string",
value: "string",
}],
targetPlatform: "string",
type: "string",
userLabel: "string",
versionContexts: [{
additionalProperties: "string",
classId: "string",
interestedMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
markedForDeletion: false,
nrVersion: "string",
objectType: "string",
refMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
timestamp: "string",
versionType: "string",
}],
waitForCompletion: false,
});
type: intersight:ChassisProfile
properties:
accountMoid: string
action: string
actionParams:
- additionalProperties: string
classId: string
name: string
objectType: string
value: string
additionalProperties: string
ancestors:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
assignedChasses:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
associatedChasses:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
chassisProfileId: string
classId: string
configChangeContexts:
- additionalProperties: string
classId: string
configChangeError: string
configChangeState: string
initialConfigContexts:
- additionalProperties: string
classId: string
configState: string
configStateSummary: string
configType: string
controlAction: string
errorState: string
inconsistencyReasons:
- string
objectType: string
operState: string
objectType: string
configChangeDetails:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
configChanges:
- additionalProperties: string
changes:
- string
classId: string
disruptions:
- string
objectType: string
policyDisruptions:
- additionalProperties: string
classId: string
disruptions:
- string
isOnlyRequiredByOtherPolicies: false
objectType: string
policyName: string
policyPendingAction: string
requiredByPolicies:
- string
configContexts:
- additionalProperties: string
classId: string
configState: string
configStateSummary: string
configType: string
controlAction: string
errorState: string
inconsistencyReasons:
- string
objectType: string
operState: string
configResults:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
createTime: string
deployedPolicies:
- string
description: string
domainGroupMoid: string
iomProfiles:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
modTime: string
moid: string
name: string
objectType: string
organizations:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
owners:
- string
parents:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
permissionResources:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
policyBuckets:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
removedPolicies:
- string
runningWorkflows:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
scheduledActions:
- action: string
actionQualifiers:
- additionalProperties: string
classId: string
objectType: string
additionalProperties: string
classId: string
objectType: string
proceedOnReboot: false
sharedScope: string
srcTemplates:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
tags:
- additionalProperties: string
key: string
value: string
targetPlatform: string
type: string
userLabel: string
versionContexts:
- additionalProperties: string
classId: string
interestedMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
markedForDeletion: false
nrVersion: string
objectType: string
refMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
timestamp: string
versionType: string
waitForCompletion: false
ChassisProfile Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ChassisProfile resource accepts the following input properties:
- Account
Moid 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.
- Action
Params List<ChassisProfile Action Param> - This complex property has following sub-properties:
- Additional
Properties string - Ancestors
List<Chassis
Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned
Chasses List<ChassisProfile Assigned Chass> - 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 List<ChassisProfile Associated Chass> - (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 stringId - Class
Id 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.
- Config
Change List<ChassisContexts Profile Config Change Context> - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- Config
Change List<ChassisDetails Profile Config Change Detail> - (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
- Config
Changes List<ChassisProfile Config Change> - (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 List<ChassisProfile Config Context> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- Config
Results List<ChassisProfile Config Result> - (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 string - (ReadOnly) The time when this managed object was created.
- Deployed
Policies List<string> - (Array of schema.TypeString) -
- Description string
- Description of the profile.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Iom
Profiles List<ChassisProfile Iom Profile> - (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
- Mod
Time 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Chassis
Profile Organization> - 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<Chassis
Profile Parent> - (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 List<ChassisProfile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Policy
Buckets List<ChassisProfile Policy Bucket> - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- Removed
Policies List<string> - (Array of schema.TypeString) -
- Running
Workflows List<ChassisProfile Running Workflow> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- Scheduled
Actions List<ChassisProfile Scheduled Action> - This complex property has following sub-properties:
- 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.
- Src
Templates List<ChassisProfile Src Template> - 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:
- List<Chassis
Profile Tag> - This complex property has following sub-properties:
- Target
Platform 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. - User
Label string - User label assigned to the chassis profile.
- Version
Contexts List<ChassisProfile Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Wait
For boolCompletion - This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- Account
Moid 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.
- Action
Params []ChassisProfile Action Param Args - This complex property has following sub-properties:
- Additional
Properties string - Ancestors
[]Chassis
Profile Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned
Chasses []ChassisProfile Assigned Chass Args - 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 []ChassisProfile Associated Chass Args - (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 stringId - Class
Id 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.
- Config
Change []ChassisContexts Profile Config Change Context Args - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- Config
Change []ChassisDetails Profile Config Change Detail Args - (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
- Config
Changes []ChassisProfile Config Change Args - (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 []ChassisProfile Config Context Args - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- Config
Results []ChassisProfile Config Result Args - (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 string - (ReadOnly) The time when this managed object was created.
- Deployed
Policies []string - (Array of schema.TypeString) -
- Description string
- Description of the profile.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Iom
Profiles []ChassisProfile Iom Profile Args - (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
- Mod
Time 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Chassis
Profile Organization Args - 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
[]Chassis
Profile Parent Args - (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 []ChassisProfile Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Policy
Buckets []ChassisProfile Policy Bucket Args - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- Removed
Policies []string - (Array of schema.TypeString) -
- Running
Workflows []ChassisProfile Running Workflow Args - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- Scheduled
Actions []ChassisProfile Scheduled Action Args - This complex property has following sub-properties:
- 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.
- Src
Templates []ChassisProfile Src Template Args - 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:
- []Chassis
Profile Tag Args - This complex property has following sub-properties:
- Target
Platform 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. - User
Label string - User label assigned to the chassis profile.
- Version
Contexts []ChassisProfile Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Wait
For boolCompletion - This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- account
Moid 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.
- action
Params List<ChassisProfile Action Param> - This complex property has following sub-properties:
- additional
Properties String - ancestors
List<Chassis
Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Chasses List<ChassisProfile Assigned Chass> - 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 List<ChassisProfile Associated Chass> - (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 StringId - class
Id 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.
- config
Change List<ChassisContexts Profile Config Change Context> - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- config
Change List<ChassisDetails Profile Config Change Detail> - (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes List<ChassisProfile Config Change> - (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 List<ChassisProfile Config Context> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results List<ChassisProfile Config Result> - (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 String - (ReadOnly) The time when this managed object was created.
- deployed
Policies List<String> - (Array of schema.TypeString) -
- description String
- Description of the profile.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- iom
Profiles List<ChassisProfile Iom Profile> - (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
- mod
Time 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Chassis
Profile Organization> - 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<Chassis
Profile Parent> - (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 List<ChassisProfile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- policy
Buckets List<ChassisProfile Policy Bucket> - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removed
Policies List<String> - (Array of schema.TypeString) -
- running
Workflows List<ChassisProfile Running Workflow> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions List<ChassisProfile Scheduled Action> - This complex property has following sub-properties:
- 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.
- src
Templates List<ChassisProfile Src Template> - 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:
- List<Chassis
Profile Tag> - This complex property has following sub-properties:
- target
Platform 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. - user
Label String - User label assigned to the chassis profile.
- version
Contexts List<ChassisProfile Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait
For BooleanCompletion - This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- account
Moid 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.
- action
Params ChassisProfile Action Param[] - This complex property has following sub-properties:
- additional
Properties string - ancestors
Chassis
Profile Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Chasses ChassisProfile Assigned Chass[] - 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 ChassisProfile Associated Chass[] - (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 stringId - class
Id 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.
- config
Change ChassisContexts Profile Config Change Context[] - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- config
Change ChassisDetails Profile Config Change Detail[] - (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes ChassisProfile Config Change[] - (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 ChassisProfile Config Context[] - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results ChassisProfile Config Result[] - (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 string - (ReadOnly) The time when this managed object was created.
- deployed
Policies string[] - (Array of schema.TypeString) -
- description string
- Description of the profile.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- iom
Profiles ChassisProfile Iom Profile[] - (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
- mod
Time 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.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Chassis
Profile Organization[] - 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
Chassis
Profile Parent[] - (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 ChassisProfile Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- policy
Buckets ChassisProfile Policy Bucket[] - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removed
Policies string[] - (Array of schema.TypeString) -
- running
Workflows ChassisProfile Running Workflow[] - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions ChassisProfile Scheduled Action[] - This complex property has following sub-properties:
- 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.
- src
Templates ChassisProfile Src Template[] - 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:
- Chassis
Profile Tag[] - This complex property has following sub-properties:
- target
Platform 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. - user
Label string - User label assigned to the chassis profile.
- version
Contexts ChassisProfile Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait
For booleanCompletion - 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[ChassisProfile Action Param Args] - This complex property has following sub-properties:
- additional_
properties str - ancestors
Sequence[Chassis
Profile Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned_
chasses Sequence[ChassisProfile Assigned Chass Args] - 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[ChassisProfile Associated Chass Args] - (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_ strid - 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_ Sequence[Chassiscontexts Profile Config Change Context Args] - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- config_
change_ Sequence[Chassisdetails Profile Config Change Detail Args] - (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
- config_
changes Sequence[ChassisProfile Config Change Args] - (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[ChassisProfile Config Context Args] - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config_
results Sequence[ChassisProfile Config Result Args] - (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_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- iom_
profiles Sequence[ChassisProfile Iom Profile Args] - (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[Chassis
Profile Organization Args] - 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[Chassis
Profile Parent Args] - (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[ChassisProfile Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- policy_
buckets Sequence[ChassisProfile Policy Bucket Args] - 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[ChassisProfile Running Workflow Args] - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled_
actions Sequence[ChassisProfile Scheduled Action Args] - This complex property has following sub-properties:
- 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[ChassisProfile Src Template Args] - 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:
- Sequence[Chassis
Profile Tag Args] - 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[ChassisProfile Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait_
for_ boolcompletion - This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- account
Moid 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.
- action
Params List<Property Map> - This complex property has following sub-properties:
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Chasses 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:
- associated
Chasses 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:
- chassis
Profile StringId - class
Id 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.
- config
Change List<Property Map>Contexts - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- config
Change List<Property Map>Details - (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes 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:
- config
Contexts List<Property Map> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results 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:
- create
Time String - (ReadOnly) The time when this managed object was created.
- deployed
Policies List<String> - (Array of schema.TypeString) -
- description String
- Description of the profile.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- iom
Profiles List<Property Map> - (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
- mod
Time 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.
- object
Type 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:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- policy
Buckets List<Property Map> - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removed
Policies List<String> - (Array of schema.TypeString) -
- running
Workflows List<Property Map> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions List<Property Map> - This complex property has following sub-properties:
- 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.
- src
Templates 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:
- List<Property Map>
- This complex property has following sub-properties:
- target
Platform 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. - user
Label String - User label assigned to the chassis profile.
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait
For BooleanCompletion - This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
Outputs
All input properties are implicitly available as output properties. Additionally, the ChassisProfile resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ChassisProfile Resource
Get an existing ChassisProfile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ChassisProfileState, opts?: CustomResourceOptions): ChassisProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
action: Optional[str] = None,
action_params: Optional[Sequence[ChassisProfileActionParamArgs]] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[ChassisProfileAncestorArgs]] = None,
assigned_chasses: Optional[Sequence[ChassisProfileAssignedChassArgs]] = None,
associated_chasses: Optional[Sequence[ChassisProfileAssociatedChassArgs]] = None,
chassis_profile_id: Optional[str] = None,
class_id: Optional[str] = None,
config_change_contexts: Optional[Sequence[ChassisProfileConfigChangeContextArgs]] = None,
config_change_details: Optional[Sequence[ChassisProfileConfigChangeDetailArgs]] = None,
config_changes: Optional[Sequence[ChassisProfileConfigChangeArgs]] = None,
config_contexts: Optional[Sequence[ChassisProfileConfigContextArgs]] = None,
config_results: Optional[Sequence[ChassisProfileConfigResultArgs]] = None,
create_time: Optional[str] = None,
deployed_policies: Optional[Sequence[str]] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
iom_profiles: Optional[Sequence[ChassisProfileIomProfileArgs]] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
object_type: Optional[str] = None,
organizations: Optional[Sequence[ChassisProfileOrganizationArgs]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[ChassisProfileParentArgs]] = None,
permission_resources: Optional[Sequence[ChassisProfilePermissionResourceArgs]] = None,
policy_buckets: Optional[Sequence[ChassisProfilePolicyBucketArgs]] = None,
removed_policies: Optional[Sequence[str]] = None,
running_workflows: Optional[Sequence[ChassisProfileRunningWorkflowArgs]] = None,
scheduled_actions: Optional[Sequence[ChassisProfileScheduledActionArgs]] = None,
shared_scope: Optional[str] = None,
src_templates: Optional[Sequence[ChassisProfileSrcTemplateArgs]] = None,
tags: Optional[Sequence[ChassisProfileTagArgs]] = None,
target_platform: Optional[str] = None,
type: Optional[str] = None,
user_label: Optional[str] = None,
version_contexts: Optional[Sequence[ChassisProfileVersionContextArgs]] = None,
wait_for_completion: Optional[bool] = None) -> ChassisProfile
func GetChassisProfile(ctx *Context, name string, id IDInput, state *ChassisProfileState, opts ...ResourceOption) (*ChassisProfile, error)
public static ChassisProfile Get(string name, Input<string> id, ChassisProfileState? state, CustomResourceOptions? opts = null)
public static ChassisProfile get(String name, Output<String> id, ChassisProfileState state, CustomResourceOptions options)
resources: _: type: intersight:ChassisProfile get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Moid 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.
- Action
Params List<ChassisProfile Action Param> - This complex property has following sub-properties:
- Additional
Properties string - Ancestors
List<Chassis
Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned
Chasses List<ChassisProfile Assigned Chass> - 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 List<ChassisProfile Associated Chass> - (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 stringId - Class
Id 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.
- Config
Change List<ChassisContexts Profile Config Change Context> - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- Config
Change List<ChassisDetails Profile Config Change Detail> - (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
- Config
Changes List<ChassisProfile Config Change> - (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 List<ChassisProfile Config Context> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- Config
Results List<ChassisProfile Config Result> - (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 string - (ReadOnly) The time when this managed object was created.
- Deployed
Policies List<string> - (Array of schema.TypeString) -
- Description string
- Description of the profile.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Iom
Profiles List<ChassisProfile Iom Profile> - (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
- Mod
Time 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Chassis
Profile Organization> - 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<Chassis
Profile Parent> - (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 List<ChassisProfile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Policy
Buckets List<ChassisProfile Policy Bucket> - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- Removed
Policies List<string> - (Array of schema.TypeString) -
- Running
Workflows List<ChassisProfile Running Workflow> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- Scheduled
Actions List<ChassisProfile Scheduled Action> - This complex property has following sub-properties:
- 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.
- Src
Templates List<ChassisProfile Src Template> - 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:
- List<Chassis
Profile Tag> - This complex property has following sub-properties:
- Target
Platform 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. - User
Label string - User label assigned to the chassis profile.
- Version
Contexts List<ChassisProfile Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Wait
For boolCompletion - This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- Account
Moid 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.
- Action
Params []ChassisProfile Action Param Args - This complex property has following sub-properties:
- Additional
Properties string - Ancestors
[]Chassis
Profile Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned
Chasses []ChassisProfile Assigned Chass Args - 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 []ChassisProfile Associated Chass Args - (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 stringId - Class
Id 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.
- Config
Change []ChassisContexts Profile Config Change Context Args - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- Config
Change []ChassisDetails Profile Config Change Detail Args - (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
- Config
Changes []ChassisProfile Config Change Args - (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 []ChassisProfile Config Context Args - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- Config
Results []ChassisProfile Config Result Args - (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 string - (ReadOnly) The time when this managed object was created.
- Deployed
Policies []string - (Array of schema.TypeString) -
- Description string
- Description of the profile.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Iom
Profiles []ChassisProfile Iom Profile Args - (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
- Mod
Time 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Chassis
Profile Organization Args - 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
[]Chassis
Profile Parent Args - (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 []ChassisProfile Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Policy
Buckets []ChassisProfile Policy Bucket Args - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- Removed
Policies []string - (Array of schema.TypeString) -
- Running
Workflows []ChassisProfile Running Workflow Args - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- Scheduled
Actions []ChassisProfile Scheduled Action Args - This complex property has following sub-properties:
- 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.
- Src
Templates []ChassisProfile Src Template Args - 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:
- []Chassis
Profile Tag Args - This complex property has following sub-properties:
- Target
Platform 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. - User
Label string - User label assigned to the chassis profile.
- Version
Contexts []ChassisProfile Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Wait
For boolCompletion - This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- account
Moid 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.
- action
Params List<ChassisProfile Action Param> - This complex property has following sub-properties:
- additional
Properties String - ancestors
List<Chassis
Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Chasses List<ChassisProfile Assigned Chass> - 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 List<ChassisProfile Associated Chass> - (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 StringId - class
Id 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.
- config
Change List<ChassisContexts Profile Config Change Context> - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- config
Change List<ChassisDetails Profile Config Change Detail> - (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes List<ChassisProfile Config Change> - (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 List<ChassisProfile Config Context> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results List<ChassisProfile Config Result> - (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 String - (ReadOnly) The time when this managed object was created.
- deployed
Policies List<String> - (Array of schema.TypeString) -
- description String
- Description of the profile.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- iom
Profiles List<ChassisProfile Iom Profile> - (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
- mod
Time 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Chassis
Profile Organization> - 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<Chassis
Profile Parent> - (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 List<ChassisProfile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- policy
Buckets List<ChassisProfile Policy Bucket> - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removed
Policies List<String> - (Array of schema.TypeString) -
- running
Workflows List<ChassisProfile Running Workflow> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions List<ChassisProfile Scheduled Action> - This complex property has following sub-properties:
- 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.
- src
Templates List<ChassisProfile Src Template> - 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:
- List<Chassis
Profile Tag> - This complex property has following sub-properties:
- target
Platform 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. - user
Label String - User label assigned to the chassis profile.
- version
Contexts List<ChassisProfile Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait
For BooleanCompletion - This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- account
Moid 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.
- action
Params ChassisProfile Action Param[] - This complex property has following sub-properties:
- additional
Properties string - ancestors
Chassis
Profile Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Chasses ChassisProfile Assigned Chass[] - 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 ChassisProfile Associated Chass[] - (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 stringId - class
Id 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.
- config
Change ChassisContexts Profile Config Change Context[] - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- config
Change ChassisDetails Profile Config Change Detail[] - (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes ChassisProfile Config Change[] - (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 ChassisProfile Config Context[] - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results ChassisProfile Config Result[] - (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 string - (ReadOnly) The time when this managed object was created.
- deployed
Policies string[] - (Array of schema.TypeString) -
- description string
- Description of the profile.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- iom
Profiles ChassisProfile Iom Profile[] - (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
- mod
Time 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.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Chassis
Profile Organization[] - 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
Chassis
Profile Parent[] - (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 ChassisProfile Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- policy
Buckets ChassisProfile Policy Bucket[] - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removed
Policies string[] - (Array of schema.TypeString) -
- running
Workflows ChassisProfile Running Workflow[] - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions ChassisProfile Scheduled Action[] - This complex property has following sub-properties:
- 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.
- src
Templates ChassisProfile Src Template[] - 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:
- Chassis
Profile Tag[] - This complex property has following sub-properties:
- target
Platform 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. - user
Label string - User label assigned to the chassis profile.
- version
Contexts ChassisProfile Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait
For booleanCompletion - 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[ChassisProfile Action Param Args] - This complex property has following sub-properties:
- additional_
properties str - ancestors
Sequence[Chassis
Profile Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned_
chasses Sequence[ChassisProfile Assigned Chass Args] - 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[ChassisProfile Associated Chass Args] - (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_ strid - 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_ Sequence[Chassiscontexts Profile Config Change Context Args] - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- config_
change_ Sequence[Chassisdetails Profile Config Change Detail Args] - (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
- config_
changes Sequence[ChassisProfile Config Change Args] - (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[ChassisProfile Config Context Args] - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config_
results Sequence[ChassisProfile Config Result Args] - (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_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- iom_
profiles Sequence[ChassisProfile Iom Profile Args] - (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[Chassis
Profile Organization Args] - 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[Chassis
Profile Parent Args] - (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[ChassisProfile Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- policy_
buckets Sequence[ChassisProfile Policy Bucket Args] - 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[ChassisProfile Running Workflow Args] - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled_
actions Sequence[ChassisProfile Scheduled Action Args] - This complex property has following sub-properties:
- 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[ChassisProfile Src Template Args] - 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:
- Sequence[Chassis
Profile Tag Args] - 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[ChassisProfile Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait_
for_ boolcompletion - This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- account
Moid 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.
- action
Params List<Property Map> - This complex property has following sub-properties:
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Chasses 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:
- associated
Chasses 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:
- chassis
Profile StringId - class
Id 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.
- config
Change List<Property Map>Contexts - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- config
Change List<Property Map>Details - (ReadOnly) An array of relationships to chassisConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes 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:
- config
Contexts List<Property Map> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results 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:
- create
Time String - (ReadOnly) The time when this managed object was created.
- deployed
Policies List<String> - (Array of schema.TypeString) -
- description String
- Description of the profile.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- iom
Profiles List<Property Map> - (ReadOnly) An array of relationships to chassisIomProfile resources. This complex property has following sub-properties:
- mod
Time 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.
- object
Type 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:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- policy
Buckets List<Property Map> - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removed
Policies List<String> - (Array of schema.TypeString) -
- running
Workflows List<Property Map> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions List<Property Map> - This complex property has following sub-properties:
- 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.
- src
Templates 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:
- List<Property Map>
- This complex property has following sub-properties:
- target
Platform 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. - user
Label String - User label assigned to the chassis profile.
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait
For BooleanCompletion - This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
Supporting Types
ChassisProfileActionParam, ChassisProfileActionParamArgs
- Additional
Properties string - Class
Id string - Name string
- The action parameter identifier.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The action parameter value.
- Additional
Properties string - Class
Id string - Name string
- The action parameter identifier.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The action parameter value.
- additional
Properties String - class
Id String - name String
- The action parameter identifier.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The action parameter value.
- additional
Properties string - class
Id string - name string
- The action parameter identifier.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value string
- The action parameter value.
- additional_
properties str - class_
id str - name str
- The action parameter identifier.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value str
- The action parameter value.
- additional
Properties String - class
Id String - name String
- The action parameter identifier.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The action parameter value.
ChassisProfileAncestor, ChassisProfileAncestorArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ChassisProfileAssignedChass, ChassisProfileAssignedChassArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ChassisProfileAssociatedChass, ChassisProfileAssociatedChassArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ChassisProfileConfigChange, ChassisProfileConfigChangeArgs
- Additional
Properties string - Changes List<string>
- (Array of schema.TypeString) -
- Class
Id string - Disruptions List<string>
- (Array of schema.TypeString) -
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Policy
Disruptions List<ChassisProfile Config Change Policy Disruption> - This complex property has following sub-properties:
- Additional
Properties string - Changes []string
- (Array of schema.TypeString) -
- Class
Id string - Disruptions []string
- (Array of schema.TypeString) -
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Policy
Disruptions []ChassisProfile Config Change Policy Disruption - This complex property has following sub-properties:
- additional
Properties String - changes List<String>
- (Array of schema.TypeString) -
- class
Id String - disruptions List<String>
- (Array of schema.TypeString) -
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy
Disruptions List<ChassisProfile Config Change Policy Disruption> - This complex property has following sub-properties:
- additional
Properties string - changes string[]
- (Array of schema.TypeString) -
- class
Id string - disruptions string[]
- (Array of schema.TypeString) -
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy
Disruptions ChassisProfile Config Change Policy Disruption[] - This complex property has following sub-properties:
- additional_
properties str - changes Sequence[str]
- (Array of schema.TypeString) -
- class_
id str - disruptions Sequence[str]
- (Array of schema.TypeString) -
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy_
disruptions Sequence[ChassisProfile Config Change Policy Disruption] - This complex property has following sub-properties:
- additional
Properties String - changes List<String>
- (Array of schema.TypeString) -
- class
Id String - disruptions List<String>
- (Array of schema.TypeString) -
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy
Disruptions List<Property Map> - This complex property has following sub-properties:
ChassisProfileConfigChangeContext, ChassisProfileConfigChangeContextArgs
- Additional
Properties string - Class
Id string - Config
Change stringError - (ReadOnly) Indicates reason for failure state of configChangeState.
- Config
Change stringState - (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 List<ChassisContexts Profile Config Change Context Initial Config Context> - (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 string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Additional
Properties string - Class
Id string - Config
Change stringError - (ReadOnly) Indicates reason for failure state of configChangeState.
- Config
Change stringState - (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 []ChassisContexts Profile Config Change Context Initial Config Context - (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 string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional
Properties String - class
Id String - config
Change StringError - (ReadOnly) Indicates reason for failure state of configChangeState.
- config
Change StringState - (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 List<ChassisContexts Profile Config Change Context Initial Config Context> - (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 String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional
Properties string - class
Id string - config
Change stringError - (ReadOnly) Indicates reason for failure state of configChangeState.
- config
Change stringState - (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 ChassisContexts Profile Config Change Context Initial Config Context[] - (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 string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional_
properties str - class_
id str - config_
change_ strerror - (ReadOnly) Indicates reason for failure state of configChangeState.
- config_
change_ strstate - (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_ Sequence[Chassiscontexts Profile Config Change Context Initial Config Context] - (ReadOnly) Stores initial Configuration state. Used for reverting back to initial state of ConfigContext in case of validation failure. This complex property has following sub-properties:
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional
Properties String - class
Id String - config
Change StringError - (ReadOnly) Indicates reason for failure state of configChangeState.
- config
Change StringState - (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 List<Property Map>Contexts - (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 String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
ChassisProfileConfigChangeContextInitialConfigContext, ChassisProfileConfigChangeContextInitialConfigContextArgs
- Additional
Properties string - Class
Id string - Config
State string - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- Config
State stringSummary - (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 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.
- Control
Action string - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- Error
State string - 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 List<string> - (Array of schema.TypeString) -
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Oper
State 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 string - Class
Id string - Config
State string - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- Config
State stringSummary - (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 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.
- Control
Action string - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- Error
State string - 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 []string - (Array of schema.TypeString) -
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Oper
State 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 String - class
Id String - config
State String - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config
State StringSummary - (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 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.
- control
Action String - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error
State String - 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 List<String> - (Array of schema.TypeString) -
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper
State 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 string - class
Id string - config
State string - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config
State stringSummary - (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 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.
- control
Action string - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error
State string - 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 string[] - (Array of schema.TypeString) -
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper
State string - (ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
- additional_
properties str - class_
id str - config_
state str - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config_
state_ strsummary - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.*
None
- The default state is none.*Not-assigned
- Server is not assigned to the profile.*Assigned
- Server is assigned to the profile and the configurations are not yet deployed.*Preparing
- Preparing to deploy the configuration.*Validating
- Profile validation in progress.*Configuring
- Profile deploy operation is in progress.*UnConfiguring
- Server is unassigned and config cleanup is in progress.*Analyzing
- Profile changes are being analyzed.*Activating
- Configuration is being activated at the endpoint.*Inconsistent
- Profile is inconsistent with the endpoint configuration.*Associated
- The profile configuration has been applied to the endpoint and no inconsistencies have been detected.*Failed
- The last action on the profile has failed.*Not-complete
- Config import operation on the profile is not complete.*Waiting-for-resource
- Waiting for the resource to be allocated for the profile.*Partially-deployed
- The profile configuration has been applied on a subset of endpoints. - config_
type str - (ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
- control_
action str - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error_
state str - Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
- inconsistency_
reasons Sequence[str] - (Array of schema.TypeString) -
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper_
state str - (ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
- additional
Properties String - class
Id String - config
State String - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config
State StringSummary - (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 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.
- control
Action String - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error
State String - 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 List<String> - (Array of schema.TypeString) -
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper
State 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ChassisProfileConfigChangePolicyDisruption, ChassisProfileConfigChangePolicyDisruptionArgs
- Additional
Properties string - Class
Id string - Disruptions List<string>
- (Array of schema.TypeString) -
- Is
Only boolRequired By Other Policies - The current policy has to be redeployed only because there are other policy changes that require this.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Policy
Name string - Name of the policy that, when modified, causes the disruption.
- Policy
Pending stringAction - Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
- Required
By List<string>Policies - (Array of schema.TypeString) -
- Additional
Properties string - Class
Id string - Disruptions []string
- (Array of schema.TypeString) -
- Is
Only boolRequired By Other Policies - The current policy has to be redeployed only because there are other policy changes that require this.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Policy
Name string - Name of the policy that, when modified, causes the disruption.
- Policy
Pending stringAction - Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
- Required
By []stringPolicies - (Array of schema.TypeString) -
- additional
Properties String - class
Id String - disruptions List<String>
- (Array of schema.TypeString) -
- is
Only BooleanRequired By Other Policies - The current policy has to be redeployed only because there are other policy changes that require this.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy
Name String - Name of the policy that, when modified, causes the disruption.
- policy
Pending StringAction - Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
- required
By List<String>Policies - (Array of schema.TypeString) -
- additional
Properties string - class
Id string - disruptions string[]
- (Array of schema.TypeString) -
- is
Only booleanRequired By Other Policies - The current policy has to be redeployed only because there are other policy changes that require this.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy
Name string - Name of the policy that, when modified, causes the disruption.
- policy
Pending stringAction - Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
- required
By string[]Policies - (Array of schema.TypeString) -
- additional_
properties str - class_
id str - disruptions Sequence[str]
- (Array of schema.TypeString) -
- is_
only_ boolrequired_ by_ other_ policies - The current policy has to be redeployed only because there are other policy changes that require this.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy_
name str - Name of the policy that, when modified, causes the disruption.
- policy_
pending_ straction - Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
- required_
by_ Sequence[str]policies - (Array of schema.TypeString) -
- additional
Properties String - class
Id String - disruptions List<String>
- (Array of schema.TypeString) -
- is
Only BooleanRequired By Other Policies - The current policy has to be redeployed only because there are other policy changes that require this.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy
Name String - Name of the policy that, when modified, causes the disruption.
- policy
Pending StringAction - Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
- required
By List<String>Policies - (Array of schema.TypeString) -
ChassisProfileConfigContext, ChassisProfileConfigContextArgs
- Additional
Properties string - Class
Id string - Config
State string - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- Config
State stringSummary - (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 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.
- Control
Action string - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- Error
State string - 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 List<string> - (Array of schema.TypeString) -
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Oper
State 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 string - Class
Id string - Config
State string - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- Config
State stringSummary - (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 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.
- Control
Action string - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- Error
State string - 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 []string - (Array of schema.TypeString) -
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Oper
State 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 String - class
Id String - config
State String - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config
State StringSummary - (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 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.
- control
Action String - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error
State String - 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 List<String> - (Array of schema.TypeString) -
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper
State 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 string - class
Id string - config
State string - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config
State stringSummary - (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 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.
- control
Action string - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error
State string - 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 string[] - (Array of schema.TypeString) -
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper
State string - (ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
- additional_
properties str - class_
id str - config_
state str - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config_
state_ strsummary - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.*
None
- The default state is none.*Not-assigned
- Server is not assigned to the profile.*Assigned
- Server is assigned to the profile and the configurations are not yet deployed.*Preparing
- Preparing to deploy the configuration.*Validating
- Profile validation in progress.*Configuring
- Profile deploy operation is in progress.*UnConfiguring
- Server is unassigned and config cleanup is in progress.*Analyzing
- Profile changes are being analyzed.*Activating
- Configuration is being activated at the endpoint.*Inconsistent
- Profile is inconsistent with the endpoint configuration.*Associated
- The profile configuration has been applied to the endpoint and no inconsistencies have been detected.*Failed
- The last action on the profile has failed.*Not-complete
- Config import operation on the profile is not complete.*Waiting-for-resource
- Waiting for the resource to be allocated for the profile.*Partially-deployed
- The profile configuration has been applied on a subset of endpoints. - config_
type str - (ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
- control_
action str - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error_
state str - Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
- inconsistency_
reasons Sequence[str] - (Array of schema.TypeString) -
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper_
state str - (ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
- additional
Properties String - class
Id String - config
State String - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config
State StringSummary - (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 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.
- control
Action String - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error
State String - 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 List<String> - (Array of schema.TypeString) -
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper
State 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ChassisProfileIomProfile, ChassisProfileIomProfileArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ChassisProfileOrganization, ChassisProfileOrganizationArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ChassisProfileParent, ChassisProfileParentArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ChassisProfilePermissionResource, ChassisProfilePermissionResourceArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ChassisProfilePolicyBucket, ChassisProfilePolicyBucketArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ChassisProfileRunningWorkflow, ChassisProfileRunningWorkflowArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ChassisProfileScheduledAction, ChassisProfileScheduledActionArgs
- Action string
- Name of the action to be performed on the profile.
- Action
Qualifiers List<ChassisProfile Scheduled Action Action Qualifier> - Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Proceed
On boolReboot - ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
- Action string
- Name of the action to be performed on the profile.
- Action
Qualifiers []ChassisProfile Scheduled Action Action Qualifier - Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Proceed
On boolReboot - ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
- action String
- Name of the action to be performed on the profile.
- action
Qualifiers List<ChassisProfile Scheduled Action Action Qualifier> - Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- proceed
On BooleanReboot - ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
- action string
- Name of the action to be performed on the profile.
- action
Qualifiers ChassisProfile Scheduled Action Action Qualifier[] - Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
- additional
Properties string - class
Id string - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- proceed
On booleanReboot - ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
- action str
- Name of the action to be performed on the profile.
- action_
qualifiers Sequence[ChassisProfile Scheduled Action Action Qualifier] - Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
- additional_
properties str - class_
id str - object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- proceed_
on_ boolreboot - ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
- action String
- Name of the action to be performed on the profile.
- action
Qualifiers List<Property Map> - Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- proceed
On BooleanReboot - ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
ChassisProfileScheduledActionActionQualifier, ChassisProfileScheduledActionActionQualifierArgs
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additional
Properties string - class
Id string - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additional_
properties str - class_
id str - object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
ChassisProfileSrcTemplate, ChassisProfileSrcTemplateArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ChassisProfileTag, ChassisProfileTagArgs
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
ChassisProfileVersionContext, ChassisProfileVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<ChassisProfile Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (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 string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<ChassisProfile Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type 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 string - Class
Id string - Interested
Mos []ChassisProfile Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (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 string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []ChassisProfile Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type 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 String - class
Id String - interested
Mos List<ChassisProfile Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (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 String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<ChassisProfile Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type 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 string - class
Id string - interested
Mos ChassisProfile Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (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 string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos ChassisProfile Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - class_
id str - interested_
mos Sequence[ChassisProfile Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[ChassisProfile Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (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 String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ChassisProfileVersionContextRefMo, ChassisProfileVersionContextRefMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_chassis_profile
can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/chassisProfile:ChassisProfile example 1234567890987654321abcde
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- intersight ciscodevnet/terraform-provider-intersight
- License
- Notes
- This Pulumi package is based on the
intersight
Terraform Provider.