intersight.FabricSwitchProfile
Explore with Pulumi AI
This specifies configuration policies for a managed network switch.
Usage Example
Resource Creation
import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";
const fabricSwitchProfile1 = new intersight.FabricSwitchProfile("fabricSwitchProfile1", {
description: "demo fabric switch profile",
type: "instance",
action: "No-op",
switchClusterProfiles: [{
moid: intersight_fabric_switch_cluster_profile.fabric_switch_cluster_profile1.moid,
objectType: "fabric.SwitchClusterProfile",
}],
});
import pulumi
import pulumi_intersight as intersight
fabric_switch_profile1 = intersight.FabricSwitchProfile("fabricSwitchProfile1",
description="demo fabric switch profile",
type="instance",
action="No-op",
switch_cluster_profiles=[{
"moid": intersight_fabric_switch_cluster_profile["fabric_switch_cluster_profile1"]["moid"],
"object_type": "fabric.SwitchClusterProfile",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := intersight.NewFabricSwitchProfile(ctx, "fabricSwitchProfile1", &intersight.FabricSwitchProfileArgs{
Description: pulumi.String("demo fabric switch profile"),
Type: pulumi.String("instance"),
Action: pulumi.String("No-op"),
SwitchClusterProfiles: intersight.FabricSwitchProfileSwitchClusterProfileArray{
&intersight.FabricSwitchProfileSwitchClusterProfileArgs{
Moid: pulumi.Any(intersight_fabric_switch_cluster_profile.Fabric_switch_cluster_profile1.Moid),
ObjectType: pulumi.String("fabric.SwitchClusterProfile"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() =>
{
var fabricSwitchProfile1 = new Intersight.FabricSwitchProfile("fabricSwitchProfile1", new()
{
Description = "demo fabric switch profile",
Type = "instance",
Action = "No-op",
SwitchClusterProfiles = new[]
{
new Intersight.Inputs.FabricSwitchProfileSwitchClusterProfileArgs
{
Moid = intersight_fabric_switch_cluster_profile.Fabric_switch_cluster_profile1.Moid,
ObjectType = "fabric.SwitchClusterProfile",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.FabricSwitchProfile;
import com.pulumi.intersight.FabricSwitchProfileArgs;
import com.pulumi.intersight.inputs.FabricSwitchProfileSwitchClusterProfileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var fabricSwitchProfile1 = new FabricSwitchProfile("fabricSwitchProfile1", FabricSwitchProfileArgs.builder()
.description("demo fabric switch profile")
.type("instance")
.action("No-op")
.switchClusterProfiles(FabricSwitchProfileSwitchClusterProfileArgs.builder()
.moid(intersight_fabric_switch_cluster_profile.fabric_switch_cluster_profile1().moid())
.objectType("fabric.SwitchClusterProfile")
.build())
.build());
}
}
resources:
fabricSwitchProfile1:
type: intersight:FabricSwitchProfile
properties:
description: demo fabric switch profile
type: instance
action: No-op
switchClusterProfiles:
- moid: ${intersight_fabric_switch_cluster_profile.fabric_switch_cluster_profile1.moid}
objectType: fabric.SwitchClusterProfile
Create FabricSwitchProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FabricSwitchProfile(name: string, args?: FabricSwitchProfileArgs, opts?: CustomResourceOptions);
@overload
def FabricSwitchProfile(resource_name: str,
args: Optional[FabricSwitchProfileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def FabricSwitchProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
action: Optional[str] = None,
action_params: Optional[Sequence[FabricSwitchProfileActionParamArgs]] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[FabricSwitchProfileAncestorArgs]] = None,
assigned_switches: Optional[Sequence[FabricSwitchProfileAssignedSwitchArgs]] = None,
associated_switches: Optional[Sequence[FabricSwitchProfileAssociatedSwitchArgs]] = None,
class_id: Optional[str] = None,
config_change_contexts: Optional[Sequence[FabricSwitchProfileConfigChangeContextArgs]] = None,
config_change_details: Optional[Sequence[FabricSwitchProfileConfigChangeDetailArgs]] = None,
config_changes: Optional[Sequence[FabricSwitchProfileConfigChangeArgs]] = None,
config_contexts: Optional[Sequence[FabricSwitchProfileConfigContextArgs]] = None,
config_results: Optional[Sequence[FabricSwitchProfileConfigResultArgs]] = None,
create_time: Optional[str] = None,
deployed_policies: Optional[Sequence[str]] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
fabric_switch_profile_id: Optional[str] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
object_type: Optional[str] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[FabricSwitchProfileParentArgs]] = None,
permission_resources: Optional[Sequence[FabricSwitchProfilePermissionResourceArgs]] = None,
policy_buckets: Optional[Sequence[FabricSwitchProfilePolicyBucketArgs]] = None,
removed_policies: Optional[Sequence[str]] = None,
running_workflows: Optional[Sequence[FabricSwitchProfileRunningWorkflowArgs]] = None,
scheduled_actions: Optional[Sequence[FabricSwitchProfileScheduledActionArgs]] = None,
shared_scope: Optional[str] = None,
src_templates: Optional[Sequence[FabricSwitchProfileSrcTemplateArgs]] = None,
switch_cluster_profiles: Optional[Sequence[FabricSwitchProfileSwitchClusterProfileArgs]] = None,
switch_id: Optional[str] = None,
tags: Optional[Sequence[FabricSwitchProfileTagArgs]] = None,
type: Optional[str] = None,
version_contexts: Optional[Sequence[FabricSwitchProfileVersionContextArgs]] = None,
wait_for_completion: Optional[bool] = None)
func NewFabricSwitchProfile(ctx *Context, name string, args *FabricSwitchProfileArgs, opts ...ResourceOption) (*FabricSwitchProfile, error)
public FabricSwitchProfile(string name, FabricSwitchProfileArgs? args = null, CustomResourceOptions? opts = null)
public FabricSwitchProfile(String name, FabricSwitchProfileArgs args)
public FabricSwitchProfile(String name, FabricSwitchProfileArgs args, CustomResourceOptions options)
type: intersight:FabricSwitchProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args FabricSwitchProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args FabricSwitchProfileArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args FabricSwitchProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FabricSwitchProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FabricSwitchProfileArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var fabricSwitchProfileResource = new Intersight.FabricSwitchProfile("fabricSwitchProfileResource", new()
{
AccountMoid = "string",
Action = "string",
ActionParams = new[]
{
new Intersight.Inputs.FabricSwitchProfileActionParamArgs
{
AdditionalProperties = "string",
ClassId = "string",
Name = "string",
ObjectType = "string",
Value = "string",
},
},
AdditionalProperties = "string",
Ancestors = new[]
{
new Intersight.Inputs.FabricSwitchProfileAncestorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
AssignedSwitches = new[]
{
new Intersight.Inputs.FabricSwitchProfileAssignedSwitchArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
AssociatedSwitches = new[]
{
new Intersight.Inputs.FabricSwitchProfileAssociatedSwitchArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ClassId = "string",
ConfigChangeContexts = new[]
{
new Intersight.Inputs.FabricSwitchProfileConfigChangeContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
ConfigChangeError = "string",
ConfigChangeState = "string",
InitialConfigContexts = new[]
{
new Intersight.Inputs.FabricSwitchProfileConfigChangeContextInitialConfigContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
ConfigState = "string",
ConfigStateSummary = "string",
ConfigType = "string",
ControlAction = "string",
ErrorState = "string",
InconsistencyReasons = new[]
{
"string",
},
ObjectType = "string",
OperState = "string",
},
},
ObjectType = "string",
},
},
ConfigChangeDetails = new[]
{
new Intersight.Inputs.FabricSwitchProfileConfigChangeDetailArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ConfigChanges = new[]
{
new Intersight.Inputs.FabricSwitchProfileConfigChangeArgs
{
AdditionalProperties = "string",
Changes = new[]
{
"string",
},
ClassId = "string",
Disruptions = new[]
{
"string",
},
ObjectType = "string",
PolicyDisruptions = new[]
{
new Intersight.Inputs.FabricSwitchProfileConfigChangePolicyDisruptionArgs
{
AdditionalProperties = "string",
ClassId = "string",
Disruptions = new[]
{
"string",
},
IsOnlyRequiredByOtherPolicies = false,
ObjectType = "string",
PolicyName = "string",
PolicyPendingAction = "string",
RequiredByPolicies = new[]
{
"string",
},
},
},
},
},
ConfigContexts = new[]
{
new Intersight.Inputs.FabricSwitchProfileConfigContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
ConfigState = "string",
ConfigStateSummary = "string",
ConfigType = "string",
ControlAction = "string",
ErrorState = "string",
InconsistencyReasons = new[]
{
"string",
},
ObjectType = "string",
OperState = "string",
},
},
ConfigResults = new[]
{
new Intersight.Inputs.FabricSwitchProfileConfigResultArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
CreateTime = "string",
DeployedPolicies = new[]
{
"string",
},
Description = "string",
DomainGroupMoid = "string",
FabricSwitchProfileId = "string",
ModTime = "string",
Moid = "string",
Name = "string",
ObjectType = "string",
Owners = new[]
{
"string",
},
Parents = new[]
{
new Intersight.Inputs.FabricSwitchProfileParentArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PermissionResources = new[]
{
new Intersight.Inputs.FabricSwitchProfilePermissionResourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PolicyBuckets = new[]
{
new Intersight.Inputs.FabricSwitchProfilePolicyBucketArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
RemovedPolicies = new[]
{
"string",
},
RunningWorkflows = new[]
{
new Intersight.Inputs.FabricSwitchProfileRunningWorkflowArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ScheduledActions = new[]
{
new Intersight.Inputs.FabricSwitchProfileScheduledActionArgs
{
Action = "string",
ActionQualifiers = new[]
{
new Intersight.Inputs.FabricSwitchProfileScheduledActionActionQualifierArgs
{
AdditionalProperties = "string",
ClassId = "string",
ObjectType = "string",
},
},
AdditionalProperties = "string",
ClassId = "string",
ObjectType = "string",
ProceedOnReboot = false,
},
},
SharedScope = "string",
SrcTemplates = new[]
{
new Intersight.Inputs.FabricSwitchProfileSrcTemplateArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
SwitchClusterProfiles = new[]
{
new Intersight.Inputs.FabricSwitchProfileSwitchClusterProfileArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
SwitchId = "string",
Tags = new[]
{
new Intersight.Inputs.FabricSwitchProfileTagArgs
{
AdditionalProperties = "string",
Key = "string",
Value = "string",
},
},
Type = "string",
VersionContexts = new[]
{
new Intersight.Inputs.FabricSwitchProfileVersionContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
InterestedMos = new[]
{
new Intersight.Inputs.FabricSwitchProfileVersionContextInterestedMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
MarkedForDeletion = false,
NrVersion = "string",
ObjectType = "string",
RefMos = new[]
{
new Intersight.Inputs.FabricSwitchProfileVersionContextRefMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Timestamp = "string",
VersionType = "string",
},
},
WaitForCompletion = false,
});
example, err := intersight.NewFabricSwitchProfile(ctx, "fabricSwitchProfileResource", &intersight.FabricSwitchProfileArgs{
AccountMoid: pulumi.String("string"),
Action: pulumi.String("string"),
ActionParams: intersight.FabricSwitchProfileActionParamArray{
&intersight.FabricSwitchProfileActionParamArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
AdditionalProperties: pulumi.String("string"),
Ancestors: intersight.FabricSwitchProfileAncestorArray{
&intersight.FabricSwitchProfileAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
AssignedSwitches: intersight.FabricSwitchProfileAssignedSwitchArray{
&intersight.FabricSwitchProfileAssignedSwitchArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
AssociatedSwitches: intersight.FabricSwitchProfileAssociatedSwitchArray{
&intersight.FabricSwitchProfileAssociatedSwitchArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ClassId: pulumi.String("string"),
ConfigChangeContexts: intersight.FabricSwitchProfileConfigChangeContextArray{
&intersight.FabricSwitchProfileConfigChangeContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ConfigChangeError: pulumi.String("string"),
ConfigChangeState: pulumi.String("string"),
InitialConfigContexts: intersight.FabricSwitchProfileConfigChangeContextInitialConfigContextArray{
&intersight.FabricSwitchProfileConfigChangeContextInitialConfigContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ConfigState: pulumi.String("string"),
ConfigStateSummary: pulumi.String("string"),
ConfigType: pulumi.String("string"),
ControlAction: pulumi.String("string"),
ErrorState: pulumi.String("string"),
InconsistencyReasons: pulumi.StringArray{
pulumi.String("string"),
},
ObjectType: pulumi.String("string"),
OperState: pulumi.String("string"),
},
},
ObjectType: pulumi.String("string"),
},
},
ConfigChangeDetails: intersight.FabricSwitchProfileConfigChangeDetailArray{
&intersight.FabricSwitchProfileConfigChangeDetailArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ConfigChanges: intersight.FabricSwitchProfileConfigChangeArray{
&intersight.FabricSwitchProfileConfigChangeArgs{
AdditionalProperties: pulumi.String("string"),
Changes: pulumi.StringArray{
pulumi.String("string"),
},
ClassId: pulumi.String("string"),
Disruptions: pulumi.StringArray{
pulumi.String("string"),
},
ObjectType: pulumi.String("string"),
PolicyDisruptions: intersight.FabricSwitchProfileConfigChangePolicyDisruptionArray{
&intersight.FabricSwitchProfileConfigChangePolicyDisruptionArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Disruptions: pulumi.StringArray{
pulumi.String("string"),
},
IsOnlyRequiredByOtherPolicies: pulumi.Bool(false),
ObjectType: pulumi.String("string"),
PolicyName: pulumi.String("string"),
PolicyPendingAction: pulumi.String("string"),
RequiredByPolicies: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
ConfigContexts: intersight.FabricSwitchProfileConfigContextArray{
&intersight.FabricSwitchProfileConfigContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ConfigState: pulumi.String("string"),
ConfigStateSummary: pulumi.String("string"),
ConfigType: pulumi.String("string"),
ControlAction: pulumi.String("string"),
ErrorState: pulumi.String("string"),
InconsistencyReasons: pulumi.StringArray{
pulumi.String("string"),
},
ObjectType: pulumi.String("string"),
OperState: pulumi.String("string"),
},
},
ConfigResults: intersight.FabricSwitchProfileConfigResultArray{
&intersight.FabricSwitchProfileConfigResultArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
CreateTime: pulumi.String("string"),
DeployedPolicies: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
FabricSwitchProfileId: pulumi.String("string"),
ModTime: pulumi.String("string"),
Moid: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Owners: pulumi.StringArray{
pulumi.String("string"),
},
Parents: intersight.FabricSwitchProfileParentArray{
&intersight.FabricSwitchProfileParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: intersight.FabricSwitchProfilePermissionResourceArray{
&intersight.FabricSwitchProfilePermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PolicyBuckets: intersight.FabricSwitchProfilePolicyBucketArray{
&intersight.FabricSwitchProfilePolicyBucketArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
RemovedPolicies: pulumi.StringArray{
pulumi.String("string"),
},
RunningWorkflows: intersight.FabricSwitchProfileRunningWorkflowArray{
&intersight.FabricSwitchProfileRunningWorkflowArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ScheduledActions: intersight.FabricSwitchProfileScheduledActionArray{
&intersight.FabricSwitchProfileScheduledActionArgs{
Action: pulumi.String("string"),
ActionQualifiers: intersight.FabricSwitchProfileScheduledActionActionQualifierArray{
&intersight.FabricSwitchProfileScheduledActionActionQualifierArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ObjectType: pulumi.String("string"),
},
},
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ObjectType: pulumi.String("string"),
ProceedOnReboot: pulumi.Bool(false),
},
},
SharedScope: pulumi.String("string"),
SrcTemplates: intersight.FabricSwitchProfileSrcTemplateArray{
&intersight.FabricSwitchProfileSrcTemplateArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
SwitchClusterProfiles: intersight.FabricSwitchProfileSwitchClusterProfileArray{
&intersight.FabricSwitchProfileSwitchClusterProfileArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
SwitchId: pulumi.String("string"),
Tags: intersight.FabricSwitchProfileTagArray{
&intersight.FabricSwitchProfileTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Type: pulumi.String("string"),
VersionContexts: intersight.FabricSwitchProfileVersionContextArray{
&intersight.FabricSwitchProfileVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: intersight.FabricSwitchProfileVersionContextInterestedMoArray{
&intersight.FabricSwitchProfileVersionContextInterestedMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
MarkedForDeletion: pulumi.Bool(false),
NrVersion: pulumi.String("string"),
ObjectType: pulumi.String("string"),
RefMos: intersight.FabricSwitchProfileVersionContextRefMoArray{
&intersight.FabricSwitchProfileVersionContextRefMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Timestamp: pulumi.String("string"),
VersionType: pulumi.String("string"),
},
},
WaitForCompletion: pulumi.Bool(false),
})
var fabricSwitchProfileResource = new FabricSwitchProfile("fabricSwitchProfileResource", FabricSwitchProfileArgs.builder()
.accountMoid("string")
.action("string")
.actionParams(FabricSwitchProfileActionParamArgs.builder()
.additionalProperties("string")
.classId("string")
.name("string")
.objectType("string")
.value("string")
.build())
.additionalProperties("string")
.ancestors(FabricSwitchProfileAncestorArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.assignedSwitches(FabricSwitchProfileAssignedSwitchArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.associatedSwitches(FabricSwitchProfileAssociatedSwitchArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.classId("string")
.configChangeContexts(FabricSwitchProfileConfigChangeContextArgs.builder()
.additionalProperties("string")
.classId("string")
.configChangeError("string")
.configChangeState("string")
.initialConfigContexts(FabricSwitchProfileConfigChangeContextInitialConfigContextArgs.builder()
.additionalProperties("string")
.classId("string")
.configState("string")
.configStateSummary("string")
.configType("string")
.controlAction("string")
.errorState("string")
.inconsistencyReasons("string")
.objectType("string")
.operState("string")
.build())
.objectType("string")
.build())
.configChangeDetails(FabricSwitchProfileConfigChangeDetailArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.configChanges(FabricSwitchProfileConfigChangeArgs.builder()
.additionalProperties("string")
.changes("string")
.classId("string")
.disruptions("string")
.objectType("string")
.policyDisruptions(FabricSwitchProfileConfigChangePolicyDisruptionArgs.builder()
.additionalProperties("string")
.classId("string")
.disruptions("string")
.isOnlyRequiredByOtherPolicies(false)
.objectType("string")
.policyName("string")
.policyPendingAction("string")
.requiredByPolicies("string")
.build())
.build())
.configContexts(FabricSwitchProfileConfigContextArgs.builder()
.additionalProperties("string")
.classId("string")
.configState("string")
.configStateSummary("string")
.configType("string")
.controlAction("string")
.errorState("string")
.inconsistencyReasons("string")
.objectType("string")
.operState("string")
.build())
.configResults(FabricSwitchProfileConfigResultArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.createTime("string")
.deployedPolicies("string")
.description("string")
.domainGroupMoid("string")
.fabricSwitchProfileId("string")
.modTime("string")
.moid("string")
.name("string")
.objectType("string")
.owners("string")
.parents(FabricSwitchProfileParentArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.permissionResources(FabricSwitchProfilePermissionResourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.policyBuckets(FabricSwitchProfilePolicyBucketArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.removedPolicies("string")
.runningWorkflows(FabricSwitchProfileRunningWorkflowArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.scheduledActions(FabricSwitchProfileScheduledActionArgs.builder()
.action("string")
.actionQualifiers(FabricSwitchProfileScheduledActionActionQualifierArgs.builder()
.additionalProperties("string")
.classId("string")
.objectType("string")
.build())
.additionalProperties("string")
.classId("string")
.objectType("string")
.proceedOnReboot(false)
.build())
.sharedScope("string")
.srcTemplates(FabricSwitchProfileSrcTemplateArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.switchClusterProfiles(FabricSwitchProfileSwitchClusterProfileArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.switchId("string")
.tags(FabricSwitchProfileTagArgs.builder()
.additionalProperties("string")
.key("string")
.value("string")
.build())
.type("string")
.versionContexts(FabricSwitchProfileVersionContextArgs.builder()
.additionalProperties("string")
.classId("string")
.interestedMos(FabricSwitchProfileVersionContextInterestedMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.markedForDeletion(false)
.nrVersion("string")
.objectType("string")
.refMos(FabricSwitchProfileVersionContextRefMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.timestamp("string")
.versionType("string")
.build())
.waitForCompletion(false)
.build());
fabric_switch_profile_resource = intersight.FabricSwitchProfile("fabricSwitchProfileResource",
account_moid="string",
action="string",
action_params=[{
"additional_properties": "string",
"class_id": "string",
"name": "string",
"object_type": "string",
"value": "string",
}],
additional_properties="string",
ancestors=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
assigned_switches=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
associated_switches=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
class_id="string",
config_change_contexts=[{
"additional_properties": "string",
"class_id": "string",
"config_change_error": "string",
"config_change_state": "string",
"initial_config_contexts": [{
"additional_properties": "string",
"class_id": "string",
"config_state": "string",
"config_state_summary": "string",
"config_type": "string",
"control_action": "string",
"error_state": "string",
"inconsistency_reasons": ["string"],
"object_type": "string",
"oper_state": "string",
}],
"object_type": "string",
}],
config_change_details=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
config_changes=[{
"additional_properties": "string",
"changes": ["string"],
"class_id": "string",
"disruptions": ["string"],
"object_type": "string",
"policy_disruptions": [{
"additional_properties": "string",
"class_id": "string",
"disruptions": ["string"],
"is_only_required_by_other_policies": False,
"object_type": "string",
"policy_name": "string",
"policy_pending_action": "string",
"required_by_policies": ["string"],
}],
}],
config_contexts=[{
"additional_properties": "string",
"class_id": "string",
"config_state": "string",
"config_state_summary": "string",
"config_type": "string",
"control_action": "string",
"error_state": "string",
"inconsistency_reasons": ["string"],
"object_type": "string",
"oper_state": "string",
}],
config_results=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
create_time="string",
deployed_policies=["string"],
description="string",
domain_group_moid="string",
fabric_switch_profile_id="string",
mod_time="string",
moid="string",
name="string",
object_type="string",
owners=["string"],
parents=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
permission_resources=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
policy_buckets=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
removed_policies=["string"],
running_workflows=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
scheduled_actions=[{
"action": "string",
"action_qualifiers": [{
"additional_properties": "string",
"class_id": "string",
"object_type": "string",
}],
"additional_properties": "string",
"class_id": "string",
"object_type": "string",
"proceed_on_reboot": False,
}],
shared_scope="string",
src_templates=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
switch_cluster_profiles=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
switch_id="string",
tags=[{
"additional_properties": "string",
"key": "string",
"value": "string",
}],
type="string",
version_contexts=[{
"additional_properties": "string",
"class_id": "string",
"interested_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"marked_for_deletion": False,
"nr_version": "string",
"object_type": "string",
"ref_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"timestamp": "string",
"version_type": "string",
}],
wait_for_completion=False)
const fabricSwitchProfileResource = new intersight.FabricSwitchProfile("fabricSwitchProfileResource", {
accountMoid: "string",
action: "string",
actionParams: [{
additionalProperties: "string",
classId: "string",
name: "string",
objectType: "string",
value: "string",
}],
additionalProperties: "string",
ancestors: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
assignedSwitches: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
associatedSwitches: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
classId: "string",
configChangeContexts: [{
additionalProperties: "string",
classId: "string",
configChangeError: "string",
configChangeState: "string",
initialConfigContexts: [{
additionalProperties: "string",
classId: "string",
configState: "string",
configStateSummary: "string",
configType: "string",
controlAction: "string",
errorState: "string",
inconsistencyReasons: ["string"],
objectType: "string",
operState: "string",
}],
objectType: "string",
}],
configChangeDetails: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
configChanges: [{
additionalProperties: "string",
changes: ["string"],
classId: "string",
disruptions: ["string"],
objectType: "string",
policyDisruptions: [{
additionalProperties: "string",
classId: "string",
disruptions: ["string"],
isOnlyRequiredByOtherPolicies: false,
objectType: "string",
policyName: "string",
policyPendingAction: "string",
requiredByPolicies: ["string"],
}],
}],
configContexts: [{
additionalProperties: "string",
classId: "string",
configState: "string",
configStateSummary: "string",
configType: "string",
controlAction: "string",
errorState: "string",
inconsistencyReasons: ["string"],
objectType: "string",
operState: "string",
}],
configResults: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
createTime: "string",
deployedPolicies: ["string"],
description: "string",
domainGroupMoid: "string",
fabricSwitchProfileId: "string",
modTime: "string",
moid: "string",
name: "string",
objectType: "string",
owners: ["string"],
parents: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
permissionResources: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
policyBuckets: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
removedPolicies: ["string"],
runningWorkflows: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
scheduledActions: [{
action: "string",
actionQualifiers: [{
additionalProperties: "string",
classId: "string",
objectType: "string",
}],
additionalProperties: "string",
classId: "string",
objectType: "string",
proceedOnReboot: false,
}],
sharedScope: "string",
srcTemplates: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
switchClusterProfiles: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
switchId: "string",
tags: [{
additionalProperties: "string",
key: "string",
value: "string",
}],
type: "string",
versionContexts: [{
additionalProperties: "string",
classId: "string",
interestedMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
markedForDeletion: false,
nrVersion: "string",
objectType: "string",
refMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
timestamp: "string",
versionType: "string",
}],
waitForCompletion: false,
});
type: intersight:FabricSwitchProfile
properties:
accountMoid: string
action: string
actionParams:
- additionalProperties: string
classId: string
name: string
objectType: string
value: string
additionalProperties: string
ancestors:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
assignedSwitches:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
associatedSwitches:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
classId: string
configChangeContexts:
- additionalProperties: string
classId: string
configChangeError: string
configChangeState: string
initialConfigContexts:
- additionalProperties: string
classId: string
configState: string
configStateSummary: string
configType: string
controlAction: string
errorState: string
inconsistencyReasons:
- string
objectType: string
operState: string
objectType: string
configChangeDetails:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
configChanges:
- additionalProperties: string
changes:
- string
classId: string
disruptions:
- string
objectType: string
policyDisruptions:
- additionalProperties: string
classId: string
disruptions:
- string
isOnlyRequiredByOtherPolicies: false
objectType: string
policyName: string
policyPendingAction: string
requiredByPolicies:
- string
configContexts:
- additionalProperties: string
classId: string
configState: string
configStateSummary: string
configType: string
controlAction: string
errorState: string
inconsistencyReasons:
- string
objectType: string
operState: string
configResults:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
createTime: string
deployedPolicies:
- string
description: string
domainGroupMoid: string
fabricSwitchProfileId: string
modTime: string
moid: string
name: string
objectType: string
owners:
- string
parents:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
permissionResources:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
policyBuckets:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
removedPolicies:
- string
runningWorkflows:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
scheduledActions:
- action: string
actionQualifiers:
- additionalProperties: string
classId: string
objectType: string
additionalProperties: string
classId: string
objectType: string
proceedOnReboot: false
sharedScope: string
srcTemplates:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
switchClusterProfiles:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
switchId: string
tags:
- additionalProperties: string
key: string
value: string
type: string
versionContexts:
- additionalProperties: string
classId: string
interestedMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
markedForDeletion: false
nrVersion: string
objectType: string
refMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
timestamp: string
versionType: string
waitForCompletion: false
FabricSwitchProfile Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The FabricSwitchProfile resource accepts the following input properties:
- 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<FabricSwitch Profile Action Param> - This complex property has following sub-properties:
- Additional
Properties string - Ancestors
List<Fabric
Switch Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned
Switches List<FabricSwitch Profile Assigned Switch> - A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Associated
Switches List<FabricSwitch Profile Associated Switch> - (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Class
Id 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<FabricContexts Switch 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<FabricDetails Switch Profile Config Change Detail> - (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
- Config
Changes List<FabricSwitch Profile Config Change> - (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- Config
Contexts List<FabricSwitch Profile Config Context> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- Config
Results List<FabricSwitch Profile Config Result> - (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Create
Time 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.
- Fabric
Switch stringProfile Id - 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.
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Fabric
Switch 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<FabricSwitch Profile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Policy
Buckets List<FabricSwitch Profile 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<FabricSwitch Profile Running Workflow> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- Scheduled
Actions List<FabricSwitch Profile 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<FabricSwitch Profile 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:
- Switch
Cluster List<FabricProfiles Switch Profile Switch Cluster Profile> - A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Switch
Id string - Value indicating the switch side on which the switch profile or template has to be deployed.*
None
- Switch side not defined for the policy configurations in the switch profile or template.*A
- Policy configurations in the switch profile or template to be deployed on fabric interconnect A.*B
- Policy configurations in the switch profile or template to be deployed on fabric interconnect B. - List<Fabric
Switch Profile Tag> - This complex property has following sub-properties:
- Type string
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - Version
Contexts List<FabricSwitch Profile 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 []FabricSwitch Profile Action Param Args - This complex property has following sub-properties:
- Additional
Properties string - Ancestors
[]Fabric
Switch Profile Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned
Switches []FabricSwitch Profile Assigned Switch Args - A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Associated
Switches []FabricSwitch Profile Associated Switch Args - (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Class
Id 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 []FabricContexts Switch 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 []FabricDetails Switch Profile Config Change Detail Args - (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
- Config
Changes []FabricSwitch Profile Config Change Args - (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- Config
Contexts []FabricSwitch Profile Config Context Args - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- Config
Results []FabricSwitch Profile Config Result Args - (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Create
Time 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.
- Fabric
Switch stringProfile Id - 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.
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Fabric
Switch 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 []FabricSwitch Profile Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Policy
Buckets []FabricSwitch Profile 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 []FabricSwitch Profile Running Workflow Args - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- Scheduled
Actions []FabricSwitch Profile 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 []FabricSwitch Profile 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:
- Switch
Cluster []FabricProfiles Switch Profile Switch Cluster Profile Args - A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Switch
Id string - Value indicating the switch side on which the switch profile or template has to be deployed.*
None
- Switch side not defined for the policy configurations in the switch profile or template.*A
- Policy configurations in the switch profile or template to be deployed on fabric interconnect A.*B
- Policy configurations in the switch profile or template to be deployed on fabric interconnect B. - []Fabric
Switch Profile Tag Args - This complex property has following sub-properties:
- Type string
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - Version
Contexts []FabricSwitch Profile 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<FabricSwitch Profile Action Param> - This complex property has following sub-properties:
- additional
Properties String - ancestors
List<Fabric
Switch Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Switches List<FabricSwitch Profile Assigned Switch> - A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associated
Switches List<FabricSwitch Profile Associated Switch> - (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- class
Id 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<FabricContexts Switch 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<FabricDetails Switch Profile Config Change Detail> - (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes List<FabricSwitch Profile Config Change> - (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- config
Contexts List<FabricSwitch Profile Config Context> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results List<FabricSwitch Profile Config Result> - (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- create
Time 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.
- fabric
Switch StringProfile Id - 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.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Fabric
Switch 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<FabricSwitch Profile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- policy
Buckets List<FabricSwitch Profile 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<FabricSwitch Profile Running Workflow> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions List<FabricSwitch Profile 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<FabricSwitch Profile 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:
- switch
Cluster List<FabricProfiles Switch Profile Switch Cluster Profile> - A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- switch
Id String - Value indicating the switch side on which the switch profile or template has to be deployed.*
None
- Switch side not defined for the policy configurations in the switch profile or template.*A
- Policy configurations in the switch profile or template to be deployed on fabric interconnect A.*B
- Policy configurations in the switch profile or template to be deployed on fabric interconnect B. - List<Fabric
Switch Profile Tag> - This complex property has following sub-properties:
- type String
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - version
Contexts List<FabricSwitch Profile 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 FabricSwitch Profile Action Param[] - This complex property has following sub-properties:
- additional
Properties string - ancestors
Fabric
Switch Profile Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Switches FabricSwitch Profile Assigned Switch[] - A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associated
Switches FabricSwitch Profile Associated Switch[] - (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- class
Id 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 FabricContexts Switch 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 FabricDetails Switch Profile Config Change Detail[] - (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes FabricSwitch Profile Config Change[] - (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- config
Contexts FabricSwitch Profile Config Context[] - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results FabricSwitch Profile Config Result[] - (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- create
Time 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.
- fabric
Switch stringProfile Id - 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.
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Fabric
Switch 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 FabricSwitch Profile Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- policy
Buckets FabricSwitch Profile 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 FabricSwitch Profile Running Workflow[] - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions FabricSwitch Profile 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 FabricSwitch Profile 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:
- switch
Cluster FabricProfiles Switch Profile Switch Cluster Profile[] - A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- switch
Id string - Value indicating the switch side on which the switch profile or template has to be deployed.*
None
- Switch side not defined for the policy configurations in the switch profile or template.*A
- Policy configurations in the switch profile or template to be deployed on fabric interconnect A.*B
- Policy configurations in the switch profile or template to be deployed on fabric interconnect B. - Fabric
Switch Profile Tag[] - This complex property has following sub-properties:
- type string
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - version
Contexts FabricSwitch Profile 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[FabricSwitch Profile Action Param Args] - This complex property has following sub-properties:
- additional_
properties str - ancestors
Sequence[Fabric
Switch Profile Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned_
switches Sequence[FabricSwitch Profile Assigned Switch Args] - A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associated_
switches Sequence[FabricSwitch Profile Associated Switch Args] - (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- config_
change_ Sequence[Fabriccontexts Switch 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[Fabricdetails Switch Profile Config Change Detail Args] - (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
- config_
changes Sequence[FabricSwitch Profile Config Change Args] - (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- config_
contexts Sequence[FabricSwitch Profile Config Context Args] - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config_
results Sequence[FabricSwitch Profile Config Result Args] - (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- create_
time str - (ReadOnly) The time when this managed object was created.
- deployed_
policies Sequence[str] - (Array of schema.TypeString) -
- description str
- Description of the profile.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- fabric_
switch_ strprofile_ id - mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- Name of the profile instance or profile template.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Fabric
Switch 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[FabricSwitch Profile Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- policy_
buckets Sequence[FabricSwitch Profile 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[FabricSwitch Profile Running Workflow Args] - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled_
actions Sequence[FabricSwitch Profile 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[FabricSwitch Profile 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:
- switch_
cluster_ Sequence[Fabricprofiles Switch Profile Switch Cluster Profile Args] - A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- switch_
id str - Value indicating the switch side on which the switch profile or template has to be deployed.*
None
- Switch side not defined for the policy configurations in the switch profile or template.*A
- Policy configurations in the switch profile or template to be deployed on fabric interconnect A.*B
- Policy configurations in the switch profile or template to be deployed on fabric interconnect B. - Sequence[Fabric
Switch Profile Tag Args] - This complex property has following sub-properties:
- type str
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - version_
contexts Sequence[FabricSwitch Profile 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
Switches List<Property Map> - A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associated
Switches List<Property Map> - (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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 fabricConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes List<Property Map> - (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- 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 fabricConfigResult 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.
- fabric
Switch StringProfile Id - 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.
- 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:
- switch
Cluster List<Property Map>Profiles - A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- switch
Id String - Value indicating the switch side on which the switch profile or template has to be deployed.*
None
- Switch side not defined for the policy configurations in the switch profile or template.*A
- Policy configurations in the switch profile or template to be deployed on fabric interconnect A.*B
- Policy configurations in the switch profile or template to be deployed on fabric interconnect B. - List<Property Map>
- This complex property has following sub-properties:
- type String
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - 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 FabricSwitchProfile resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing FabricSwitchProfile Resource
Get an existing FabricSwitchProfile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: FabricSwitchProfileState, opts?: CustomResourceOptions): FabricSwitchProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
action: Optional[str] = None,
action_params: Optional[Sequence[FabricSwitchProfileActionParamArgs]] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[FabricSwitchProfileAncestorArgs]] = None,
assigned_switches: Optional[Sequence[FabricSwitchProfileAssignedSwitchArgs]] = None,
associated_switches: Optional[Sequence[FabricSwitchProfileAssociatedSwitchArgs]] = None,
class_id: Optional[str] = None,
config_change_contexts: Optional[Sequence[FabricSwitchProfileConfigChangeContextArgs]] = None,
config_change_details: Optional[Sequence[FabricSwitchProfileConfigChangeDetailArgs]] = None,
config_changes: Optional[Sequence[FabricSwitchProfileConfigChangeArgs]] = None,
config_contexts: Optional[Sequence[FabricSwitchProfileConfigContextArgs]] = None,
config_results: Optional[Sequence[FabricSwitchProfileConfigResultArgs]] = None,
create_time: Optional[str] = None,
deployed_policies: Optional[Sequence[str]] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
fabric_switch_profile_id: Optional[str] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
object_type: Optional[str] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[FabricSwitchProfileParentArgs]] = None,
permission_resources: Optional[Sequence[FabricSwitchProfilePermissionResourceArgs]] = None,
policy_buckets: Optional[Sequence[FabricSwitchProfilePolicyBucketArgs]] = None,
removed_policies: Optional[Sequence[str]] = None,
running_workflows: Optional[Sequence[FabricSwitchProfileRunningWorkflowArgs]] = None,
scheduled_actions: Optional[Sequence[FabricSwitchProfileScheduledActionArgs]] = None,
shared_scope: Optional[str] = None,
src_templates: Optional[Sequence[FabricSwitchProfileSrcTemplateArgs]] = None,
switch_cluster_profiles: Optional[Sequence[FabricSwitchProfileSwitchClusterProfileArgs]] = None,
switch_id: Optional[str] = None,
tags: Optional[Sequence[FabricSwitchProfileTagArgs]] = None,
type: Optional[str] = None,
version_contexts: Optional[Sequence[FabricSwitchProfileVersionContextArgs]] = None,
wait_for_completion: Optional[bool] = None) -> FabricSwitchProfile
func GetFabricSwitchProfile(ctx *Context, name string, id IDInput, state *FabricSwitchProfileState, opts ...ResourceOption) (*FabricSwitchProfile, error)
public static FabricSwitchProfile Get(string name, Input<string> id, FabricSwitchProfileState? state, CustomResourceOptions? opts = null)
public static FabricSwitchProfile get(String name, Output<String> id, FabricSwitchProfileState state, CustomResourceOptions options)
resources: _: type: intersight:FabricSwitchProfile get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- 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<FabricSwitch Profile Action Param> - This complex property has following sub-properties:
- Additional
Properties string - Ancestors
List<Fabric
Switch Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned
Switches List<FabricSwitch Profile Assigned Switch> - A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Associated
Switches List<FabricSwitch Profile Associated Switch> - (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Class
Id 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<FabricContexts Switch 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<FabricDetails Switch Profile Config Change Detail> - (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
- Config
Changes List<FabricSwitch Profile Config Change> - (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- Config
Contexts List<FabricSwitch Profile Config Context> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- Config
Results List<FabricSwitch Profile Config Result> - (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Create
Time 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.
- Fabric
Switch stringProfile Id - 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.
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Fabric
Switch 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<FabricSwitch Profile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Policy
Buckets List<FabricSwitch Profile 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<FabricSwitch Profile Running Workflow> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- Scheduled
Actions List<FabricSwitch Profile 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<FabricSwitch Profile 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:
- Switch
Cluster List<FabricProfiles Switch Profile Switch Cluster Profile> - A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Switch
Id string - Value indicating the switch side on which the switch profile or template has to be deployed.*
None
- Switch side not defined for the policy configurations in the switch profile or template.*A
- Policy configurations in the switch profile or template to be deployed on fabric interconnect A.*B
- Policy configurations in the switch profile or template to be deployed on fabric interconnect B. - List<Fabric
Switch Profile Tag> - This complex property has following sub-properties:
- Type string
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - Version
Contexts List<FabricSwitch Profile 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 []FabricSwitch Profile Action Param Args - This complex property has following sub-properties:
- Additional
Properties string - Ancestors
[]Fabric
Switch Profile Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned
Switches []FabricSwitch Profile Assigned Switch Args - A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Associated
Switches []FabricSwitch Profile Associated Switch Args - (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Class
Id 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 []FabricContexts Switch 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 []FabricDetails Switch Profile Config Change Detail Args - (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
- Config
Changes []FabricSwitch Profile Config Change Args - (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- Config
Contexts []FabricSwitch Profile Config Context Args - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- Config
Results []FabricSwitch Profile Config Result Args - (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Create
Time 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.
- Fabric
Switch stringProfile Id - 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.
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Fabric
Switch 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 []FabricSwitch Profile Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Policy
Buckets []FabricSwitch Profile 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 []FabricSwitch Profile Running Workflow Args - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- Scheduled
Actions []FabricSwitch Profile 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 []FabricSwitch Profile 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:
- Switch
Cluster []FabricProfiles Switch Profile Switch Cluster Profile Args - A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Switch
Id string - Value indicating the switch side on which the switch profile or template has to be deployed.*
None
- Switch side not defined for the policy configurations in the switch profile or template.*A
- Policy configurations in the switch profile or template to be deployed on fabric interconnect A.*B
- Policy configurations in the switch profile or template to be deployed on fabric interconnect B. - []Fabric
Switch Profile Tag Args - This complex property has following sub-properties:
- Type string
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - Version
Contexts []FabricSwitch Profile 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<FabricSwitch Profile Action Param> - This complex property has following sub-properties:
- additional
Properties String - ancestors
List<Fabric
Switch Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Switches List<FabricSwitch Profile Assigned Switch> - A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associated
Switches List<FabricSwitch Profile Associated Switch> - (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- class
Id 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<FabricContexts Switch 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<FabricDetails Switch Profile Config Change Detail> - (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes List<FabricSwitch Profile Config Change> - (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- config
Contexts List<FabricSwitch Profile Config Context> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results List<FabricSwitch Profile Config Result> - (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- create
Time 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.
- fabric
Switch StringProfile Id - 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.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Fabric
Switch 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<FabricSwitch Profile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- policy
Buckets List<FabricSwitch Profile 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<FabricSwitch Profile Running Workflow> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions List<FabricSwitch Profile 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<FabricSwitch Profile 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:
- switch
Cluster List<FabricProfiles Switch Profile Switch Cluster Profile> - A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- switch
Id String - Value indicating the switch side on which the switch profile or template has to be deployed.*
None
- Switch side not defined for the policy configurations in the switch profile or template.*A
- Policy configurations in the switch profile or template to be deployed on fabric interconnect A.*B
- Policy configurations in the switch profile or template to be deployed on fabric interconnect B. - List<Fabric
Switch Profile Tag> - This complex property has following sub-properties:
- type String
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - version
Contexts List<FabricSwitch Profile 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 FabricSwitch Profile Action Param[] - This complex property has following sub-properties:
- additional
Properties string - ancestors
Fabric
Switch Profile Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Switches FabricSwitch Profile Assigned Switch[] - A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associated
Switches FabricSwitch Profile Associated Switch[] - (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- class
Id 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 FabricContexts Switch 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 FabricDetails Switch Profile Config Change Detail[] - (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes FabricSwitch Profile Config Change[] - (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- config
Contexts FabricSwitch Profile Config Context[] - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results FabricSwitch Profile Config Result[] - (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- create
Time 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.
- fabric
Switch stringProfile Id - 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.
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Fabric
Switch 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 FabricSwitch Profile Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- policy
Buckets FabricSwitch Profile 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 FabricSwitch Profile Running Workflow[] - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions FabricSwitch Profile 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 FabricSwitch Profile 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:
- switch
Cluster FabricProfiles Switch Profile Switch Cluster Profile[] - A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- switch
Id string - Value indicating the switch side on which the switch profile or template has to be deployed.*
None
- Switch side not defined for the policy configurations in the switch profile or template.*A
- Policy configurations in the switch profile or template to be deployed on fabric interconnect A.*B
- Policy configurations in the switch profile or template to be deployed on fabric interconnect B. - Fabric
Switch Profile Tag[] - This complex property has following sub-properties:
- type string
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - version
Contexts FabricSwitch Profile 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[FabricSwitch Profile Action Param Args] - This complex property has following sub-properties:
- additional_
properties str - ancestors
Sequence[Fabric
Switch Profile Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned_
switches Sequence[FabricSwitch Profile Assigned Switch Args] - A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associated_
switches Sequence[FabricSwitch Profile Associated Switch Args] - (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- config_
change_ Sequence[Fabriccontexts Switch 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[Fabricdetails Switch Profile Config Change Detail Args] - (ReadOnly) An array of relationships to fabricConfigChangeDetail resources. This complex property has following sub-properties:
- config_
changes Sequence[FabricSwitch Profile Config Change Args] - (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- config_
contexts Sequence[FabricSwitch Profile Config Context Args] - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config_
results Sequence[FabricSwitch Profile Config Result Args] - (ReadOnly) A reference to a fabricConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- create_
time str - (ReadOnly) The time when this managed object was created.
- deployed_
policies Sequence[str] - (Array of schema.TypeString) -
- description str
- Description of the profile.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- fabric_
switch_ strprofile_ id - mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- Name of the profile instance or profile template.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Fabric
Switch 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[FabricSwitch Profile Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- policy_
buckets Sequence[FabricSwitch Profile 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[FabricSwitch Profile Running Workflow Args] - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled_
actions Sequence[FabricSwitch Profile 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[FabricSwitch Profile 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:
- switch_
cluster_ Sequence[Fabricprofiles Switch Profile Switch Cluster Profile Args] - A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- switch_
id str - Value indicating the switch side on which the switch profile or template has to be deployed.*
None
- Switch side not defined for the policy configurations in the switch profile or template.*A
- Policy configurations in the switch profile or template to be deployed on fabric interconnect A.*B
- Policy configurations in the switch profile or template to be deployed on fabric interconnect B. - Sequence[Fabric
Switch Profile Tag Args] - This complex property has following sub-properties:
- type str
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - version_
contexts Sequence[FabricSwitch Profile 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
Switches List<Property Map> - A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associated
Switches List<Property Map> - (ReadOnly) A reference to a networkElement resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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 fabricConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes List<Property Map> - (ReadOnly) This lists the pending configuration changes at the summary level. Detailed changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- 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 fabricConfigResult 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.
- fabric
Switch StringProfile Id - 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.
- 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:
- switch
Cluster List<Property Map>Profiles - A reference to a fabricSwitchClusterProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- switch
Id String - Value indicating the switch side on which the switch profile or template has to be deployed.*
None
- Switch side not defined for the policy configurations in the switch profile or template.*A
- Policy configurations in the switch profile or template to be deployed on fabric interconnect A.*B
- Policy configurations in the switch profile or template to be deployed on fabric interconnect B. - List<Property Map>
- This complex property has following sub-properties:
- type String
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - 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
FabricSwitchProfileActionParam, FabricSwitchProfileActionParamArgs
- 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.
FabricSwitchProfileAncestor, FabricSwitchProfileAncestorArgs
- 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'.
FabricSwitchProfileAssignedSwitch, FabricSwitchProfileAssignedSwitchArgs
- 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'.
FabricSwitchProfileAssociatedSwitch, FabricSwitchProfileAssociatedSwitchArgs
- 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'.
FabricSwitchProfileConfigChange, FabricSwitchProfileConfigChangeArgs
- 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<FabricSwitch Profile 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 []FabricSwitch Profile 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<FabricSwitch Profile 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 FabricSwitch Profile 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[FabricSwitch Profile 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:
FabricSwitchProfileConfigChangeContext, FabricSwitchProfileConfigChangeContextArgs
- 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<FabricContexts Switch 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 []FabricContexts Switch 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<FabricContexts Switch 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 FabricContexts Switch 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[Fabriccontexts Switch 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.
FabricSwitchProfileConfigChangeContextInitialConfigContext, FabricSwitchProfileConfigChangeContextInitialConfigContextArgs
- 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.
FabricSwitchProfileConfigChangeDetail, FabricSwitchProfileConfigChangeDetailArgs
- 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'.
FabricSwitchProfileConfigChangePolicyDisruption, FabricSwitchProfileConfigChangePolicyDisruptionArgs
- 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) -
FabricSwitchProfileConfigContext, FabricSwitchProfileConfigContextArgs
- 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.
FabricSwitchProfileConfigResult, FabricSwitchProfileConfigResultArgs
- 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'.
FabricSwitchProfileParent, FabricSwitchProfileParentArgs
- 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'.
FabricSwitchProfilePermissionResource, FabricSwitchProfilePermissionResourceArgs
- 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'.
FabricSwitchProfilePolicyBucket, FabricSwitchProfilePolicyBucketArgs
- 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'.
FabricSwitchProfileRunningWorkflow, FabricSwitchProfileRunningWorkflowArgs
- 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'.
FabricSwitchProfileScheduledAction, FabricSwitchProfileScheduledActionArgs
- Action string
- Name of the action to be performed on the profile.
- Action
Qualifiers List<FabricSwitch Profile 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 []FabricSwitch Profile 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<FabricSwitch Profile 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 FabricSwitch Profile 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[FabricSwitch Profile 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.
FabricSwitchProfileScheduledActionActionQualifier, FabricSwitchProfileScheduledActionActionQualifierArgs
- 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.
FabricSwitchProfileSrcTemplate, FabricSwitchProfileSrcTemplateArgs
- 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'.
FabricSwitchProfileSwitchClusterProfile, FabricSwitchProfileSwitchClusterProfileArgs
- 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'.
FabricSwitchProfileTag, FabricSwitchProfileTagArgs
- 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.
FabricSwitchProfileVersionContext, FabricSwitchProfileVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<FabricSwitch Profile 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<FabricSwitch Profile 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 []FabricSwitch Profile 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 []FabricSwitch Profile 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<FabricSwitch Profile 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<FabricSwitch Profile 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 FabricSwitch Profile 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 FabricSwitch Profile 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[FabricSwitch Profile 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[FabricSwitch Profile 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.
FabricSwitchProfileVersionContextInterestedMo, FabricSwitchProfileVersionContextInterestedMoArgs
- 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'.
FabricSwitchProfileVersionContextRefMo, FabricSwitchProfileVersionContextRefMoArgs
- 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_fabric_switch_profile
can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/fabricSwitchProfile:FabricSwitchProfile example 1234567890987654321abcde
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- intersight ciscodevnet/terraform-provider-intersight
- License
- Notes
- This Pulumi package is based on the
intersight
Terraform Provider.