intersight.FabricSwitchControlPolicy
Explore with Pulumi AI
A policy to configure the Switching Mode, Port VLAN Optimization, MAC Aging Time, Reserved VLAN Range of the FI.
Usage Example
Resource Creation
import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";
const fabricSwitchControlPolicy1 = new intersight.FabricSwitchControlPolicy("fabricSwitchControlPolicy1", {
description: "fabric switch control policy",
macAgingSettings: [{
macAgingOption: "Custom",
macAgingTime: 3000,
objectType: "fabric.MacAgingSettings",
}],
vlanPortOptimizationEnabled: true,
organizations: [{
objectType: "organization.Organization",
moid: _var.organization,
}],
});
import pulumi
import pulumi_intersight as intersight
fabric_switch_control_policy1 = intersight.FabricSwitchControlPolicy("fabricSwitchControlPolicy1",
description="fabric switch control policy",
mac_aging_settings=[{
"mac_aging_option": "Custom",
"mac_aging_time": 3000,
"object_type": "fabric.MacAgingSettings",
}],
vlan_port_optimization_enabled=True,
organizations=[{
"object_type": "organization.Organization",
"moid": var["organization"],
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := intersight.NewFabricSwitchControlPolicy(ctx, "fabricSwitchControlPolicy1", &intersight.FabricSwitchControlPolicyArgs{
Description: pulumi.String("fabric switch control policy"),
MacAgingSettings: intersight.FabricSwitchControlPolicyMacAgingSettingArray{
&intersight.FabricSwitchControlPolicyMacAgingSettingArgs{
MacAgingOption: pulumi.String("Custom"),
MacAgingTime: pulumi.Float64(3000),
ObjectType: pulumi.String("fabric.MacAgingSettings"),
},
},
VlanPortOptimizationEnabled: pulumi.Bool(true),
Organizations: intersight.FabricSwitchControlPolicyOrganizationArray{
&intersight.FabricSwitchControlPolicyOrganizationArgs{
ObjectType: pulumi.String("organization.Organization"),
Moid: pulumi.Any(_var.Organization),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() =>
{
var fabricSwitchControlPolicy1 = new Intersight.FabricSwitchControlPolicy("fabricSwitchControlPolicy1", new()
{
Description = "fabric switch control policy",
MacAgingSettings = new[]
{
new Intersight.Inputs.FabricSwitchControlPolicyMacAgingSettingArgs
{
MacAgingOption = "Custom",
MacAgingTime = 3000,
ObjectType = "fabric.MacAgingSettings",
},
},
VlanPortOptimizationEnabled = true,
Organizations = new[]
{
new Intersight.Inputs.FabricSwitchControlPolicyOrganizationArgs
{
ObjectType = "organization.Organization",
Moid = @var.Organization,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.FabricSwitchControlPolicy;
import com.pulumi.intersight.FabricSwitchControlPolicyArgs;
import com.pulumi.intersight.inputs.FabricSwitchControlPolicyMacAgingSettingArgs;
import com.pulumi.intersight.inputs.FabricSwitchControlPolicyOrganizationArgs;
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 fabricSwitchControlPolicy1 = new FabricSwitchControlPolicy("fabricSwitchControlPolicy1", FabricSwitchControlPolicyArgs.builder()
.description("fabric switch control policy")
.macAgingSettings(FabricSwitchControlPolicyMacAgingSettingArgs.builder()
.macAgingOption("Custom")
.macAgingTime(3000)
.objectType("fabric.MacAgingSettings")
.build())
.vlanPortOptimizationEnabled(true)
.organizations(FabricSwitchControlPolicyOrganizationArgs.builder()
.objectType("organization.Organization")
.moid(var_.organization())
.build())
.build());
}
}
resources:
fabricSwitchControlPolicy1:
type: intersight:FabricSwitchControlPolicy
properties:
description: fabric switch control policy
macAgingSettings:
- macAgingOption: Custom
macAgingTime: 3000
objectType: fabric.MacAgingSettings
vlanPortOptimizationEnabled: true
organizations:
- objectType: organization.Organization
moid: ${var.organization}
Create FabricSwitchControlPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FabricSwitchControlPolicy(name: string, args?: FabricSwitchControlPolicyArgs, opts?: CustomResourceOptions);
@overload
def FabricSwitchControlPolicy(resource_name: str,
args: Optional[FabricSwitchControlPolicyArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def FabricSwitchControlPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[FabricSwitchControlPolicyAncestorArgs]] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
ethernet_switching_mode: Optional[str] = None,
fabric_pc_vhba_reset: Optional[str] = None,
fabric_switch_control_policy_id: Optional[str] = None,
fc_switching_mode: Optional[str] = None,
mac_aging_settings: Optional[Sequence[FabricSwitchControlPolicyMacAgingSettingArgs]] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
object_type: Optional[str] = None,
organizations: Optional[Sequence[FabricSwitchControlPolicyOrganizationArgs]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[FabricSwitchControlPolicyParentArgs]] = None,
permission_resources: Optional[Sequence[FabricSwitchControlPolicyPermissionResourceArgs]] = None,
profiles: Optional[Sequence[FabricSwitchControlPolicyProfileArgs]] = None,
reserved_vlan_start_id: Optional[float] = None,
shared_scope: Optional[str] = None,
tags: Optional[Sequence[FabricSwitchControlPolicyTagArgs]] = None,
udld_settings: Optional[Sequence[FabricSwitchControlPolicyUdldSettingArgs]] = None,
version_contexts: Optional[Sequence[FabricSwitchControlPolicyVersionContextArgs]] = None,
vlan_port_optimization_enabled: Optional[bool] = None)
func NewFabricSwitchControlPolicy(ctx *Context, name string, args *FabricSwitchControlPolicyArgs, opts ...ResourceOption) (*FabricSwitchControlPolicy, error)
public FabricSwitchControlPolicy(string name, FabricSwitchControlPolicyArgs? args = null, CustomResourceOptions? opts = null)
public FabricSwitchControlPolicy(String name, FabricSwitchControlPolicyArgs args)
public FabricSwitchControlPolicy(String name, FabricSwitchControlPolicyArgs args, CustomResourceOptions options)
type: intersight:FabricSwitchControlPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args FabricSwitchControlPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args FabricSwitchControlPolicyArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args FabricSwitchControlPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args FabricSwitchControlPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. FabricSwitchControlPolicyArgs - 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 fabricSwitchControlPolicyResource = new Intersight.FabricSwitchControlPolicy("fabricSwitchControlPolicyResource", new()
{
AccountMoid = "string",
AdditionalProperties = "string",
Ancestors = new[]
{
new Intersight.Inputs.FabricSwitchControlPolicyAncestorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ClassId = "string",
CreateTime = "string",
Description = "string",
DomainGroupMoid = "string",
EthernetSwitchingMode = "string",
FabricPcVhbaReset = "string",
FabricSwitchControlPolicyId = "string",
FcSwitchingMode = "string",
MacAgingSettings = new[]
{
new Intersight.Inputs.FabricSwitchControlPolicyMacAgingSettingArgs
{
AdditionalProperties = "string",
ClassId = "string",
MacAgingOption = "string",
MacAgingTime = 0,
ObjectType = "string",
},
},
ModTime = "string",
Moid = "string",
Name = "string",
ObjectType = "string",
Organizations = new[]
{
new Intersight.Inputs.FabricSwitchControlPolicyOrganizationArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Owners = new[]
{
"string",
},
Parents = new[]
{
new Intersight.Inputs.FabricSwitchControlPolicyParentArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PermissionResources = new[]
{
new Intersight.Inputs.FabricSwitchControlPolicyPermissionResourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Profiles = new[]
{
new Intersight.Inputs.FabricSwitchControlPolicyProfileArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ReservedVlanStartId = 0,
SharedScope = "string",
Tags = new[]
{
new Intersight.Inputs.FabricSwitchControlPolicyTagArgs
{
AdditionalProperties = "string",
Key = "string",
Value = "string",
},
},
UdldSettings = new[]
{
new Intersight.Inputs.FabricSwitchControlPolicyUdldSettingArgs
{
AdditionalProperties = "string",
ClassId = "string",
MessageInterval = 0,
ObjectType = "string",
RecoveryAction = "string",
},
},
VersionContexts = new[]
{
new Intersight.Inputs.FabricSwitchControlPolicyVersionContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
InterestedMos = new[]
{
new Intersight.Inputs.FabricSwitchControlPolicyVersionContextInterestedMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
MarkedForDeletion = false,
NrVersion = "string",
ObjectType = "string",
RefMos = new[]
{
new Intersight.Inputs.FabricSwitchControlPolicyVersionContextRefMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Timestamp = "string",
VersionType = "string",
},
},
VlanPortOptimizationEnabled = false,
});
example, err := intersight.NewFabricSwitchControlPolicy(ctx, "fabricSwitchControlPolicyResource", &intersight.FabricSwitchControlPolicyArgs{
AccountMoid: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
Ancestors: .FabricSwitchControlPolicyAncestorArray{
&.FabricSwitchControlPolicyAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ClassId: pulumi.String("string"),
CreateTime: pulumi.String("string"),
Description: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
EthernetSwitchingMode: pulumi.String("string"),
FabricPcVhbaReset: pulumi.String("string"),
FabricSwitchControlPolicyId: pulumi.String("string"),
FcSwitchingMode: pulumi.String("string"),
MacAgingSettings: .FabricSwitchControlPolicyMacAgingSettingArray{
&.FabricSwitchControlPolicyMacAgingSettingArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
MacAgingOption: pulumi.String("string"),
MacAgingTime: pulumi.Float64(0),
ObjectType: pulumi.String("string"),
},
},
ModTime: pulumi.String("string"),
Moid: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Organizations: .FabricSwitchControlPolicyOrganizationArray{
&.FabricSwitchControlPolicyOrganizationArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Owners: pulumi.StringArray{
pulumi.String("string"),
},
Parents: .FabricSwitchControlPolicyParentArray{
&.FabricSwitchControlPolicyParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: .FabricSwitchControlPolicyPermissionResourceArray{
&.FabricSwitchControlPolicyPermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Profiles: .FabricSwitchControlPolicyProfileArray{
&.FabricSwitchControlPolicyProfileArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ReservedVlanStartId: pulumi.Float64(0),
SharedScope: pulumi.String("string"),
Tags: .FabricSwitchControlPolicyTagArray{
&.FabricSwitchControlPolicyTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
UdldSettings: .FabricSwitchControlPolicyUdldSettingArray{
&.FabricSwitchControlPolicyUdldSettingArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
MessageInterval: pulumi.Float64(0),
ObjectType: pulumi.String("string"),
RecoveryAction: pulumi.String("string"),
},
},
VersionContexts: .FabricSwitchControlPolicyVersionContextArray{
&.FabricSwitchControlPolicyVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: .FabricSwitchControlPolicyVersionContextInterestedMoArray{
&.FabricSwitchControlPolicyVersionContextInterestedMoArgs{
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: .FabricSwitchControlPolicyVersionContextRefMoArray{
&.FabricSwitchControlPolicyVersionContextRefMoArgs{
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"),
},
},
VlanPortOptimizationEnabled: pulumi.Bool(false),
})
var fabricSwitchControlPolicyResource = new FabricSwitchControlPolicy("fabricSwitchControlPolicyResource", FabricSwitchControlPolicyArgs.builder()
.accountMoid("string")
.additionalProperties("string")
.ancestors(FabricSwitchControlPolicyAncestorArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.classId("string")
.createTime("string")
.description("string")
.domainGroupMoid("string")
.ethernetSwitchingMode("string")
.fabricPcVhbaReset("string")
.fabricSwitchControlPolicyId("string")
.fcSwitchingMode("string")
.macAgingSettings(FabricSwitchControlPolicyMacAgingSettingArgs.builder()
.additionalProperties("string")
.classId("string")
.macAgingOption("string")
.macAgingTime(0)
.objectType("string")
.build())
.modTime("string")
.moid("string")
.name("string")
.objectType("string")
.organizations(FabricSwitchControlPolicyOrganizationArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.owners("string")
.parents(FabricSwitchControlPolicyParentArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.permissionResources(FabricSwitchControlPolicyPermissionResourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.profiles(FabricSwitchControlPolicyProfileArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.reservedVlanStartId(0)
.sharedScope("string")
.tags(FabricSwitchControlPolicyTagArgs.builder()
.additionalProperties("string")
.key("string")
.value("string")
.build())
.udldSettings(FabricSwitchControlPolicyUdldSettingArgs.builder()
.additionalProperties("string")
.classId("string")
.messageInterval(0)
.objectType("string")
.recoveryAction("string")
.build())
.versionContexts(FabricSwitchControlPolicyVersionContextArgs.builder()
.additionalProperties("string")
.classId("string")
.interestedMos(FabricSwitchControlPolicyVersionContextInterestedMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.markedForDeletion(false)
.nrVersion("string")
.objectType("string")
.refMos(FabricSwitchControlPolicyVersionContextRefMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.timestamp("string")
.versionType("string")
.build())
.vlanPortOptimizationEnabled(false)
.build());
fabric_switch_control_policy_resource = intersight.FabricSwitchControlPolicy("fabricSwitchControlPolicyResource",
account_moid="string",
additional_properties="string",
ancestors=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
class_id="string",
create_time="string",
description="string",
domain_group_moid="string",
ethernet_switching_mode="string",
fabric_pc_vhba_reset="string",
fabric_switch_control_policy_id="string",
fc_switching_mode="string",
mac_aging_settings=[{
"additional_properties": "string",
"class_id": "string",
"mac_aging_option": "string",
"mac_aging_time": 0,
"object_type": "string",
}],
mod_time="string",
moid="string",
name="string",
object_type="string",
organizations=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
owners=["string"],
parents=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
permission_resources=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
profiles=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
reserved_vlan_start_id=0,
shared_scope="string",
tags=[{
"additional_properties": "string",
"key": "string",
"value": "string",
}],
udld_settings=[{
"additional_properties": "string",
"class_id": "string",
"message_interval": 0,
"object_type": "string",
"recovery_action": "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",
}],
vlan_port_optimization_enabled=False)
const fabricSwitchControlPolicyResource = new intersight.FabricSwitchControlPolicy("fabricSwitchControlPolicyResource", {
accountMoid: "string",
additionalProperties: "string",
ancestors: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
classId: "string",
createTime: "string",
description: "string",
domainGroupMoid: "string",
ethernetSwitchingMode: "string",
fabricPcVhbaReset: "string",
fabricSwitchControlPolicyId: "string",
fcSwitchingMode: "string",
macAgingSettings: [{
additionalProperties: "string",
classId: "string",
macAgingOption: "string",
macAgingTime: 0,
objectType: "string",
}],
modTime: "string",
moid: "string",
name: "string",
objectType: "string",
organizations: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
owners: ["string"],
parents: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
permissionResources: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
profiles: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
reservedVlanStartId: 0,
sharedScope: "string",
tags: [{
additionalProperties: "string",
key: "string",
value: "string",
}],
udldSettings: [{
additionalProperties: "string",
classId: "string",
messageInterval: 0,
objectType: "string",
recoveryAction: "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",
}],
vlanPortOptimizationEnabled: false,
});
type: intersight:FabricSwitchControlPolicy
properties:
accountMoid: string
additionalProperties: string
ancestors:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
classId: string
createTime: string
description: string
domainGroupMoid: string
ethernetSwitchingMode: string
fabricPcVhbaReset: string
fabricSwitchControlPolicyId: string
fcSwitchingMode: string
macAgingSettings:
- additionalProperties: string
classId: string
macAgingOption: string
macAgingTime: 0
objectType: string
modTime: string
moid: string
name: string
objectType: string
organizations:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
owners:
- string
parents:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
permissionResources:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
profiles:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
reservedVlanStartId: 0
sharedScope: string
tags:
- additionalProperties: string
key: string
value: string
udldSettings:
- additionalProperties: string
classId: string
messageInterval: 0
objectType: string
recoveryAction: 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
vlanPortOptimizationEnabled: false
FabricSwitchControlPolicy 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 FabricSwitchControlPolicy resource accepts the following input properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Fabric
Switch Control Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Ethernet
Switching stringMode - Enable or Disable Ethernet End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - Fabric
Pc stringVhba Reset - When enabled, a Registered State Change Notification (RSCN) is sent to the VIC adapter when any member port within the fabric port-channel goes down and vHBA would reset to restore the connection immediately. When disabled (default), vHBA reset is done only when all the members of a fabric port-channel are down.*
Disabled
- Admin configured Disabled State.*Enabled
- Admin configured Enabled State. - Fabric
Switch stringControl Policy Id - Fc
Switching stringMode - Enable or Disable FC End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - Mac
Aging List<FabricSettings Switch Control Policy Mac Aging Setting> - This specifies the MAC aging option and time settings. This complex property has following sub-properties:
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Fabric
Switch Control Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Fabric
Switch Control Policy 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 Control Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
List<Fabric
Switch Control Policy Profile> - An array of relationships to fabricBaseSwitchProfile resources. This complex property has following sub-properties:
- Reserved
Vlan doubleStart Id - The starting ID for VLANs reserved for internal use within the Fabric Interconnect. This VLAN ID is the starting ID ofa contiguous block of 128 VLANs that cannot be configured for user data. This range of VLANs cannot be configured inVLAN policy.If this property is not configured, VLAN range 3915 - 4042 is reserved for internal use by default.
- 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.
- List<Fabric
Switch Control Policy Tag> - This complex property has following sub-properties:
- Udld
Settings List<FabricSwitch Control Policy Udld Setting> - This specifies the UDLD Global configurations for this switch. This complex property has following sub-properties:
- Version
Contexts List<FabricSwitch Control Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vlan
Port boolOptimization Enabled - To enable or disable the VLAN port count optimization. This feature will always be enabled for Cisco UCS Fabric Interconnect 9108 100G.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Fabric
Switch Control Policy Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Ethernet
Switching stringMode - Enable or Disable Ethernet End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - Fabric
Pc stringVhba Reset - When enabled, a Registered State Change Notification (RSCN) is sent to the VIC adapter when any member port within the fabric port-channel goes down and vHBA would reset to restore the connection immediately. When disabled (default), vHBA reset is done only when all the members of a fabric port-channel are down.*
Disabled
- Admin configured Disabled State.*Enabled
- Admin configured Enabled State. - Fabric
Switch stringControl Policy Id - Fc
Switching stringMode - Enable or Disable FC End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - Mac
Aging []FabricSettings Switch Control Policy Mac Aging Setting Args - This specifies the MAC aging option and time settings. This complex property has following sub-properties:
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Fabric
Switch Control Policy Organization Args - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Fabric
Switch Control Policy 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 Control Policy Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
[]Fabric
Switch Control Policy Profile Args - An array of relationships to fabricBaseSwitchProfile resources. This complex property has following sub-properties:
- Reserved
Vlan float64Start Id - The starting ID for VLANs reserved for internal use within the Fabric Interconnect. This VLAN ID is the starting ID ofa contiguous block of 128 VLANs that cannot be configured for user data. This range of VLANs cannot be configured inVLAN policy.If this property is not configured, VLAN range 3915 - 4042 is reserved for internal use by default.
- 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.
- []Fabric
Switch Control Policy Tag Args - This complex property has following sub-properties:
- Udld
Settings []FabricSwitch Control Policy Udld Setting Args - This specifies the UDLD Global configurations for this switch. This complex property has following sub-properties:
- Version
Contexts []FabricSwitch Control Policy Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vlan
Port boolOptimization Enabled - To enable or disable the VLAN port count optimization. This feature will always be enabled for Cisco UCS Fabric Interconnect 9108 100G.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Fabric
Switch Control Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- ethernet
Switching StringMode - Enable or Disable Ethernet End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - fabric
Pc StringVhba Reset - When enabled, a Registered State Change Notification (RSCN) is sent to the VIC adapter when any member port within the fabric port-channel goes down and vHBA would reset to restore the connection immediately. When disabled (default), vHBA reset is done only when all the members of a fabric port-channel are down.*
Disabled
- Admin configured Disabled State.*Enabled
- Admin configured Enabled State. - fabric
Switch StringControl Policy Id - fc
Switching StringMode - Enable or Disable FC End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - mac
Aging List<FabricSettings Switch Control Policy Mac Aging Setting> - This specifies the MAC aging option and time settings. This complex property has following sub-properties:
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Fabric
Switch Control Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Fabric
Switch Control Policy 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 Control Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
List<Fabric
Switch Control Policy Profile> - An array of relationships to fabricBaseSwitchProfile resources. This complex property has following sub-properties:
- reserved
Vlan DoubleStart Id - The starting ID for VLANs reserved for internal use within the Fabric Interconnect. This VLAN ID is the starting ID ofa contiguous block of 128 VLANs that cannot be configured for user data. This range of VLANs cannot be configured inVLAN policy.If this property is not configured, VLAN range 3915 - 4042 is reserved for internal use by default.
- 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.
- List<Fabric
Switch Control Policy Tag> - This complex property has following sub-properties:
- udld
Settings List<FabricSwitch Control Policy Udld Setting> - This specifies the UDLD Global configurations for this switch. This complex property has following sub-properties:
- version
Contexts List<FabricSwitch Control Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vlan
Port BooleanOptimization Enabled - To enable or disable the VLAN port count optimization. This feature will always be enabled for Cisco UCS Fabric Interconnect 9108 100G.
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Fabric
Switch Control Policy Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- Description of the policy.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- ethernet
Switching stringMode - Enable or Disable Ethernet End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - fabric
Pc stringVhba Reset - When enabled, a Registered State Change Notification (RSCN) is sent to the VIC adapter when any member port within the fabric port-channel goes down and vHBA would reset to restore the connection immediately. When disabled (default), vHBA reset is done only when all the members of a fabric port-channel are down.*
Disabled
- Admin configured Disabled State.*Enabled
- Admin configured Enabled State. - fabric
Switch stringControl Policy Id - fc
Switching stringMode - Enable or Disable FC End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - mac
Aging FabricSettings Switch Control Policy Mac Aging Setting[] - This specifies the MAC aging option and time settings. This complex property has following sub-properties:
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the concrete policy.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Fabric
Switch Control Policy Organization[] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Fabric
Switch Control Policy 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 Control Policy Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Fabric
Switch Control Policy Profile[] - An array of relationships to fabricBaseSwitchProfile resources. This complex property has following sub-properties:
- reserved
Vlan numberStart Id - The starting ID for VLANs reserved for internal use within the Fabric Interconnect. This VLAN ID is the starting ID ofa contiguous block of 128 VLANs that cannot be configured for user data. This range of VLANs cannot be configured inVLAN policy.If this property is not configured, VLAN range 3915 - 4042 is reserved for internal use by default.
- 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.
- Fabric
Switch Control Policy Tag[] - This complex property has following sub-properties:
- udld
Settings FabricSwitch Control Policy Udld Setting[] - This specifies the UDLD Global configurations for this switch. This complex property has following sub-properties:
- version
Contexts FabricSwitch Control Policy Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vlan
Port booleanOptimization Enabled - To enable or disable the VLAN port count optimization. This feature will always be enabled for Cisco UCS Fabric Interconnect 9108 100G.
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Fabric
Switch Control Policy Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- create_
time str - (ReadOnly) The time when this managed object was created.
- description str
- Description of the policy.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- ethernet_
switching_ strmode - Enable or Disable Ethernet End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - fabric_
pc_ strvhba_ reset - When enabled, a Registered State Change Notification (RSCN) is sent to the VIC adapter when any member port within the fabric port-channel goes down and vHBA would reset to restore the connection immediately. When disabled (default), vHBA reset is done only when all the members of a fabric port-channel are down.*
Disabled
- Admin configured Disabled State.*Enabled
- Admin configured Enabled State. - fabric_
switch_ strcontrol_ policy_ id - fc_
switching_ strmode - Enable or Disable FC End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - mac_
aging_ Sequence[Fabricsettings Switch Control Policy Mac Aging Setting Args] - This specifies the MAC aging option and time settings. This complex property has following sub-properties:
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- Name of the concrete policy.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Sequence[Fabric
Switch Control Policy Organization Args] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Fabric
Switch Control Policy 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 Control Policy Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Sequence[Fabric
Switch Control Policy Profile Args] - An array of relationships to fabricBaseSwitchProfile resources. This complex property has following sub-properties:
- reserved_
vlan_ floatstart_ id - The starting ID for VLANs reserved for internal use within the Fabric Interconnect. This VLAN ID is the starting ID ofa contiguous block of 128 VLANs that cannot be configured for user data. This range of VLANs cannot be configured inVLAN policy.If this property is not configured, VLAN range 3915 - 4042 is reserved for internal use by default.
- 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.
- Sequence[Fabric
Switch Control Policy Tag Args] - This complex property has following sub-properties:
- udld_
settings Sequence[FabricSwitch Control Policy Udld Setting Args] - This specifies the UDLD Global configurations for this switch. This complex property has following sub-properties:
- version_
contexts Sequence[FabricSwitch Control Policy Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vlan_
port_ booloptimization_ enabled - To enable or disable the VLAN port count optimization. This feature will always be enabled for Cisco UCS Fabric Interconnect 9108 100G.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. 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.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- ethernet
Switching StringMode - Enable or Disable Ethernet End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - fabric
Pc StringVhba Reset - When enabled, a Registered State Change Notification (RSCN) is sent to the VIC adapter when any member port within the fabric port-channel goes down and vHBA would reset to restore the connection immediately. When disabled (default), vHBA reset is done only when all the members of a fabric port-channel are down.*
Disabled
- Admin configured Disabled State.*Enabled
- Admin configured Enabled State. - fabric
Switch StringControl Policy Id - fc
Switching StringMode - Enable or Disable FC End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - mac
Aging List<Property Map>Settings - This specifies the MAC aging option and time settings. This complex property has following sub-properties:
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles List<Property Map>
- An array of relationships to fabricBaseSwitchProfile resources. This complex property has following sub-properties:
- reserved
Vlan NumberStart Id - The starting ID for VLANs reserved for internal use within the Fabric Interconnect. This VLAN ID is the starting ID ofa contiguous block of 128 VLANs that cannot be configured for user data. This range of VLANs cannot be configured inVLAN policy.If this property is not configured, VLAN range 3915 - 4042 is reserved for internal use by default.
- 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.
- List<Property Map>
- This complex property has following sub-properties:
- udld
Settings List<Property Map> - This specifies the UDLD Global configurations for this switch. This complex property has following sub-properties:
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vlan
Port BooleanOptimization Enabled - To enable or disable the VLAN port count optimization. This feature will always be enabled for Cisco UCS Fabric Interconnect 9108 100G.
Outputs
All input properties are implicitly available as output properties. Additionally, the FabricSwitchControlPolicy 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 FabricSwitchControlPolicy Resource
Get an existing FabricSwitchControlPolicy 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?: FabricSwitchControlPolicyState, opts?: CustomResourceOptions): FabricSwitchControlPolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[FabricSwitchControlPolicyAncestorArgs]] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
ethernet_switching_mode: Optional[str] = None,
fabric_pc_vhba_reset: Optional[str] = None,
fabric_switch_control_policy_id: Optional[str] = None,
fc_switching_mode: Optional[str] = None,
mac_aging_settings: Optional[Sequence[FabricSwitchControlPolicyMacAgingSettingArgs]] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
object_type: Optional[str] = None,
organizations: Optional[Sequence[FabricSwitchControlPolicyOrganizationArgs]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[FabricSwitchControlPolicyParentArgs]] = None,
permission_resources: Optional[Sequence[FabricSwitchControlPolicyPermissionResourceArgs]] = None,
profiles: Optional[Sequence[FabricSwitchControlPolicyProfileArgs]] = None,
reserved_vlan_start_id: Optional[float] = None,
shared_scope: Optional[str] = None,
tags: Optional[Sequence[FabricSwitchControlPolicyTagArgs]] = None,
udld_settings: Optional[Sequence[FabricSwitchControlPolicyUdldSettingArgs]] = None,
version_contexts: Optional[Sequence[FabricSwitchControlPolicyVersionContextArgs]] = None,
vlan_port_optimization_enabled: Optional[bool] = None) -> FabricSwitchControlPolicy
func GetFabricSwitchControlPolicy(ctx *Context, name string, id IDInput, state *FabricSwitchControlPolicyState, opts ...ResourceOption) (*FabricSwitchControlPolicy, error)
public static FabricSwitchControlPolicy Get(string name, Input<string> id, FabricSwitchControlPolicyState? state, CustomResourceOptions? opts = null)
public static FabricSwitchControlPolicy get(String name, Output<String> id, FabricSwitchControlPolicyState state, CustomResourceOptions options)
resources: _: type: intersight:FabricSwitchControlPolicy get: id: ${id}
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Fabric
Switch Control Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Ethernet
Switching stringMode - Enable or Disable Ethernet End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - Fabric
Pc stringVhba Reset - When enabled, a Registered State Change Notification (RSCN) is sent to the VIC adapter when any member port within the fabric port-channel goes down and vHBA would reset to restore the connection immediately. When disabled (default), vHBA reset is done only when all the members of a fabric port-channel are down.*
Disabled
- Admin configured Disabled State.*Enabled
- Admin configured Enabled State. - Fabric
Switch stringControl Policy Id - Fc
Switching stringMode - Enable or Disable FC End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - Mac
Aging List<FabricSettings Switch Control Policy Mac Aging Setting> - This specifies the MAC aging option and time settings. This complex property has following sub-properties:
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Fabric
Switch Control Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Fabric
Switch Control Policy 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 Control Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
List<Fabric
Switch Control Policy Profile> - An array of relationships to fabricBaseSwitchProfile resources. This complex property has following sub-properties:
- Reserved
Vlan doubleStart Id - The starting ID for VLANs reserved for internal use within the Fabric Interconnect. This VLAN ID is the starting ID ofa contiguous block of 128 VLANs that cannot be configured for user data. This range of VLANs cannot be configured inVLAN policy.If this property is not configured, VLAN range 3915 - 4042 is reserved for internal use by default.
- 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.
- List<Fabric
Switch Control Policy Tag> - This complex property has following sub-properties:
- Udld
Settings List<FabricSwitch Control Policy Udld Setting> - This specifies the UDLD Global configurations for this switch. This complex property has following sub-properties:
- Version
Contexts List<FabricSwitch Control Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vlan
Port boolOptimization Enabled - To enable or disable the VLAN port count optimization. This feature will always be enabled for Cisco UCS Fabric Interconnect 9108 100G.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Fabric
Switch Control Policy Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Ethernet
Switching stringMode - Enable or Disable Ethernet End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - Fabric
Pc stringVhba Reset - When enabled, a Registered State Change Notification (RSCN) is sent to the VIC adapter when any member port within the fabric port-channel goes down and vHBA would reset to restore the connection immediately. When disabled (default), vHBA reset is done only when all the members of a fabric port-channel are down.*
Disabled
- Admin configured Disabled State.*Enabled
- Admin configured Enabled State. - Fabric
Switch stringControl Policy Id - Fc
Switching stringMode - Enable or Disable FC End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - Mac
Aging []FabricSettings Switch Control Policy Mac Aging Setting Args - This specifies the MAC aging option and time settings. This complex property has following sub-properties:
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Fabric
Switch Control Policy Organization Args - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Fabric
Switch Control Policy 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 Control Policy Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
[]Fabric
Switch Control Policy Profile Args - An array of relationships to fabricBaseSwitchProfile resources. This complex property has following sub-properties:
- Reserved
Vlan float64Start Id - The starting ID for VLANs reserved for internal use within the Fabric Interconnect. This VLAN ID is the starting ID ofa contiguous block of 128 VLANs that cannot be configured for user data. This range of VLANs cannot be configured inVLAN policy.If this property is not configured, VLAN range 3915 - 4042 is reserved for internal use by default.
- 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.
- []Fabric
Switch Control Policy Tag Args - This complex property has following sub-properties:
- Udld
Settings []FabricSwitch Control Policy Udld Setting Args - This specifies the UDLD Global configurations for this switch. This complex property has following sub-properties:
- Version
Contexts []FabricSwitch Control Policy Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vlan
Port boolOptimization Enabled - To enable or disable the VLAN port count optimization. This feature will always be enabled for Cisco UCS Fabric Interconnect 9108 100G.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Fabric
Switch Control Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- ethernet
Switching StringMode - Enable or Disable Ethernet End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - fabric
Pc StringVhba Reset - When enabled, a Registered State Change Notification (RSCN) is sent to the VIC adapter when any member port within the fabric port-channel goes down and vHBA would reset to restore the connection immediately. When disabled (default), vHBA reset is done only when all the members of a fabric port-channel are down.*
Disabled
- Admin configured Disabled State.*Enabled
- Admin configured Enabled State. - fabric
Switch StringControl Policy Id - fc
Switching StringMode - Enable or Disable FC End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - mac
Aging List<FabricSettings Switch Control Policy Mac Aging Setting> - This specifies the MAC aging option and time settings. This complex property has following sub-properties:
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Fabric
Switch Control Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Fabric
Switch Control Policy 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 Control Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
List<Fabric
Switch Control Policy Profile> - An array of relationships to fabricBaseSwitchProfile resources. This complex property has following sub-properties:
- reserved
Vlan DoubleStart Id - The starting ID for VLANs reserved for internal use within the Fabric Interconnect. This VLAN ID is the starting ID ofa contiguous block of 128 VLANs that cannot be configured for user data. This range of VLANs cannot be configured inVLAN policy.If this property is not configured, VLAN range 3915 - 4042 is reserved for internal use by default.
- 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.
- List<Fabric
Switch Control Policy Tag> - This complex property has following sub-properties:
- udld
Settings List<FabricSwitch Control Policy Udld Setting> - This specifies the UDLD Global configurations for this switch. This complex property has following sub-properties:
- version
Contexts List<FabricSwitch Control Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vlan
Port BooleanOptimization Enabled - To enable or disable the VLAN port count optimization. This feature will always be enabled for Cisco UCS Fabric Interconnect 9108 100G.
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Fabric
Switch Control Policy Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- Description of the policy.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- ethernet
Switching stringMode - Enable or Disable Ethernet End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - fabric
Pc stringVhba Reset - When enabled, a Registered State Change Notification (RSCN) is sent to the VIC adapter when any member port within the fabric port-channel goes down and vHBA would reset to restore the connection immediately. When disabled (default), vHBA reset is done only when all the members of a fabric port-channel are down.*
Disabled
- Admin configured Disabled State.*Enabled
- Admin configured Enabled State. - fabric
Switch stringControl Policy Id - fc
Switching stringMode - Enable or Disable FC End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - mac
Aging FabricSettings Switch Control Policy Mac Aging Setting[] - This specifies the MAC aging option and time settings. This complex property has following sub-properties:
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the concrete policy.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Fabric
Switch Control Policy Organization[] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Fabric
Switch Control Policy 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 Control Policy Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Fabric
Switch Control Policy Profile[] - An array of relationships to fabricBaseSwitchProfile resources. This complex property has following sub-properties:
- reserved
Vlan numberStart Id - The starting ID for VLANs reserved for internal use within the Fabric Interconnect. This VLAN ID is the starting ID ofa contiguous block of 128 VLANs that cannot be configured for user data. This range of VLANs cannot be configured inVLAN policy.If this property is not configured, VLAN range 3915 - 4042 is reserved for internal use by default.
- 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.
- Fabric
Switch Control Policy Tag[] - This complex property has following sub-properties:
- udld
Settings FabricSwitch Control Policy Udld Setting[] - This specifies the UDLD Global configurations for this switch. This complex property has following sub-properties:
- version
Contexts FabricSwitch Control Policy Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vlan
Port booleanOptimization Enabled - To enable or disable the VLAN port count optimization. This feature will always be enabled for Cisco UCS Fabric Interconnect 9108 100G.
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Fabric
Switch Control Policy Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. 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.
- create_
time str - (ReadOnly) The time when this managed object was created.
- description str
- Description of the policy.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- ethernet_
switching_ strmode - Enable or Disable Ethernet End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - fabric_
pc_ strvhba_ reset - When enabled, a Registered State Change Notification (RSCN) is sent to the VIC adapter when any member port within the fabric port-channel goes down and vHBA would reset to restore the connection immediately. When disabled (default), vHBA reset is done only when all the members of a fabric port-channel are down.*
Disabled
- Admin configured Disabled State.*Enabled
- Admin configured Enabled State. - fabric_
switch_ strcontrol_ policy_ id - fc_
switching_ strmode - Enable or Disable FC End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - mac_
aging_ Sequence[Fabricsettings Switch Control Policy Mac Aging Setting Args] - This specifies the MAC aging option and time settings. This complex property has following sub-properties:
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- Name of the concrete policy.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Sequence[Fabric
Switch Control Policy Organization Args] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Fabric
Switch Control Policy 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 Control Policy Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Sequence[Fabric
Switch Control Policy Profile Args] - An array of relationships to fabricBaseSwitchProfile resources. This complex property has following sub-properties:
- reserved_
vlan_ floatstart_ id - The starting ID for VLANs reserved for internal use within the Fabric Interconnect. This VLAN ID is the starting ID ofa contiguous block of 128 VLANs that cannot be configured for user data. This range of VLANs cannot be configured inVLAN policy.If this property is not configured, VLAN range 3915 - 4042 is reserved for internal use by default.
- 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.
- Sequence[Fabric
Switch Control Policy Tag Args] - This complex property has following sub-properties:
- udld_
settings Sequence[FabricSwitch Control Policy Udld Setting Args] - This specifies the UDLD Global configurations for this switch. This complex property has following sub-properties:
- version_
contexts Sequence[FabricSwitch Control Policy Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vlan_
port_ booloptimization_ enabled - To enable or disable the VLAN port count optimization. This feature will always be enabled for Cisco UCS Fabric Interconnect 9108 100G.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. 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.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- ethernet
Switching StringMode - Enable or Disable Ethernet End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - fabric
Pc StringVhba Reset - When enabled, a Registered State Change Notification (RSCN) is sent to the VIC adapter when any member port within the fabric port-channel goes down and vHBA would reset to restore the connection immediately. When disabled (default), vHBA reset is done only when all the members of a fabric port-channel are down.*
Disabled
- Admin configured Disabled State.*Enabled
- Admin configured Enabled State. - fabric
Switch StringControl Policy Id - fc
Switching StringMode - Enable or Disable FC End Host Switching Mode.*
end-host
- In end-host mode, the fabric interconnects appear to the upstream devices as end hosts with multiple links.In this mode, the switch does not run Spanning Tree Protocol and avoids loops by following a set of rules for traffic forwarding.In case of ethernet switching mode - Ethernet end-host mode is also known as Ethernet host virtualizer.*switch
- In switch mode, the switch runs Spanning Tree Protocol to avoid loops, and broadcast and multicast packets are handled in the traditional way.This is the traditional switch mode. - mac
Aging List<Property Map>Settings - This specifies the MAC aging option and time settings. This complex property has following sub-properties:
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles List<Property Map>
- An array of relationships to fabricBaseSwitchProfile resources. This complex property has following sub-properties:
- reserved
Vlan NumberStart Id - The starting ID for VLANs reserved for internal use within the Fabric Interconnect. This VLAN ID is the starting ID ofa contiguous block of 128 VLANs that cannot be configured for user data. This range of VLANs cannot be configured inVLAN policy.If this property is not configured, VLAN range 3915 - 4042 is reserved for internal use by default.
- 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.
- List<Property Map>
- This complex property has following sub-properties:
- udld
Settings List<Property Map> - This specifies the UDLD Global configurations for this switch. This complex property has following sub-properties:
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vlan
Port BooleanOptimization Enabled - To enable or disable the VLAN port count optimization. This feature will always be enabled for Cisco UCS Fabric Interconnect 9108 100G.
Supporting Types
FabricSwitchControlPolicyAncestor, FabricSwitchControlPolicyAncestorArgs
- Additional
Properties This property is required. string - Class
Id This property is required. string - Moid
This property is required. string - The Moid of the referenced REST resource.
- Object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- Selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties This property is required. string - Class
Id This property is required. string - Moid
This property is required. string - The Moid of the referenced REST resource.
- Object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- Selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. String - class
Id This property is required. String - moid
This property is required. String - The Moid of the referenced REST resource.
- object
Type This property is required. String - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. String - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. string - class
Id This property is required. string - moid
This property is required. string - The Moid of the referenced REST resource.
- object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties This property is required. str - class_
id This property is required. str - moid
This property is required. str - The Moid of the referenced REST resource.
- object_
type This property is required. str - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. str - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. String - class
Id This property is required. String - moid
This property is required. String - The Moid of the referenced REST resource.
- object
Type This property is required. String - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. String - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
FabricSwitchControlPolicyMacAgingSetting, FabricSwitchControlPolicyMacAgingSettingArgs
- Additional
Properties This property is required. string - Class
Id This property is required. string - Mac
Aging Option This property is required. string - This specifies one of the option to configure the MAC address aging time.*
Default
- This option sets the default MAC address aging time to 14500 seconds for End Host mode.*Custom
- This option allows the the user to configure the MAC address aging time on the switch. For Switch Model UCS-FI-6454 or higher, the valid range is 120 to 918000 seconds and the switch will set the lower multiple of 5 of the given time.*Never
- This option disables the MAC address aging process and never allows the MAC address entries to get removed from the table. - Mac
Aging Time This property is required. double - Define the MAC address aging time in seconds. This field is valid when the \ Custom\ MAC address aging option is selected.
- Object
Type This property is required. string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Additional
Properties This property is required. string - Class
Id This property is required. string - Mac
Aging Option This property is required. string - This specifies one of the option to configure the MAC address aging time.*
Default
- This option sets the default MAC address aging time to 14500 seconds for End Host mode.*Custom
- This option allows the the user to configure the MAC address aging time on the switch. For Switch Model UCS-FI-6454 or higher, the valid range is 120 to 918000 seconds and the switch will set the lower multiple of 5 of the given time.*Never
- This option disables the MAC address aging process and never allows the MAC address entries to get removed from the table. - Mac
Aging Time This property is required. float64 - Define the MAC address aging time in seconds. This field is valid when the \ Custom\ MAC address aging option is selected.
- Object
Type This property is required. string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional
Properties This property is required. String - class
Id This property is required. String - mac
Aging Option This property is required. String - This specifies one of the option to configure the MAC address aging time.*
Default
- This option sets the default MAC address aging time to 14500 seconds for End Host mode.*Custom
- This option allows the the user to configure the MAC address aging time on the switch. For Switch Model UCS-FI-6454 or higher, the valid range is 120 to 918000 seconds and the switch will set the lower multiple of 5 of the given time.*Never
- This option disables the MAC address aging process and never allows the MAC address entries to get removed from the table. - mac
Aging Time This property is required. Double - Define the MAC address aging time in seconds. This field is valid when the \ Custom\ MAC address aging option is selected.
- object
Type This property is required. String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional
Properties This property is required. string - class
Id This property is required. string - mac
Aging Option This property is required. string - This specifies one of the option to configure the MAC address aging time.*
Default
- This option sets the default MAC address aging time to 14500 seconds for End Host mode.*Custom
- This option allows the the user to configure the MAC address aging time on the switch. For Switch Model UCS-FI-6454 or higher, the valid range is 120 to 918000 seconds and the switch will set the lower multiple of 5 of the given time.*Never
- This option disables the MAC address aging process and never allows the MAC address entries to get removed from the table. - mac
Aging Time This property is required. number - Define the MAC address aging time in seconds. This field is valid when the \ Custom\ MAC address aging option is selected.
- object
Type This property is required. string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional_
properties This property is required. str - class_
id This property is required. str - mac_
aging_ option This property is required. str - This specifies one of the option to configure the MAC address aging time.*
Default
- This option sets the default MAC address aging time to 14500 seconds for End Host mode.*Custom
- This option allows the the user to configure the MAC address aging time on the switch. For Switch Model UCS-FI-6454 or higher, the valid range is 120 to 918000 seconds and the switch will set the lower multiple of 5 of the given time.*Never
- This option disables the MAC address aging process and never allows the MAC address entries to get removed from the table. - mac_
aging_ time This property is required. float - Define the MAC address aging time in seconds. This field is valid when the \ Custom\ MAC address aging option is selected.
- object_
type This property is required. str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional
Properties This property is required. String - class
Id This property is required. String - mac
Aging Option This property is required. String - This specifies one of the option to configure the MAC address aging time.*
Default
- This option sets the default MAC address aging time to 14500 seconds for End Host mode.*Custom
- This option allows the the user to configure the MAC address aging time on the switch. For Switch Model UCS-FI-6454 or higher, the valid range is 120 to 918000 seconds and the switch will set the lower multiple of 5 of the given time.*Never
- This option disables the MAC address aging process and never allows the MAC address entries to get removed from the table. - mac
Aging Time This property is required. Number - Define the MAC address aging time in seconds. This field is valid when the \ Custom\ MAC address aging option is selected.
- object
Type This property is required. String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
FabricSwitchControlPolicyOrganization, FabricSwitchControlPolicyOrganizationArgs
- Additional
Properties This property is required. string - Class
Id This property is required. string - Moid
This property is required. string - The Moid of the referenced REST resource.
- Object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- Selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties This property is required. string - Class
Id This property is required. string - Moid
This property is required. string - The Moid of the referenced REST resource.
- Object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- Selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. String - class
Id This property is required. String - moid
This property is required. String - The Moid of the referenced REST resource.
- object
Type This property is required. String - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. String - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. string - class
Id This property is required. string - moid
This property is required. string - The Moid of the referenced REST resource.
- object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties This property is required. str - class_
id This property is required. str - moid
This property is required. str - The Moid of the referenced REST resource.
- object_
type This property is required. str - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. str - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. String - class
Id This property is required. String - moid
This property is required. String - The Moid of the referenced REST resource.
- object
Type This property is required. String - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. String - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
FabricSwitchControlPolicyParent, FabricSwitchControlPolicyParentArgs
- Additional
Properties This property is required. string - Class
Id This property is required. string - Moid
This property is required. string - The Moid of the referenced REST resource.
- Object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- Selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties This property is required. string - Class
Id This property is required. string - Moid
This property is required. string - The Moid of the referenced REST resource.
- Object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- Selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. String - class
Id This property is required. String - moid
This property is required. String - The Moid of the referenced REST resource.
- object
Type This property is required. String - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. String - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. string - class
Id This property is required. string - moid
This property is required. string - The Moid of the referenced REST resource.
- object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties This property is required. str - class_
id This property is required. str - moid
This property is required. str - The Moid of the referenced REST resource.
- object_
type This property is required. str - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. str - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. String - class
Id This property is required. String - moid
This property is required. String - The Moid of the referenced REST resource.
- object
Type This property is required. String - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. String - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
FabricSwitchControlPolicyPermissionResource, FabricSwitchControlPolicyPermissionResourceArgs
- Additional
Properties This property is required. string - Class
Id This property is required. string - Moid
This property is required. string - The Moid of the referenced REST resource.
- Object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- Selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties This property is required. string - Class
Id This property is required. string - Moid
This property is required. string - The Moid of the referenced REST resource.
- Object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- Selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. String - class
Id This property is required. String - moid
This property is required. String - The Moid of the referenced REST resource.
- object
Type This property is required. String - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. String - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. string - class
Id This property is required. string - moid
This property is required. string - The Moid of the referenced REST resource.
- object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties This property is required. str - class_
id This property is required. str - moid
This property is required. str - The Moid of the referenced REST resource.
- object_
type This property is required. str - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. str - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. String - class
Id This property is required. String - moid
This property is required. String - The Moid of the referenced REST resource.
- object
Type This property is required. String - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. String - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
FabricSwitchControlPolicyProfile, FabricSwitchControlPolicyProfileArgs
- Additional
Properties This property is required. string - Class
Id This property is required. string - Moid
This property is required. string - The Moid of the referenced REST resource.
- Object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- Selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties This property is required. string - Class
Id This property is required. string - Moid
This property is required. string - The Moid of the referenced REST resource.
- Object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- Selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. String - class
Id This property is required. String - moid
This property is required. String - The Moid of the referenced REST resource.
- object
Type This property is required. String - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. String - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. string - class
Id This property is required. string - moid
This property is required. string - The Moid of the referenced REST resource.
- object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties This property is required. str - class_
id This property is required. str - moid
This property is required. str - The Moid of the referenced REST resource.
- object_
type This property is required. str - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. str - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. String - class
Id This property is required. String - moid
This property is required. String - The Moid of the referenced REST resource.
- object
Type This property is required. String - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. String - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
FabricSwitchControlPolicyTag, FabricSwitchControlPolicyTagArgs
- Additional
Properties This property is required. string - Key
This property is required. string - The string representation of a tag key.
- Value
This property is required. string - The string representation of a tag value.
- Additional
Properties This property is required. string - Key
This property is required. string - The string representation of a tag key.
- Value
This property is required. string - The string representation of a tag value.
- additional
Properties This property is required. String - key
This property is required. String - The string representation of a tag key.
- value
This property is required. String - The string representation of a tag value.
- additional
Properties This property is required. string - key
This property is required. string - The string representation of a tag key.
- value
This property is required. string - The string representation of a tag value.
- additional_
properties This property is required. str - key
This property is required. str - The string representation of a tag key.
- value
This property is required. str - The string representation of a tag value.
- additional
Properties This property is required. String - key
This property is required. String - The string representation of a tag key.
- value
This property is required. String - The string representation of a tag value.
FabricSwitchControlPolicyUdldSetting, FabricSwitchControlPolicyUdldSettingArgs
- Additional
Properties This property is required. string - Class
Id This property is required. string - Message
Interval This property is required. double - Configures the time between UDLD probe messages on ports that are in advertisement mode and arecurrently determined to be bidirectional.Valid values are from 7 to 90 seconds.
- Object
Type This property is required. string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Recovery
Action This property is required. string - UDLD recovery when enabled, attempts to bring an UDLD error-disabled port out of reset.*
none
- The standard 4th generation UCS Fabric Interconnect with 54 ports.*reset
- The expanded 4th generation UCS Fabric Interconnect with 108 ports.
- Additional
Properties This property is required. string - Class
Id This property is required. string - Message
Interval This property is required. float64 - Configures the time between UDLD probe messages on ports that are in advertisement mode and arecurrently determined to be bidirectional.Valid values are from 7 to 90 seconds.
- Object
Type This property is required. string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Recovery
Action This property is required. string - UDLD recovery when enabled, attempts to bring an UDLD error-disabled port out of reset.*
none
- The standard 4th generation UCS Fabric Interconnect with 54 ports.*reset
- The expanded 4th generation UCS Fabric Interconnect with 108 ports.
- additional
Properties This property is required. String - class
Id This property is required. String - message
Interval This property is required. Double - Configures the time between UDLD probe messages on ports that are in advertisement mode and arecurrently determined to be bidirectional.Valid values are from 7 to 90 seconds.
- object
Type This property is required. String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- recovery
Action This property is required. String - UDLD recovery when enabled, attempts to bring an UDLD error-disabled port out of reset.*
none
- The standard 4th generation UCS Fabric Interconnect with 54 ports.*reset
- The expanded 4th generation UCS Fabric Interconnect with 108 ports.
- additional
Properties This property is required. string - class
Id This property is required. string - message
Interval This property is required. number - Configures the time between UDLD probe messages on ports that are in advertisement mode and arecurrently determined to be bidirectional.Valid values are from 7 to 90 seconds.
- object
Type This property is required. string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- recovery
Action This property is required. string - UDLD recovery when enabled, attempts to bring an UDLD error-disabled port out of reset.*
none
- The standard 4th generation UCS Fabric Interconnect with 54 ports.*reset
- The expanded 4th generation UCS Fabric Interconnect with 108 ports.
- additional_
properties This property is required. str - class_
id This property is required. str - message_
interval This property is required. float - Configures the time between UDLD probe messages on ports that are in advertisement mode and arecurrently determined to be bidirectional.Valid values are from 7 to 90 seconds.
- object_
type This property is required. str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- recovery_
action This property is required. str - UDLD recovery when enabled, attempts to bring an UDLD error-disabled port out of reset.*
none
- The standard 4th generation UCS Fabric Interconnect with 54 ports.*reset
- The expanded 4th generation UCS Fabric Interconnect with 108 ports.
- additional
Properties This property is required. String - class
Id This property is required. String - message
Interval This property is required. Number - Configures the time between UDLD probe messages on ports that are in advertisement mode and arecurrently determined to be bidirectional.Valid values are from 7 to 90 seconds.
- object
Type This property is required. String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- recovery
Action This property is required. String - UDLD recovery when enabled, attempts to bring an UDLD error-disabled port out of reset.*
none
- The standard 4th generation UCS Fabric Interconnect with 54 ports.*reset
- The expanded 4th generation UCS Fabric Interconnect with 108 ports.
FabricSwitchControlPolicyVersionContext, FabricSwitchControlPolicyVersionContextArgs
- Additional
Properties This property is required. string - Class
Id This property is required. string - Interested
Mos This property is required. List<FabricSwitch Control Policy Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For Deletion This property is required. bool - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version This property is required. string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type This property is required. string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos This property is required. List<FabricSwitch Control Policy Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp
This property is required. string - (ReadOnly) The time this versioned Managed Object was created.
- Version
Type This property is required. string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties This property is required. string - Class
Id This property is required. string - Interested
Mos This property is required. []FabricSwitch Control Policy Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For Deletion This property is required. bool - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version This property is required. string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type This property is required. string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos This property is required. []FabricSwitch Control Policy Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp
This property is required. string - (ReadOnly) The time this versioned Managed Object was created.
- Version
Type This property is required. string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties This property is required. String - class
Id This property is required. String - interested
Mos This property is required. List<FabricSwitch Control Policy Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For Deletion This property is required. Boolean - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version This property is required. String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type This property is required. String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos This property is required. List<FabricSwitch Control Policy Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp
This property is required. String - (ReadOnly) The time this versioned Managed Object was created.
- version
Type This property is required. String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties This property is required. string - class
Id This property is required. string - interested
Mos This property is required. FabricSwitch Control Policy Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For Deletion This property is required. boolean - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version This property is required. string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type This property is required. string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos This property is required. FabricSwitch Control Policy Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp
This property is required. string - (ReadOnly) The time this versioned Managed Object was created.
- version
Type This property is required. string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties This property is required. str - class_
id This property is required. str - interested_
mos This property is required. Sequence[FabricSwitch Control Policy Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ deletion This property is required. bool - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version This property is required. str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type This property is required. str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos This property is required. Sequence[FabricSwitch Control Policy Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp
This property is required. str - (ReadOnly) The time this versioned Managed Object was created.
- version_
type This property is required. str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties This property is required. String - class
Id This property is required. String - interested
Mos This property is required. List<Property Map> - This complex property has following sub-properties:
- marked
For Deletion This property is required. Boolean - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version This property is required. String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type This property is required. String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos This property is required. List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp
This property is required. String - (ReadOnly) The time this versioned Managed Object was created.
- version
Type This property is required. String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
FabricSwitchControlPolicyVersionContextInterestedMo, FabricSwitchControlPolicyVersionContextInterestedMoArgs
- Additional
Properties This property is required. string - Class
Id This property is required. string - Moid
This property is required. string - The Moid of the referenced REST resource.
- Object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- Selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties This property is required. string - Class
Id This property is required. string - Moid
This property is required. string - The Moid of the referenced REST resource.
- Object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- Selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. String - class
Id This property is required. String - moid
This property is required. String - The Moid of the referenced REST resource.
- object
Type This property is required. String - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. String - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. string - class
Id This property is required. string - moid
This property is required. string - The Moid of the referenced REST resource.
- object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties This property is required. str - class_
id This property is required. str - moid
This property is required. str - The Moid of the referenced REST resource.
- object_
type This property is required. str - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. str - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. String - class
Id This property is required. String - moid
This property is required. String - The Moid of the referenced REST resource.
- object
Type This property is required. String - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. String - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
FabricSwitchControlPolicyVersionContextRefMo, FabricSwitchControlPolicyVersionContextRefMoArgs
- Additional
Properties This property is required. string - Class
Id This property is required. string - Moid
This property is required. string - The Moid of the referenced REST resource.
- Object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- Selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties This property is required. string - Class
Id This property is required. string - Moid
This property is required. string - The Moid of the referenced REST resource.
- Object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- Selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. String - class
Id This property is required. String - moid
This property is required. String - The Moid of the referenced REST resource.
- object
Type This property is required. String - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. String - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. string - class
Id This property is required. string - moid
This property is required. string - The Moid of the referenced REST resource.
- object
Type This property is required. string - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. string - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties This property is required. str - class_
id This property is required. str - moid
This property is required. str - The Moid of the referenced REST resource.
- object_
type This property is required. str - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. str - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties This property is required. String - class
Id This property is required. String - moid
This property is required. String - The Moid of the referenced REST resource.
- object
Type This property is required. String - The fully-qualified name of the remote type referred by this relationship.
- selector
This property is required. String - An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_fabric_switch_control_policy
can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/fabricSwitchControlPolicy:FabricSwitchControlPolicy 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.