intersight.VnicVnicTemplate
Explore with Pulumi AI
The vNIC template consists of the common vNIC configuration, which can be reused across multiple vNICs. vNICs can be created from the template using the Derive operation. Additionally, an existing vNIC can be attached to a template to use the configuration set in the template. To derive vNICs from a vNIC template, you must use the asynchronous /v1/bulk/MoCloners bulk API. Deriving vNICs from a vNIC Template URL: /v1/bulk/MoCloners Method: POST Headers:
- Key: “prefer” Value: “respond-async” Body: > { “Sources”: [ { “Moid”: “xxxxx”, “ObjectType”: “vnic.VnicTemplate” } ], “Targets”: [ { “Name”: “test-vn2”, “MacAddressType”: “POOL”, “Placement”: { “AutoSlotId”: true, “AutoPciLink”: true }, “LanConnectivityPolicy”: “aaaaa”, “ObjectType”: “vnic.EthIf” } ], “WorkflowNameSuffix”: “Derive vNIC from a Template”, “Organization”: { “Moid”: “ooooo”, “ObjectType”: “organization.Organization” } } The API response includes the “AsyncResult”->bulk.Result MO reference. API clients must poll the bulk.Result MO to monitor the status of the operation. The bulk.Result object also includes a reference to a monitoring workflow, which is accessible from the ‘Requests’ tab in the UI. Managing Template Updates When the vNIC template is updated, the system initiates an automatic call to the /v1/bulk/MoMergers API to synchronize the template changes to all derived vNIC instances asynchronously. The status of the sync operation can be obtained by performing a query on vnic EthIf MO - $filter=SrcTemplate.Moid eq ‘xxx’&$apply=groupby ( (TemplateSyncStatus), aggregate ($count as count)) Override Option for vNIC Templates When enabled, this feature allows the configuration of the derived vNIC to override the configuration available in the template during vNIC create or update. You can query the list of overridable properties for a vNIC template from the Template Catalog. Use the following catalog API query: URL: /v1/capability/TemplateCatalogs Query: $filter= (Name eq ‘VnicTemplate’)&$select=AllowedOverrideList Once a property is overridden on a derived vNIC, it will be added to the ‘OverriddenList’ property on the vnic EthIf MO: URL: /v1/vnic/EthIfs Query: $select=SrcTemplate, OverriddenList When override is disabled on the template, derived vNIC will have same configuration as the template.
Create VnicVnicTemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VnicVnicTemplate(name: string, args?: VnicVnicTemplateArgs, opts?: CustomResourceOptions);
@overload
def VnicVnicTemplate(resource_name: str,
args: Optional[VnicVnicTemplateArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def VnicVnicTemplate(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[VnicVnicTemplateAncestorArgs]] = None,
cdns: Optional[Sequence[VnicVnicTemplateCdnArgs]] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
enable_override: Optional[bool] = None,
eth_adapter_policies: Optional[Sequence[VnicVnicTemplateEthAdapterPolicyArgs]] = None,
eth_network_policies: Optional[Sequence[VnicVnicTemplateEthNetworkPolicyArgs]] = None,
eth_qos_policies: Optional[Sequence[VnicVnicTemplateEthQosPolicyArgs]] = None,
fabric_eth_network_control_policies: Optional[Sequence[VnicVnicTemplateFabricEthNetworkControlPolicyArgs]] = None,
fabric_eth_network_group_policies: Optional[Sequence[VnicVnicTemplateFabricEthNetworkGroupPolicyArgs]] = None,
failover_enabled: Optional[bool] = None,
iscsi_boot_policies: Optional[Sequence[VnicVnicTemplateIscsiBootPolicyArgs]] = None,
lcp_usage_count: Optional[float] = None,
mac_pools: Optional[Sequence[VnicVnicTemplateMacPoolArgs]] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
object_type: Optional[str] = None,
organizations: Optional[Sequence[VnicVnicTemplateOrganizationArgs]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[VnicVnicTemplateParentArgs]] = None,
peer_vnic_name: Optional[str] = None,
permission_resources: Optional[Sequence[VnicVnicTemplatePermissionResourceArgs]] = None,
pin_group_name: Optional[str] = None,
shared_scope: Optional[str] = None,
sriov_settings: Optional[Sequence[VnicVnicTemplateSriovSettingArgs]] = None,
switch_id: Optional[str] = None,
tags: Optional[Sequence[VnicVnicTemplateTagArgs]] = None,
template_actions: Optional[Sequence[VnicVnicTemplateTemplateActionArgs]] = None,
update_status: Optional[str] = None,
usage_count: Optional[float] = None,
usnic_settings: Optional[Sequence[VnicVnicTemplateUsnicSettingArgs]] = None,
version_contexts: Optional[Sequence[VnicVnicTemplateVersionContextArgs]] = None,
vmq_settings: Optional[Sequence[VnicVnicTemplateVmqSettingArgs]] = None,
vnic_vnic_template_id: Optional[str] = None)
func NewVnicVnicTemplate(ctx *Context, name string, args *VnicVnicTemplateArgs, opts ...ResourceOption) (*VnicVnicTemplate, error)
public VnicVnicTemplate(string name, VnicVnicTemplateArgs? args = null, CustomResourceOptions? opts = null)
public VnicVnicTemplate(String name, VnicVnicTemplateArgs args)
public VnicVnicTemplate(String name, VnicVnicTemplateArgs args, CustomResourceOptions options)
type: intersight:VnicVnicTemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args VnicVnicTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VnicVnicTemplateArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VnicVnicTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VnicVnicTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VnicVnicTemplateArgs
- 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 vnicVnicTemplateResource = new Intersight.VnicVnicTemplate("vnicVnicTemplateResource", new()
{
AccountMoid = "string",
AdditionalProperties = "string",
Ancestors = new[]
{
new Intersight.Inputs.VnicVnicTemplateAncestorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Cdns = new[]
{
new Intersight.Inputs.VnicVnicTemplateCdnArgs
{
AdditionalProperties = "string",
ClassId = "string",
NrSource = "string",
ObjectType = "string",
Value = "string",
},
},
ClassId = "string",
CreateTime = "string",
Description = "string",
DomainGroupMoid = "string",
EnableOverride = false,
EthAdapterPolicies = new[]
{
new Intersight.Inputs.VnicVnicTemplateEthAdapterPolicyArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
EthNetworkPolicies = new[]
{
new Intersight.Inputs.VnicVnicTemplateEthNetworkPolicyArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
EthQosPolicies = new[]
{
new Intersight.Inputs.VnicVnicTemplateEthQosPolicyArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
FabricEthNetworkControlPolicies = new[]
{
new Intersight.Inputs.VnicVnicTemplateFabricEthNetworkControlPolicyArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
FabricEthNetworkGroupPolicies = new[]
{
new Intersight.Inputs.VnicVnicTemplateFabricEthNetworkGroupPolicyArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
FailoverEnabled = false,
IscsiBootPolicies = new[]
{
new Intersight.Inputs.VnicVnicTemplateIscsiBootPolicyArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
LcpUsageCount = 0,
MacPools = new[]
{
new Intersight.Inputs.VnicVnicTemplateMacPoolArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ModTime = "string",
Moid = "string",
Name = "string",
ObjectType = "string",
Organizations = new[]
{
new Intersight.Inputs.VnicVnicTemplateOrganizationArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Owners = new[]
{
"string",
},
Parents = new[]
{
new Intersight.Inputs.VnicVnicTemplateParentArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PeerVnicName = "string",
PermissionResources = new[]
{
new Intersight.Inputs.VnicVnicTemplatePermissionResourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PinGroupName = "string",
SharedScope = "string",
SriovSettings = new[]
{
new Intersight.Inputs.VnicVnicTemplateSriovSettingArgs
{
AdditionalProperties = "string",
ClassId = "string",
CompCountPerVf = 0,
Enabled = false,
IntCountPerVf = 0,
ObjectType = "string",
RxCountPerVf = 0,
TxCountPerVf = 0,
VfCount = 0,
},
},
SwitchId = "string",
Tags = new[]
{
new Intersight.Inputs.VnicVnicTemplateTagArgs
{
AdditionalProperties = "string",
Key = "string",
Value = "string",
},
},
TemplateActions = new[]
{
new Intersight.Inputs.VnicVnicTemplateTemplateActionArgs
{
AdditionalProperties = "string",
ClassId = "string",
ObjectType = "string",
Params = new[]
{
new Intersight.Inputs.VnicVnicTemplateTemplateActionParamArgs
{
AdditionalProperties = "string",
ClassId = "string",
Name = "string",
ObjectType = "string",
Value = "string",
},
},
Type = "string",
},
},
UpdateStatus = "string",
UsageCount = 0,
UsnicSettings = new[]
{
new Intersight.Inputs.VnicVnicTemplateUsnicSettingArgs
{
AdditionalProperties = "string",
ClassId = "string",
Cos = 0,
NrCount = 0,
ObjectType = "string",
UsnicAdapterPolicy = "string",
},
},
VersionContexts = new[]
{
new Intersight.Inputs.VnicVnicTemplateVersionContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
InterestedMos = new[]
{
new Intersight.Inputs.VnicVnicTemplateVersionContextInterestedMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
MarkedForDeletion = false,
NrVersion = "string",
ObjectType = "string",
RefMos = new[]
{
new Intersight.Inputs.VnicVnicTemplateVersionContextRefMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Timestamp = "string",
VersionType = "string",
},
},
VmqSettings = new[]
{
new Intersight.Inputs.VnicVnicTemplateVmqSettingArgs
{
AdditionalProperties = "string",
ClassId = "string",
Enabled = false,
MultiQueueSupport = false,
NumInterrupts = 0,
NumSubVnics = 0,
NumVmqs = 0,
ObjectType = "string",
VmmqAdapterPolicy = "string",
},
},
VnicVnicTemplateId = "string",
});
example, err := intersight.NewVnicVnicTemplate(ctx, "vnicVnicTemplateResource", &intersight.VnicVnicTemplateArgs{
AccountMoid: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
Ancestors: intersight.VnicVnicTemplateAncestorArray{
&intersight.VnicVnicTemplateAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Cdns: intersight.VnicVnicTemplateCdnArray{
&intersight.VnicVnicTemplateCdnArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
NrSource: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
ClassId: pulumi.String("string"),
CreateTime: pulumi.String("string"),
Description: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
EnableOverride: pulumi.Bool(false),
EthAdapterPolicies: intersight.VnicVnicTemplateEthAdapterPolicyArray{
&intersight.VnicVnicTemplateEthAdapterPolicyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
EthNetworkPolicies: intersight.VnicVnicTemplateEthNetworkPolicyArray{
&intersight.VnicVnicTemplateEthNetworkPolicyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
EthQosPolicies: intersight.VnicVnicTemplateEthQosPolicyArray{
&intersight.VnicVnicTemplateEthQosPolicyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
FabricEthNetworkControlPolicies: intersight.VnicVnicTemplateFabricEthNetworkControlPolicyArray{
&intersight.VnicVnicTemplateFabricEthNetworkControlPolicyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
FabricEthNetworkGroupPolicies: intersight.VnicVnicTemplateFabricEthNetworkGroupPolicyArray{
&intersight.VnicVnicTemplateFabricEthNetworkGroupPolicyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
FailoverEnabled: pulumi.Bool(false),
IscsiBootPolicies: intersight.VnicVnicTemplateIscsiBootPolicyArray{
&intersight.VnicVnicTemplateIscsiBootPolicyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
LcpUsageCount: pulumi.Float64(0),
MacPools: intersight.VnicVnicTemplateMacPoolArray{
&intersight.VnicVnicTemplateMacPoolArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ModTime: pulumi.String("string"),
Moid: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Organizations: intersight.VnicVnicTemplateOrganizationArray{
&intersight.VnicVnicTemplateOrganizationArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Owners: pulumi.StringArray{
pulumi.String("string"),
},
Parents: intersight.VnicVnicTemplateParentArray{
&intersight.VnicVnicTemplateParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PeerVnicName: pulumi.String("string"),
PermissionResources: intersight.VnicVnicTemplatePermissionResourceArray{
&intersight.VnicVnicTemplatePermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PinGroupName: pulumi.String("string"),
SharedScope: pulumi.String("string"),
SriovSettings: intersight.VnicVnicTemplateSriovSettingArray{
&intersight.VnicVnicTemplateSriovSettingArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
CompCountPerVf: pulumi.Float64(0),
Enabled: pulumi.Bool(false),
IntCountPerVf: pulumi.Float64(0),
ObjectType: pulumi.String("string"),
RxCountPerVf: pulumi.Float64(0),
TxCountPerVf: pulumi.Float64(0),
VfCount: pulumi.Float64(0),
},
},
SwitchId: pulumi.String("string"),
Tags: intersight.VnicVnicTemplateTagArray{
&intersight.VnicVnicTemplateTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TemplateActions: intersight.VnicVnicTemplateTemplateActionArray{
&intersight.VnicVnicTemplateTemplateActionArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Params: intersight.VnicVnicTemplateTemplateActionParamArray{
&intersight.VnicVnicTemplateTemplateActionParamArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Type: pulumi.String("string"),
},
},
UpdateStatus: pulumi.String("string"),
UsageCount: pulumi.Float64(0),
UsnicSettings: intersight.VnicVnicTemplateUsnicSettingArray{
&intersight.VnicVnicTemplateUsnicSettingArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Cos: pulumi.Float64(0),
NrCount: pulumi.Float64(0),
ObjectType: pulumi.String("string"),
UsnicAdapterPolicy: pulumi.String("string"),
},
},
VersionContexts: intersight.VnicVnicTemplateVersionContextArray{
&intersight.VnicVnicTemplateVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: intersight.VnicVnicTemplateVersionContextInterestedMoArray{
&intersight.VnicVnicTemplateVersionContextInterestedMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
MarkedForDeletion: pulumi.Bool(false),
NrVersion: pulumi.String("string"),
ObjectType: pulumi.String("string"),
RefMos: intersight.VnicVnicTemplateVersionContextRefMoArray{
&intersight.VnicVnicTemplateVersionContextRefMoArgs{
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"),
},
},
VmqSettings: intersight.VnicVnicTemplateVmqSettingArray{
&intersight.VnicVnicTemplateVmqSettingArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Enabled: pulumi.Bool(false),
MultiQueueSupport: pulumi.Bool(false),
NumInterrupts: pulumi.Float64(0),
NumSubVnics: pulumi.Float64(0),
NumVmqs: pulumi.Float64(0),
ObjectType: pulumi.String("string"),
VmmqAdapterPolicy: pulumi.String("string"),
},
},
VnicVnicTemplateId: pulumi.String("string"),
})
var vnicVnicTemplateResource = new VnicVnicTemplate("vnicVnicTemplateResource", VnicVnicTemplateArgs.builder()
.accountMoid("string")
.additionalProperties("string")
.ancestors(VnicVnicTemplateAncestorArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.cdns(VnicVnicTemplateCdnArgs.builder()
.additionalProperties("string")
.classId("string")
.nrSource("string")
.objectType("string")
.value("string")
.build())
.classId("string")
.createTime("string")
.description("string")
.domainGroupMoid("string")
.enableOverride(false)
.ethAdapterPolicies(VnicVnicTemplateEthAdapterPolicyArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.ethNetworkPolicies(VnicVnicTemplateEthNetworkPolicyArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.ethQosPolicies(VnicVnicTemplateEthQosPolicyArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.fabricEthNetworkControlPolicies(VnicVnicTemplateFabricEthNetworkControlPolicyArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.fabricEthNetworkGroupPolicies(VnicVnicTemplateFabricEthNetworkGroupPolicyArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.failoverEnabled(false)
.iscsiBootPolicies(VnicVnicTemplateIscsiBootPolicyArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.lcpUsageCount(0)
.macPools(VnicVnicTemplateMacPoolArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.modTime("string")
.moid("string")
.name("string")
.objectType("string")
.organizations(VnicVnicTemplateOrganizationArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.owners("string")
.parents(VnicVnicTemplateParentArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.peerVnicName("string")
.permissionResources(VnicVnicTemplatePermissionResourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.pinGroupName("string")
.sharedScope("string")
.sriovSettings(VnicVnicTemplateSriovSettingArgs.builder()
.additionalProperties("string")
.classId("string")
.compCountPerVf(0)
.enabled(false)
.intCountPerVf(0)
.objectType("string")
.rxCountPerVf(0)
.txCountPerVf(0)
.vfCount(0)
.build())
.switchId("string")
.tags(VnicVnicTemplateTagArgs.builder()
.additionalProperties("string")
.key("string")
.value("string")
.build())
.templateActions(VnicVnicTemplateTemplateActionArgs.builder()
.additionalProperties("string")
.classId("string")
.objectType("string")
.params(VnicVnicTemplateTemplateActionParamArgs.builder()
.additionalProperties("string")
.classId("string")
.name("string")
.objectType("string")
.value("string")
.build())
.type("string")
.build())
.updateStatus("string")
.usageCount(0)
.usnicSettings(VnicVnicTemplateUsnicSettingArgs.builder()
.additionalProperties("string")
.classId("string")
.cos(0)
.nrCount(0)
.objectType("string")
.usnicAdapterPolicy("string")
.build())
.versionContexts(VnicVnicTemplateVersionContextArgs.builder()
.additionalProperties("string")
.classId("string")
.interestedMos(VnicVnicTemplateVersionContextInterestedMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.markedForDeletion(false)
.nrVersion("string")
.objectType("string")
.refMos(VnicVnicTemplateVersionContextRefMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.timestamp("string")
.versionType("string")
.build())
.vmqSettings(VnicVnicTemplateVmqSettingArgs.builder()
.additionalProperties("string")
.classId("string")
.enabled(false)
.multiQueueSupport(false)
.numInterrupts(0)
.numSubVnics(0)
.numVmqs(0)
.objectType("string")
.vmmqAdapterPolicy("string")
.build())
.vnicVnicTemplateId("string")
.build());
vnic_vnic_template_resource = intersight.VnicVnicTemplate("vnicVnicTemplateResource",
account_moid="string",
additional_properties="string",
ancestors=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
cdns=[{
"additional_properties": "string",
"class_id": "string",
"nr_source": "string",
"object_type": "string",
"value": "string",
}],
class_id="string",
create_time="string",
description="string",
domain_group_moid="string",
enable_override=False,
eth_adapter_policies=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
eth_network_policies=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
eth_qos_policies=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
fabric_eth_network_control_policies=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
fabric_eth_network_group_policies=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
failover_enabled=False,
iscsi_boot_policies=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
lcp_usage_count=0,
mac_pools=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
mod_time="string",
moid="string",
name="string",
object_type="string",
organizations=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
owners=["string"],
parents=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
peer_vnic_name="string",
permission_resources=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
pin_group_name="string",
shared_scope="string",
sriov_settings=[{
"additional_properties": "string",
"class_id": "string",
"comp_count_per_vf": 0,
"enabled": False,
"int_count_per_vf": 0,
"object_type": "string",
"rx_count_per_vf": 0,
"tx_count_per_vf": 0,
"vf_count": 0,
}],
switch_id="string",
tags=[{
"additional_properties": "string",
"key": "string",
"value": "string",
}],
template_actions=[{
"additional_properties": "string",
"class_id": "string",
"object_type": "string",
"params": [{
"additional_properties": "string",
"class_id": "string",
"name": "string",
"object_type": "string",
"value": "string",
}],
"type": "string",
}],
update_status="string",
usage_count=0,
usnic_settings=[{
"additional_properties": "string",
"class_id": "string",
"cos": 0,
"nr_count": 0,
"object_type": "string",
"usnic_adapter_policy": "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",
}],
vmq_settings=[{
"additional_properties": "string",
"class_id": "string",
"enabled": False,
"multi_queue_support": False,
"num_interrupts": 0,
"num_sub_vnics": 0,
"num_vmqs": 0,
"object_type": "string",
"vmmq_adapter_policy": "string",
}],
vnic_vnic_template_id="string")
const vnicVnicTemplateResource = new intersight.VnicVnicTemplate("vnicVnicTemplateResource", {
accountMoid: "string",
additionalProperties: "string",
ancestors: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
cdns: [{
additionalProperties: "string",
classId: "string",
nrSource: "string",
objectType: "string",
value: "string",
}],
classId: "string",
createTime: "string",
description: "string",
domainGroupMoid: "string",
enableOverride: false,
ethAdapterPolicies: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
ethNetworkPolicies: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
ethQosPolicies: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
fabricEthNetworkControlPolicies: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
fabricEthNetworkGroupPolicies: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
failoverEnabled: false,
iscsiBootPolicies: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
lcpUsageCount: 0,
macPools: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
modTime: "string",
moid: "string",
name: "string",
objectType: "string",
organizations: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
owners: ["string"],
parents: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
peerVnicName: "string",
permissionResources: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
pinGroupName: "string",
sharedScope: "string",
sriovSettings: [{
additionalProperties: "string",
classId: "string",
compCountPerVf: 0,
enabled: false,
intCountPerVf: 0,
objectType: "string",
rxCountPerVf: 0,
txCountPerVf: 0,
vfCount: 0,
}],
switchId: "string",
tags: [{
additionalProperties: "string",
key: "string",
value: "string",
}],
templateActions: [{
additionalProperties: "string",
classId: "string",
objectType: "string",
params: [{
additionalProperties: "string",
classId: "string",
name: "string",
objectType: "string",
value: "string",
}],
type: "string",
}],
updateStatus: "string",
usageCount: 0,
usnicSettings: [{
additionalProperties: "string",
classId: "string",
cos: 0,
nrCount: 0,
objectType: "string",
usnicAdapterPolicy: "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",
}],
vmqSettings: [{
additionalProperties: "string",
classId: "string",
enabled: false,
multiQueueSupport: false,
numInterrupts: 0,
numSubVnics: 0,
numVmqs: 0,
objectType: "string",
vmmqAdapterPolicy: "string",
}],
vnicVnicTemplateId: "string",
});
type: intersight:VnicVnicTemplate
properties:
accountMoid: string
additionalProperties: string
ancestors:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
cdns:
- additionalProperties: string
classId: string
nrSource: string
objectType: string
value: string
classId: string
createTime: string
description: string
domainGroupMoid: string
enableOverride: false
ethAdapterPolicies:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
ethNetworkPolicies:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
ethQosPolicies:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
fabricEthNetworkControlPolicies:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
fabricEthNetworkGroupPolicies:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
failoverEnabled: false
iscsiBootPolicies:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
lcpUsageCount: 0
macPools:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
modTime: string
moid: string
name: string
objectType: string
organizations:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
owners:
- string
parents:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
peerVnicName: string
permissionResources:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
pinGroupName: string
sharedScope: string
sriovSettings:
- additionalProperties: string
classId: string
compCountPerVf: 0
enabled: false
intCountPerVf: 0
objectType: string
rxCountPerVf: 0
txCountPerVf: 0
vfCount: 0
switchId: string
tags:
- additionalProperties: string
key: string
value: string
templateActions:
- additionalProperties: string
classId: string
objectType: string
params:
- additionalProperties: string
classId: string
name: string
objectType: string
value: string
type: string
updateStatus: string
usageCount: 0
usnicSettings:
- additionalProperties: string
classId: string
cos: 0
nrCount: 0
objectType: string
usnicAdapterPolicy: 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
vmqSettings:
- additionalProperties: string
classId: string
enabled: false
multiQueueSupport: false
numInterrupts: 0
numSubVnics: 0
numVmqs: 0
objectType: string
vmmqAdapterPolicy: string
vnicVnicTemplateId: string
VnicVnicTemplate 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 VnicVnicTemplate resource accepts the following input properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Vnic
Vnic Template Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Cdns
List<Vnic
Vnic Template Cdn> - Consistent Device Naming configuration for the virtual NIC. 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 vNIC template.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Enable
Override bool - When enabled, the configuration of the derived instances may override the template configuration.
- Eth
Adapter List<VnicPolicies Vnic Template Eth Adapter Policy> - A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Eth
Network List<VnicPolicies Vnic Template Eth Network Policy> - A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Eth
Qos List<VnicPolicies Vnic Template Eth Qos Policy> - A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fabric
Eth List<VnicNetwork Control Policies Vnic Template Fabric Eth Network Control Policy> - A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fabric
Eth List<VnicNetwork Group Policies Vnic Template Fabric Eth Network Group Policy> - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- Failover
Enabled bool - Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
- Iscsi
Boot List<VnicPolicies Vnic Template Iscsi Boot Policy> - A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Lcp
Usage doubleCount - (ReadOnly) The count of the Lan Connectivity Policies using vNIC template.
- Mac
Pools List<VnicVnic Template Mac Pool> - A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 vNIC template.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Vnic
Vnic Template 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<Vnic
Vnic Template 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:
- Peer
Vnic stringName - Name of the peer vNIC which belongs to the peer FI.
- Permission
Resources List<VnicVnic Template Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pin
Group stringName - Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
- 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.
- Sriov
Settings List<VnicVnic Template Sriov Setting> - Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
- Switch
Id string - The fabric port to which the vNICs will be associated.*
None
- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A
- Fabric A of the FI cluster.*B
- Fabric B of the FI cluster. - List<Vnic
Vnic Template Tag> - This complex property has following sub-properties:
- Template
Actions List<VnicVnic Template Template Action> - This complex property has following sub-properties:
- Update
Status string - (ReadOnly) The template sync status with all derived objects.*
None
- The Enum value represents that the object is not attached to any template.*OK
- The Enum value represents that the object values are in sync with attached template.*Scheduled
- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress
- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync
- The Enum value represents that the object values are not in sync with attached template. - Usage
Count double - (ReadOnly) The number of objects derived from a Template MO instance.
- Usnic
Settings List<VnicVnic Template Usnic Setting> - User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
- Version
Contexts List<VnicVnic Template Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vmq
Settings List<VnicVnic Template Vmq Setting> - Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
- Vnic
Vnic stringTemplate Id
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Vnic
Vnic Template Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Cdns
[]Vnic
Vnic Template Cdn Args - Consistent Device Naming configuration for the virtual NIC. 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 vNIC template.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Enable
Override bool - When enabled, the configuration of the derived instances may override the template configuration.
- Eth
Adapter []VnicPolicies Vnic Template Eth Adapter Policy Args - A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Eth
Network []VnicPolicies Vnic Template Eth Network Policy Args - A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Eth
Qos []VnicPolicies Vnic Template Eth Qos Policy Args - A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fabric
Eth []VnicNetwork Control Policies Vnic Template Fabric Eth Network Control Policy Args - A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fabric
Eth []VnicNetwork Group Policies Vnic Template Fabric Eth Network Group Policy Args - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- Failover
Enabled bool - Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
- Iscsi
Boot []VnicPolicies Vnic Template Iscsi Boot Policy Args - A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Lcp
Usage float64Count - (ReadOnly) The count of the Lan Connectivity Policies using vNIC template.
- Mac
Pools []VnicVnic Template Mac Pool Args - A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 vNIC template.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Vnic
Vnic Template 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
[]Vnic
Vnic Template 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:
- Peer
Vnic stringName - Name of the peer vNIC which belongs to the peer FI.
- Permission
Resources []VnicVnic Template Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pin
Group stringName - Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
- 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.
- Sriov
Settings []VnicVnic Template Sriov Setting Args - Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
- Switch
Id string - The fabric port to which the vNICs will be associated.*
None
- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A
- Fabric A of the FI cluster.*B
- Fabric B of the FI cluster. - []Vnic
Vnic Template Tag Args - This complex property has following sub-properties:
- Template
Actions []VnicVnic Template Template Action Args - This complex property has following sub-properties:
- Update
Status string - (ReadOnly) The template sync status with all derived objects.*
None
- The Enum value represents that the object is not attached to any template.*OK
- The Enum value represents that the object values are in sync with attached template.*Scheduled
- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress
- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync
- The Enum value represents that the object values are not in sync with attached template. - Usage
Count float64 - (ReadOnly) The number of objects derived from a Template MO instance.
- Usnic
Settings []VnicVnic Template Usnic Setting Args - User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
- Version
Contexts []VnicVnic Template Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vmq
Settings []VnicVnic Template Vmq Setting Args - Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
- Vnic
Vnic stringTemplate Id
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Vnic
Vnic Template Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- cdns
List<Vnic
Vnic Template Cdn> - Consistent Device Naming configuration for the virtual NIC. 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 vNIC template.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Override Boolean - When enabled, the configuration of the derived instances may override the template configuration.
- eth
Adapter List<VnicPolicies Vnic Template Eth Adapter Policy> - A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth
Network List<VnicPolicies Vnic Template Eth Network Policy> - A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth
Qos List<VnicPolicies Vnic Template Eth Qos Policy> - A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric
Eth List<VnicNetwork Control Policies Vnic Template Fabric Eth Network Control Policy> - A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric
Eth List<VnicNetwork Group Policies Vnic Template Fabric Eth Network Group Policy> - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- failover
Enabled Boolean - Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
- iscsi
Boot List<VnicPolicies Vnic Template Iscsi Boot Policy> - A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- lcp
Usage DoubleCount - (ReadOnly) The count of the Lan Connectivity Policies using vNIC template.
- mac
Pools List<VnicVnic Template Mac Pool> - A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 vNIC template.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Vnic
Vnic Template 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<Vnic
Vnic Template 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:
- peer
Vnic StringName - Name of the peer vNIC which belongs to the peer FI.
- permission
Resources List<VnicVnic Template Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin
Group StringName - Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
- 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.
- sriov
Settings List<VnicVnic Template Sriov Setting> - Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
- switch
Id String - The fabric port to which the vNICs will be associated.*
None
- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A
- Fabric A of the FI cluster.*B
- Fabric B of the FI cluster. - List<Vnic
Vnic Template Tag> - This complex property has following sub-properties:
- template
Actions List<VnicVnic Template Template Action> - This complex property has following sub-properties:
- update
Status String - (ReadOnly) The template sync status with all derived objects.*
None
- The Enum value represents that the object is not attached to any template.*OK
- The Enum value represents that the object values are in sync with attached template.*Scheduled
- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress
- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync
- The Enum value represents that the object values are not in sync with attached template. - usage
Count Double - (ReadOnly) The number of objects derived from a Template MO instance.
- usnic
Settings List<VnicVnic Template Usnic Setting> - User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
- version
Contexts List<VnicVnic Template Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vmq
Settings List<VnicVnic Template Vmq Setting> - Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
- vnic
Vnic StringTemplate Id
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Vnic
Vnic Template Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- cdns
Vnic
Vnic Template Cdn[] - Consistent Device Naming configuration for the virtual NIC. 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 vNIC template.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Override boolean - When enabled, the configuration of the derived instances may override the template configuration.
- eth
Adapter VnicPolicies Vnic Template Eth Adapter Policy[] - A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth
Network VnicPolicies Vnic Template Eth Network Policy[] - A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth
Qos VnicPolicies Vnic Template Eth Qos Policy[] - A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric
Eth VnicNetwork Control Policies Vnic Template Fabric Eth Network Control Policy[] - A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric
Eth VnicNetwork Group Policies Vnic Template Fabric Eth Network Group Policy[] - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- failover
Enabled boolean - Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
- iscsi
Boot VnicPolicies Vnic Template Iscsi Boot Policy[] - A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- lcp
Usage numberCount - (ReadOnly) The count of the Lan Connectivity Policies using vNIC template.
- mac
Pools VnicVnic Template Mac Pool[] - A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 vNIC template.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Vnic
Vnic Template 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
Vnic
Vnic Template 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:
- peer
Vnic stringName - Name of the peer vNIC which belongs to the peer FI.
- permission
Resources VnicVnic Template Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin
Group stringName - Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
- 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.
- sriov
Settings VnicVnic Template Sriov Setting[] - Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
- switch
Id string - The fabric port to which the vNICs will be associated.*
None
- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A
- Fabric A of the FI cluster.*B
- Fabric B of the FI cluster. - Vnic
Vnic Template Tag[] - This complex property has following sub-properties:
- template
Actions VnicVnic Template Template Action[] - This complex property has following sub-properties:
- update
Status string - (ReadOnly) The template sync status with all derived objects.*
None
- The Enum value represents that the object is not attached to any template.*OK
- The Enum value represents that the object values are in sync with attached template.*Scheduled
- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress
- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync
- The Enum value represents that the object values are not in sync with attached template. - usage
Count number - (ReadOnly) The number of objects derived from a Template MO instance.
- usnic
Settings VnicVnic Template Usnic Setting[] - User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
- version
Contexts VnicVnic Template Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vmq
Settings VnicVnic Template Vmq Setting[] - Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
- vnic
Vnic stringTemplate Id
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Vnic
Vnic Template Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- cdns
Sequence[Vnic
Vnic Template Cdn Args] - Consistent Device Naming configuration for the virtual NIC. 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 vNIC template.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable_
override bool - When enabled, the configuration of the derived instances may override the template configuration.
- eth_
adapter_ Sequence[Vnicpolicies Vnic Template Eth Adapter Policy Args] - A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth_
network_ Sequence[Vnicpolicies Vnic Template Eth Network Policy Args] - A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth_
qos_ Sequence[Vnicpolicies Vnic Template Eth Qos Policy Args] - A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric_
eth_ Sequence[Vnicnetwork_ control_ policies Vnic Template Fabric Eth Network Control Policy Args] - A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric_
eth_ Sequence[Vnicnetwork_ group_ policies Vnic Template Fabric Eth Network Group Policy Args] - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- failover_
enabled bool - Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
- iscsi_
boot_ Sequence[Vnicpolicies Vnic Template Iscsi Boot Policy Args] - A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- lcp_
usage_ floatcount - (ReadOnly) The count of the Lan Connectivity Policies using vNIC template.
- mac_
pools Sequence[VnicVnic Template Mac Pool Args] - A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 vNIC template.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Sequence[Vnic
Vnic Template 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[Vnic
Vnic Template 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:
- peer_
vnic_ strname - Name of the peer vNIC which belongs to the peer FI.
- permission_
resources Sequence[VnicVnic Template Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin_
group_ strname - Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
- 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.
- sriov_
settings Sequence[VnicVnic Template Sriov Setting Args] - Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
- switch_
id str - The fabric port to which the vNICs will be associated.*
None
- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A
- Fabric A of the FI cluster.*B
- Fabric B of the FI cluster. - Sequence[Vnic
Vnic Template Tag Args] - This complex property has following sub-properties:
- template_
actions Sequence[VnicVnic Template Template Action Args] - This complex property has following sub-properties:
- update_
status str - (ReadOnly) The template sync status with all derived objects.*
None
- The Enum value represents that the object is not attached to any template.*OK
- The Enum value represents that the object values are in sync with attached template.*Scheduled
- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress
- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync
- The Enum value represents that the object values are not in sync with attached template. - usage_
count float - (ReadOnly) The number of objects derived from a Template MO instance.
- usnic_
settings Sequence[VnicVnic Template Usnic Setting Args] - User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
- version_
contexts Sequence[VnicVnic Template Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vmq_
settings Sequence[VnicVnic Template Vmq Setting Args] - Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
- vnic_
vnic_ strtemplate_ id
- 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:
- cdns List<Property Map>
- Consistent Device Naming configuration for the virtual NIC. 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 vNIC template.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Override Boolean - When enabled, the configuration of the derived instances may override the template configuration.
- eth
Adapter List<Property Map>Policies - A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth
Network List<Property Map>Policies - A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth
Qos List<Property Map>Policies - A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric
Eth List<Property Map>Network Control Policies - A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric
Eth List<Property Map>Network Group Policies - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- failover
Enabled Boolean - Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
- iscsi
Boot List<Property Map>Policies - A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- lcp
Usage NumberCount - (ReadOnly) The count of the Lan Connectivity Policies using vNIC template.
- mac
Pools List<Property Map> - A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 vNIC template.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- peer
Vnic StringName - Name of the peer vNIC which belongs to the peer FI.
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin
Group StringName - Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
- 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.
- sriov
Settings List<Property Map> - Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
- switch
Id String - The fabric port to which the vNICs will be associated.*
None
- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A
- Fabric A of the FI cluster.*B
- Fabric B of the FI cluster. - List<Property Map>
- This complex property has following sub-properties:
- template
Actions List<Property Map> - This complex property has following sub-properties:
- update
Status String - (ReadOnly) The template sync status with all derived objects.*
None
- The Enum value represents that the object is not attached to any template.*OK
- The Enum value represents that the object values are in sync with attached template.*Scheduled
- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress
- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync
- The Enum value represents that the object values are not in sync with attached template. - usage
Count Number - (ReadOnly) The number of objects derived from a Template MO instance.
- usnic
Settings List<Property Map> - User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. 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:
- vmq
Settings List<Property Map> - Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
- vnic
Vnic StringTemplate Id
Outputs
All input properties are implicitly available as output properties. Additionally, the VnicVnicTemplate 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 VnicVnicTemplate Resource
Get an existing VnicVnicTemplate 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?: VnicVnicTemplateState, opts?: CustomResourceOptions): VnicVnicTemplate
@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[VnicVnicTemplateAncestorArgs]] = None,
cdns: Optional[Sequence[VnicVnicTemplateCdnArgs]] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
enable_override: Optional[bool] = None,
eth_adapter_policies: Optional[Sequence[VnicVnicTemplateEthAdapterPolicyArgs]] = None,
eth_network_policies: Optional[Sequence[VnicVnicTemplateEthNetworkPolicyArgs]] = None,
eth_qos_policies: Optional[Sequence[VnicVnicTemplateEthQosPolicyArgs]] = None,
fabric_eth_network_control_policies: Optional[Sequence[VnicVnicTemplateFabricEthNetworkControlPolicyArgs]] = None,
fabric_eth_network_group_policies: Optional[Sequence[VnicVnicTemplateFabricEthNetworkGroupPolicyArgs]] = None,
failover_enabled: Optional[bool] = None,
iscsi_boot_policies: Optional[Sequence[VnicVnicTemplateIscsiBootPolicyArgs]] = None,
lcp_usage_count: Optional[float] = None,
mac_pools: Optional[Sequence[VnicVnicTemplateMacPoolArgs]] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
object_type: Optional[str] = None,
organizations: Optional[Sequence[VnicVnicTemplateOrganizationArgs]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[VnicVnicTemplateParentArgs]] = None,
peer_vnic_name: Optional[str] = None,
permission_resources: Optional[Sequence[VnicVnicTemplatePermissionResourceArgs]] = None,
pin_group_name: Optional[str] = None,
shared_scope: Optional[str] = None,
sriov_settings: Optional[Sequence[VnicVnicTemplateSriovSettingArgs]] = None,
switch_id: Optional[str] = None,
tags: Optional[Sequence[VnicVnicTemplateTagArgs]] = None,
template_actions: Optional[Sequence[VnicVnicTemplateTemplateActionArgs]] = None,
update_status: Optional[str] = None,
usage_count: Optional[float] = None,
usnic_settings: Optional[Sequence[VnicVnicTemplateUsnicSettingArgs]] = None,
version_contexts: Optional[Sequence[VnicVnicTemplateVersionContextArgs]] = None,
vmq_settings: Optional[Sequence[VnicVnicTemplateVmqSettingArgs]] = None,
vnic_vnic_template_id: Optional[str] = None) -> VnicVnicTemplate
func GetVnicVnicTemplate(ctx *Context, name string, id IDInput, state *VnicVnicTemplateState, opts ...ResourceOption) (*VnicVnicTemplate, error)
public static VnicVnicTemplate Get(string name, Input<string> id, VnicVnicTemplateState? state, CustomResourceOptions? opts = null)
public static VnicVnicTemplate get(String name, Output<String> id, VnicVnicTemplateState state, CustomResourceOptions options)
resources: _: type: intersight:VnicVnicTemplate get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Vnic
Vnic Template Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Cdns
List<Vnic
Vnic Template Cdn> - Consistent Device Naming configuration for the virtual NIC. 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 vNIC template.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Enable
Override bool - When enabled, the configuration of the derived instances may override the template configuration.
- Eth
Adapter List<VnicPolicies Vnic Template Eth Adapter Policy> - A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Eth
Network List<VnicPolicies Vnic Template Eth Network Policy> - A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Eth
Qos List<VnicPolicies Vnic Template Eth Qos Policy> - A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fabric
Eth List<VnicNetwork Control Policies Vnic Template Fabric Eth Network Control Policy> - A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fabric
Eth List<VnicNetwork Group Policies Vnic Template Fabric Eth Network Group Policy> - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- Failover
Enabled bool - Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
- Iscsi
Boot List<VnicPolicies Vnic Template Iscsi Boot Policy> - A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Lcp
Usage doubleCount - (ReadOnly) The count of the Lan Connectivity Policies using vNIC template.
- Mac
Pools List<VnicVnic Template Mac Pool> - A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 vNIC template.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Vnic
Vnic Template 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<Vnic
Vnic Template 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:
- Peer
Vnic stringName - Name of the peer vNIC which belongs to the peer FI.
- Permission
Resources List<VnicVnic Template Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pin
Group stringName - Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
- 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.
- Sriov
Settings List<VnicVnic Template Sriov Setting> - Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
- Switch
Id string - The fabric port to which the vNICs will be associated.*
None
- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A
- Fabric A of the FI cluster.*B
- Fabric B of the FI cluster. - List<Vnic
Vnic Template Tag> - This complex property has following sub-properties:
- Template
Actions List<VnicVnic Template Template Action> - This complex property has following sub-properties:
- Update
Status string - (ReadOnly) The template sync status with all derived objects.*
None
- The Enum value represents that the object is not attached to any template.*OK
- The Enum value represents that the object values are in sync with attached template.*Scheduled
- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress
- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync
- The Enum value represents that the object values are not in sync with attached template. - Usage
Count double - (ReadOnly) The number of objects derived from a Template MO instance.
- Usnic
Settings List<VnicVnic Template Usnic Setting> - User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
- Version
Contexts List<VnicVnic Template Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vmq
Settings List<VnicVnic Template Vmq Setting> - Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
- Vnic
Vnic stringTemplate Id
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Vnic
Vnic Template Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Cdns
[]Vnic
Vnic Template Cdn Args - Consistent Device Naming configuration for the virtual NIC. 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 vNIC template.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Enable
Override bool - When enabled, the configuration of the derived instances may override the template configuration.
- Eth
Adapter []VnicPolicies Vnic Template Eth Adapter Policy Args - A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Eth
Network []VnicPolicies Vnic Template Eth Network Policy Args - A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Eth
Qos []VnicPolicies Vnic Template Eth Qos Policy Args - A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fabric
Eth []VnicNetwork Control Policies Vnic Template Fabric Eth Network Control Policy Args - A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Fabric
Eth []VnicNetwork Group Policies Vnic Template Fabric Eth Network Group Policy Args - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- Failover
Enabled bool - Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
- Iscsi
Boot []VnicPolicies Vnic Template Iscsi Boot Policy Args - A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Lcp
Usage float64Count - (ReadOnly) The count of the Lan Connectivity Policies using vNIC template.
- Mac
Pools []VnicVnic Template Mac Pool Args - A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 vNIC template.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Vnic
Vnic Template 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
[]Vnic
Vnic Template 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:
- Peer
Vnic stringName - Name of the peer vNIC which belongs to the peer FI.
- Permission
Resources []VnicVnic Template Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pin
Group stringName - Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
- 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.
- Sriov
Settings []VnicVnic Template Sriov Setting Args - Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
- Switch
Id string - The fabric port to which the vNICs will be associated.*
None
- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A
- Fabric A of the FI cluster.*B
- Fabric B of the FI cluster. - []Vnic
Vnic Template Tag Args - This complex property has following sub-properties:
- Template
Actions []VnicVnic Template Template Action Args - This complex property has following sub-properties:
- Update
Status string - (ReadOnly) The template sync status with all derived objects.*
None
- The Enum value represents that the object is not attached to any template.*OK
- The Enum value represents that the object values are in sync with attached template.*Scheduled
- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress
- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync
- The Enum value represents that the object values are not in sync with attached template. - Usage
Count float64 - (ReadOnly) The number of objects derived from a Template MO instance.
- Usnic
Settings []VnicVnic Template Usnic Setting Args - User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
- Version
Contexts []VnicVnic Template Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vmq
Settings []VnicVnic Template Vmq Setting Args - Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
- Vnic
Vnic stringTemplate Id
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Vnic
Vnic Template Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- cdns
List<Vnic
Vnic Template Cdn> - Consistent Device Naming configuration for the virtual NIC. 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 vNIC template.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Override Boolean - When enabled, the configuration of the derived instances may override the template configuration.
- eth
Adapter List<VnicPolicies Vnic Template Eth Adapter Policy> - A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth
Network List<VnicPolicies Vnic Template Eth Network Policy> - A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth
Qos List<VnicPolicies Vnic Template Eth Qos Policy> - A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric
Eth List<VnicNetwork Control Policies Vnic Template Fabric Eth Network Control Policy> - A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric
Eth List<VnicNetwork Group Policies Vnic Template Fabric Eth Network Group Policy> - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- failover
Enabled Boolean - Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
- iscsi
Boot List<VnicPolicies Vnic Template Iscsi Boot Policy> - A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- lcp
Usage DoubleCount - (ReadOnly) The count of the Lan Connectivity Policies using vNIC template.
- mac
Pools List<VnicVnic Template Mac Pool> - A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 vNIC template.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Vnic
Vnic Template 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<Vnic
Vnic Template 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:
- peer
Vnic StringName - Name of the peer vNIC which belongs to the peer FI.
- permission
Resources List<VnicVnic Template Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin
Group StringName - Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
- 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.
- sriov
Settings List<VnicVnic Template Sriov Setting> - Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
- switch
Id String - The fabric port to which the vNICs will be associated.*
None
- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A
- Fabric A of the FI cluster.*B
- Fabric B of the FI cluster. - List<Vnic
Vnic Template Tag> - This complex property has following sub-properties:
- template
Actions List<VnicVnic Template Template Action> - This complex property has following sub-properties:
- update
Status String - (ReadOnly) The template sync status with all derived objects.*
None
- The Enum value represents that the object is not attached to any template.*OK
- The Enum value represents that the object values are in sync with attached template.*Scheduled
- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress
- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync
- The Enum value represents that the object values are not in sync with attached template. - usage
Count Double - (ReadOnly) The number of objects derived from a Template MO instance.
- usnic
Settings List<VnicVnic Template Usnic Setting> - User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
- version
Contexts List<VnicVnic Template Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vmq
Settings List<VnicVnic Template Vmq Setting> - Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
- vnic
Vnic StringTemplate Id
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Vnic
Vnic Template Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- cdns
Vnic
Vnic Template Cdn[] - Consistent Device Naming configuration for the virtual NIC. 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 vNIC template.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Override boolean - When enabled, the configuration of the derived instances may override the template configuration.
- eth
Adapter VnicPolicies Vnic Template Eth Adapter Policy[] - A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth
Network VnicPolicies Vnic Template Eth Network Policy[] - A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth
Qos VnicPolicies Vnic Template Eth Qos Policy[] - A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric
Eth VnicNetwork Control Policies Vnic Template Fabric Eth Network Control Policy[] - A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric
Eth VnicNetwork Group Policies Vnic Template Fabric Eth Network Group Policy[] - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- failover
Enabled boolean - Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
- iscsi
Boot VnicPolicies Vnic Template Iscsi Boot Policy[] - A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- lcp
Usage numberCount - (ReadOnly) The count of the Lan Connectivity Policies using vNIC template.
- mac
Pools VnicVnic Template Mac Pool[] - A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 vNIC template.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Vnic
Vnic Template 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
Vnic
Vnic Template 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:
- peer
Vnic stringName - Name of the peer vNIC which belongs to the peer FI.
- permission
Resources VnicVnic Template Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin
Group stringName - Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
- 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.
- sriov
Settings VnicVnic Template Sriov Setting[] - Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
- switch
Id string - The fabric port to which the vNICs will be associated.*
None
- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A
- Fabric A of the FI cluster.*B
- Fabric B of the FI cluster. - Vnic
Vnic Template Tag[] - This complex property has following sub-properties:
- template
Actions VnicVnic Template Template Action[] - This complex property has following sub-properties:
- update
Status string - (ReadOnly) The template sync status with all derived objects.*
None
- The Enum value represents that the object is not attached to any template.*OK
- The Enum value represents that the object values are in sync with attached template.*Scheduled
- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress
- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync
- The Enum value represents that the object values are not in sync with attached template. - usage
Count number - (ReadOnly) The number of objects derived from a Template MO instance.
- usnic
Settings VnicVnic Template Usnic Setting[] - User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
- version
Contexts VnicVnic Template Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vmq
Settings VnicVnic Template Vmq Setting[] - Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
- vnic
Vnic stringTemplate Id
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Vnic
Vnic Template Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- cdns
Sequence[Vnic
Vnic Template Cdn Args] - Consistent Device Naming configuration for the virtual NIC. 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 vNIC template.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable_
override bool - When enabled, the configuration of the derived instances may override the template configuration.
- eth_
adapter_ Sequence[Vnicpolicies Vnic Template Eth Adapter Policy Args] - A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth_
network_ Sequence[Vnicpolicies Vnic Template Eth Network Policy Args] - A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth_
qos_ Sequence[Vnicpolicies Vnic Template Eth Qos Policy Args] - A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric_
eth_ Sequence[Vnicnetwork_ control_ policies Vnic Template Fabric Eth Network Control Policy Args] - A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric_
eth_ Sequence[Vnicnetwork_ group_ policies Vnic Template Fabric Eth Network Group Policy Args] - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- failover_
enabled bool - Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
- iscsi_
boot_ Sequence[Vnicpolicies Vnic Template Iscsi Boot Policy Args] - A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- lcp_
usage_ floatcount - (ReadOnly) The count of the Lan Connectivity Policies using vNIC template.
- mac_
pools Sequence[VnicVnic Template Mac Pool Args] - A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 vNIC template.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Sequence[Vnic
Vnic Template 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[Vnic
Vnic Template 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:
- peer_
vnic_ strname - Name of the peer vNIC which belongs to the peer FI.
- permission_
resources Sequence[VnicVnic Template Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin_
group_ strname - Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
- 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.
- sriov_
settings Sequence[VnicVnic Template Sriov Setting Args] - Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
- switch_
id str - The fabric port to which the vNICs will be associated.*
None
- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A
- Fabric A of the FI cluster.*B
- Fabric B of the FI cluster. - Sequence[Vnic
Vnic Template Tag Args] - This complex property has following sub-properties:
- template_
actions Sequence[VnicVnic Template Template Action Args] - This complex property has following sub-properties:
- update_
status str - (ReadOnly) The template sync status with all derived objects.*
None
- The Enum value represents that the object is not attached to any template.*OK
- The Enum value represents that the object values are in sync with attached template.*Scheduled
- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress
- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync
- The Enum value represents that the object values are not in sync with attached template. - usage_
count float - (ReadOnly) The number of objects derived from a Template MO instance.
- usnic_
settings Sequence[VnicVnic Template Usnic Setting Args] - User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. This complex property has following sub-properties:
- version_
contexts Sequence[VnicVnic Template Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vmq_
settings Sequence[VnicVnic Template Vmq Setting Args] - Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
- vnic_
vnic_ strtemplate_ id
- 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:
- cdns List<Property Map>
- Consistent Device Naming configuration for the virtual NIC. 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 vNIC template.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Override Boolean - When enabled, the configuration of the derived instances may override the template configuration.
- eth
Adapter List<Property Map>Policies - A reference to a vnicEthAdapterPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth
Network List<Property Map>Policies - A reference to a vnicEthNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- eth
Qos List<Property Map>Policies - A reference to a vnicEthQosPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric
Eth List<Property Map>Network Control Policies - A reference to a fabricEthNetworkControlPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- fabric
Eth List<Property Map>Network Group Policies - An array of relationships to fabricEthNetworkGroupPolicy resources. This complex property has following sub-properties:
- failover
Enabled Boolean - Enabling failover ensures that traffic from the vNIC automatically fails over to the secondary Fabric Interconnect, in case the specified Fabric Interconnect path goes down. Failover applies only to Cisco VICs that are connected to a Fabric Interconnect cluster.
- iscsi
Boot List<Property Map>Policies - A reference to a vnicIscsiBootPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- lcp
Usage NumberCount - (ReadOnly) The count of the Lan Connectivity Policies using vNIC template.
- mac
Pools List<Property Map> - A reference to a macpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 vNIC template.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- peer
Vnic StringName - Name of the peer vNIC which belongs to the peer FI.
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pin
Group StringName - Pingroup name associated to vNIC for static pinning. LCP deploy will resolve pingroup name and fetches the correspoding uplink port/port channel to pin the vNIC traffic.
- 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.
- sriov
Settings List<Property Map> - Single Root Input Output Virtualization (SR-IOV) Settings that enable one physical ethernet socket to appear as multiple NICs to the hypervisor. This complex property has following sub-properties:
- switch
Id String - The fabric port to which the vNICs will be associated.*
None
- Fabric Id is not set to either A or B for the standalone case where the server is not connected to Fabric Interconnects. The value 'None' should be used.*A
- Fabric A of the FI cluster.*B
- Fabric B of the FI cluster. - List<Property Map>
- This complex property has following sub-properties:
- template
Actions List<Property Map> - This complex property has following sub-properties:
- update
Status String - (ReadOnly) The template sync status with all derived objects.*
None
- The Enum value represents that the object is not attached to any template.*OK
- The Enum value represents that the object values are in sync with attached template.*Scheduled
- The Enum value represents that the object sync from attached template is scheduled from template.*InProgress
- The Enum value represents that the object sync with the attached template is in progress.*OutOfSync
- The Enum value represents that the object values are not in sync with attached template. - usage
Count Number - (ReadOnly) The number of objects derived from a Template MO instance.
- usnic
Settings List<Property Map> - User Space NIC Settings that enable low-latency and higher throughput by bypassing the kernel layer when sending/receiving packets. 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:
- vmq
Settings List<Property Map> - Virtual Machine Queue Settings for the virtual interface that allow efficient transfer of network traffic to the guest OS. This complex property has following sub-properties:
- vnic
Vnic StringTemplate Id
Supporting Types
VnicVnicTemplateAncestor, VnicVnicTemplateAncestorArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicVnicTemplateCdn, VnicVnicTemplateCdnArgs
- Additional
Properties string - Class
Id string - Nr
Source string - Source of the CDN. It can either be user specified or be the same as the vNIC name.*
vnic
- Source of the CDN is the same as the vNIC name.*user
- Source of the CDN is specified by the user. - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The CDN value entered in case of user defined mode.
- Additional
Properties string - Class
Id string - Nr
Source string - Source of the CDN. It can either be user specified or be the same as the vNIC name.*
vnic
- Source of the CDN is the same as the vNIC name.*user
- Source of the CDN is specified by the user. - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The CDN value entered in case of user defined mode.
- additional
Properties String - class
Id String - nr
Source String - Source of the CDN. It can either be user specified or be the same as the vNIC name.*
vnic
- Source of the CDN is the same as the vNIC name.*user
- Source of the CDN is specified by the user. - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The CDN value entered in case of user defined mode.
- additional
Properties string - class
Id string - nr
Source string - Source of the CDN. It can either be user specified or be the same as the vNIC name.*
vnic
- Source of the CDN is the same as the vNIC name.*user
- Source of the CDN is specified by the user. - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value string
- The CDN value entered in case of user defined mode.
- additional_
properties str - class_
id str - nr_
source str - Source of the CDN. It can either be user specified or be the same as the vNIC name.*
vnic
- Source of the CDN is the same as the vNIC name.*user
- Source of the CDN is specified by the user. - object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value str
- The CDN value entered in case of user defined mode.
- additional
Properties String - class
Id String - nr
Source String - Source of the CDN. It can either be user specified or be the same as the vNIC name.*
vnic
- Source of the CDN is the same as the vNIC name.*user
- Source of the CDN is specified by the user. - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The CDN value entered in case of user defined mode.
VnicVnicTemplateEthAdapterPolicy, VnicVnicTemplateEthAdapterPolicyArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicVnicTemplateEthNetworkPolicy, VnicVnicTemplateEthNetworkPolicyArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicVnicTemplateEthQosPolicy, VnicVnicTemplateEthQosPolicyArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicVnicTemplateFabricEthNetworkControlPolicy, VnicVnicTemplateFabricEthNetworkControlPolicyArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicVnicTemplateFabricEthNetworkGroupPolicy, VnicVnicTemplateFabricEthNetworkGroupPolicyArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicVnicTemplateIscsiBootPolicy, VnicVnicTemplateIscsiBootPolicyArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicVnicTemplateMacPool, VnicVnicTemplateMacPoolArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicVnicTemplateOrganization, VnicVnicTemplateOrganizationArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicVnicTemplateParent, VnicVnicTemplateParentArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicVnicTemplatePermissionResource, VnicVnicTemplatePermissionResourceArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicVnicTemplateSriovSetting, VnicVnicTemplateSriovSettingArgs
- Additional
Properties string - Class
Id string - Comp
Count doublePer Vf - Completion Queue resources per Virtual Function (VF).
- Enabled bool
- If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
- Int
Count doublePer Vf - Interrupt Count resources per Virtual Function (VF).
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Rx
Count doublePer Vf - Receive Queue resources per Virtual Function (VF).
- Tx
Count doublePer Vf - Transmit Queue resources per Virtual Function (VF).
- Vf
Count double - Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
- Additional
Properties string - Class
Id string - Comp
Count float64Per Vf - Completion Queue resources per Virtual Function (VF).
- Enabled bool
- If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
- Int
Count float64Per Vf - Interrupt Count resources per Virtual Function (VF).
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Rx
Count float64Per Vf - Receive Queue resources per Virtual Function (VF).
- Tx
Count float64Per Vf - Transmit Queue resources per Virtual Function (VF).
- Vf
Count float64 - Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
- additional
Properties String - class
Id String - comp
Count DoublePer Vf - Completion Queue resources per Virtual Function (VF).
- enabled Boolean
- If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
- int
Count DoublePer Vf - Interrupt Count resources per Virtual Function (VF).
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- rx
Count DoublePer Vf - Receive Queue resources per Virtual Function (VF).
- tx
Count DoublePer Vf - Transmit Queue resources per Virtual Function (VF).
- vf
Count Double - Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
- additional
Properties string - class
Id string - comp
Count numberPer Vf - Completion Queue resources per Virtual Function (VF).
- enabled boolean
- If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
- int
Count numberPer Vf - Interrupt Count resources per Virtual Function (VF).
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- rx
Count numberPer Vf - Receive Queue resources per Virtual Function (VF).
- tx
Count numberPer Vf - Transmit Queue resources per Virtual Function (VF).
- vf
Count number - Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
- additional_
properties str - class_
id str - comp_
count_ floatper_ vf - Completion Queue resources per Virtual Function (VF).
- enabled bool
- If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
- int_
count_ floatper_ vf - Interrupt Count resources per Virtual Function (VF).
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- rx_
count_ floatper_ vf - Receive Queue resources per Virtual Function (VF).
- tx_
count_ floatper_ vf - Transmit Queue resources per Virtual Function (VF).
- vf_
count float - Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
- additional
Properties String - class
Id String - comp
Count NumberPer Vf - Completion Queue resources per Virtual Function (VF).
- enabled Boolean
- If enabled, sets Single Root Input Output Virtualization (SR-IOV) on this vNIC.
- int
Count NumberPer Vf - Interrupt Count resources per Virtual Function (VF).
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- rx
Count NumberPer Vf - Receive Queue resources per Virtual Function (VF).
- tx
Count NumberPer Vf - Transmit Queue resources per Virtual Function (VF).
- vf
Count Number - Number of Virtual Functions (VF) to be created for this vNIC. Valid values are 1 to 64 when SR-IOV is enabled.
VnicVnicTemplateTag, VnicVnicTemplateTagArgs
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
VnicVnicTemplateTemplateAction, VnicVnicTemplateTemplateActionArgs
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Params
List<Vnic
Vnic Template Template Action Param> - This complex property has following sub-properties:
- Type string
- The action type to be executed.*
Sync
- The action to merge values from the template to its derived objects.*Deploy
- The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.*Detach
- The action to detach the current derived object from its attached template.*Attach
- The action to attach the current object to the specified template.
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Params
[]Vnic
Vnic Template Template Action Param - This complex property has following sub-properties:
- Type string
- The action type to be executed.*
Sync
- The action to merge values from the template to its derived objects.*Deploy
- The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.*Detach
- The action to detach the current derived object from its attached template.*Attach
- The action to attach the current object to the specified template.
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params
List<Vnic
Vnic Template Template Action Param> - This complex property has following sub-properties:
- type String
- The action type to be executed.*
Sync
- The action to merge values from the template to its derived objects.*Deploy
- The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.*Detach
- The action to detach the current derived object from its attached template.*Attach
- The action to attach the current object to the specified template.
- additional
Properties string - class
Id string - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params
Vnic
Vnic Template Template Action Param[] - This complex property has following sub-properties:
- type string
- The action type to be executed.*
Sync
- The action to merge values from the template to its derived objects.*Deploy
- The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.*Detach
- The action to detach the current derived object from its attached template.*Attach
- The action to attach the current object to the specified template.
- additional_
properties str - class_
id str - object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params
Sequence[Vnic
Vnic Template Template Action Param] - This complex property has following sub-properties:
- type str
- The action type to be executed.*
Sync
- The action to merge values from the template to its derived objects.*Deploy
- The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.*Detach
- The action to detach the current derived object from its attached template.*Attach
- The action to attach the current object to the specified template.
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params List<Property Map>
- This complex property has following sub-properties:
- type String
- The action type to be executed.*
Sync
- The action to merge values from the template to its derived objects.*Deploy
- The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.*Detach
- The action to detach the current derived object from its attached template.*Attach
- The action to attach the current object to the specified template.
VnicVnicTemplateTemplateActionParam, VnicVnicTemplateTemplateActionParamArgs
- Additional
Properties string - Class
Id string - Name string
- The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.*
None
- The default parameter that implies that no action parameter is required for the template action.*SyncType
- The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.*SyncTimer
- The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.*OverriddenList
- The parameter applicable in attach operation indicating the configurations that must override the template configurations. - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
- Additional
Properties string - Class
Id string - Name string
- The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.*
None
- The default parameter that implies that no action parameter is required for the template action.*SyncType
- The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.*SyncTimer
- The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.*OverriddenList
- The parameter applicable in attach operation indicating the configurations that must override the template configurations. - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
- additional
Properties String - class
Id String - name String
- The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.*
None
- The default parameter that implies that no action parameter is required for the template action.*SyncType
- The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.*SyncTimer
- The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.*OverriddenList
- The parameter applicable in attach operation indicating the configurations that must override the template configurations. - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
- additional
Properties string - class
Id string - name string
- The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.*
None
- The default parameter that implies that no action parameter is required for the template action.*SyncType
- The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.*SyncTimer
- The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.*OverriddenList
- The parameter applicable in attach operation indicating the configurations that must override the template configurations. - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value string
- The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
- additional_
properties str - class_
id str - name str
- The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.*
None
- The default parameter that implies that no action parameter is required for the template action.*SyncType
- The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.*SyncTimer
- The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.*OverriddenList
- The parameter applicable in attach operation indicating the configurations that must override the template configurations. - object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value str
- The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
- additional
Properties String - class
Id String - name String
- The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.*
None
- The default parameter that implies that no action parameter is required for the template action.*SyncType
- The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.*SyncTimer
- The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.*OverriddenList
- The parameter applicable in attach operation indicating the configurations that must override the template configurations. - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
VnicVnicTemplateUsnicSetting, VnicVnicTemplateUsnicSettingArgs
- Additional
Properties string - Class
Id string - Cos double
- Class of Service to be used for traffic on the usNIC.
- Nr
Count double - Number of usNIC interfaces to be created. When usNIC is enabled, the valid values are from 1 to 225. When usNIC is disabled, the default value is 0.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Usnic
Adapter stringPolicy - Ethernet Adapter policy to be associated with the usNICs.
- Additional
Properties string - Class
Id string - Cos float64
- Class of Service to be used for traffic on the usNIC.
- Nr
Count float64 - Number of usNIC interfaces to be created. When usNIC is enabled, the valid values are from 1 to 225. When usNIC is disabled, the default value is 0.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Usnic
Adapter stringPolicy - Ethernet Adapter policy to be associated with the usNICs.
- additional
Properties String - class
Id String - cos Double
- Class of Service to be used for traffic on the usNIC.
- nr
Count Double - Number of usNIC interfaces to be created. When usNIC is enabled, the valid values are from 1 to 225. When usNIC is disabled, the default value is 0.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- usnic
Adapter StringPolicy - Ethernet Adapter policy to be associated with the usNICs.
- additional
Properties string - class
Id string - cos number
- Class of Service to be used for traffic on the usNIC.
- nr
Count number - Number of usNIC interfaces to be created. When usNIC is enabled, the valid values are from 1 to 225. When usNIC is disabled, the default value is 0.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- usnic
Adapter stringPolicy - Ethernet Adapter policy to be associated with the usNICs.
- additional_
properties str - class_
id str - cos float
- Class of Service to be used for traffic on the usNIC.
- nr_
count float - Number of usNIC interfaces to be created. When usNIC is enabled, the valid values are from 1 to 225. When usNIC is disabled, the default value is 0.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- usnic_
adapter_ strpolicy - Ethernet Adapter policy to be associated with the usNICs.
- additional
Properties String - class
Id String - cos Number
- Class of Service to be used for traffic on the usNIC.
- nr
Count Number - Number of usNIC interfaces to be created. When usNIC is enabled, the valid values are from 1 to 225. When usNIC is disabled, the default value is 0.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- usnic
Adapter StringPolicy - Ethernet Adapter policy to be associated with the usNICs.
VnicVnicTemplateVersionContext, VnicVnicTemplateVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<VnicVnic Template Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<VnicVnic Template Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Class
Id string - Interested
Mos []VnicVnic Template Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []VnicVnic Template Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<VnicVnic Template Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<VnicVnic Template Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - class
Id string - interested
Mos VnicVnic Template Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos VnicVnic Template Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - class_
id str - interested_
mos Sequence[VnicVnic Template Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[VnicVnic Template Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
VnicVnicTemplateVersionContextInterestedMo, VnicVnicTemplateVersionContextInterestedMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicVnicTemplateVersionContextRefMo, VnicVnicTemplateVersionContextRefMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
VnicVnicTemplateVmqSetting, VnicVnicTemplateVmqSettingArgs
- Additional
Properties string - Class
Id string - Enabled bool
- Enables VMQ feature on the virtual interface.
- Multi
Queue boolSupport - Enables Virtual Machine Multi-Queue feature on the virtual interface. VMMQ allows configuration of multiple I/O queues for a single VM and thus distributes traffic across multiple CPU cores in a VM.
- Num
Interrupts double - The number of interrupt resources to be allocated. Recommended value is the number of CPU threads or logical processors available in the server.
- Num
Sub doubleVnics - The number of sub vNICs to be created.
- Num
Vmqs double - The number of hardware Virtual Machine Queues to be allocated. The number of VMQs per adapter must be one more than the maximum number of VM NICs.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Vmmq
Adapter stringPolicy - Ethernet Adapter policy to be associated with the Sub vNICs. The Transmit Queue and Receive Queue resource value of VMMQ adapter policy should be greater than or equal to the configured number of sub vNICs.
- Additional
Properties string - Class
Id string - Enabled bool
- Enables VMQ feature on the virtual interface.
- Multi
Queue boolSupport - Enables Virtual Machine Multi-Queue feature on the virtual interface. VMMQ allows configuration of multiple I/O queues for a single VM and thus distributes traffic across multiple CPU cores in a VM.
- Num
Interrupts float64 - The number of interrupt resources to be allocated. Recommended value is the number of CPU threads or logical processors available in the server.
- Num
Sub float64Vnics - The number of sub vNICs to be created.
- Num
Vmqs float64 - The number of hardware Virtual Machine Queues to be allocated. The number of VMQs per adapter must be one more than the maximum number of VM NICs.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Vmmq
Adapter stringPolicy - Ethernet Adapter policy to be associated with the Sub vNICs. The Transmit Queue and Receive Queue resource value of VMMQ adapter policy should be greater than or equal to the configured number of sub vNICs.
- additional
Properties String - class
Id String - enabled Boolean
- Enables VMQ feature on the virtual interface.
- multi
Queue BooleanSupport - Enables Virtual Machine Multi-Queue feature on the virtual interface. VMMQ allows configuration of multiple I/O queues for a single VM and thus distributes traffic across multiple CPU cores in a VM.
- num
Interrupts Double - The number of interrupt resources to be allocated. Recommended value is the number of CPU threads or logical processors available in the server.
- num
Sub DoubleVnics - The number of sub vNICs to be created.
- num
Vmqs Double - The number of hardware Virtual Machine Queues to be allocated. The number of VMQs per adapter must be one more than the maximum number of VM NICs.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- vmmq
Adapter StringPolicy - Ethernet Adapter policy to be associated with the Sub vNICs. The Transmit Queue and Receive Queue resource value of VMMQ adapter policy should be greater than or equal to the configured number of sub vNICs.
- additional
Properties string - class
Id string - enabled boolean
- Enables VMQ feature on the virtual interface.
- multi
Queue booleanSupport - Enables Virtual Machine Multi-Queue feature on the virtual interface. VMMQ allows configuration of multiple I/O queues for a single VM and thus distributes traffic across multiple CPU cores in a VM.
- num
Interrupts number - The number of interrupt resources to be allocated. Recommended value is the number of CPU threads or logical processors available in the server.
- num
Sub numberVnics - The number of sub vNICs to be created.
- num
Vmqs number - The number of hardware Virtual Machine Queues to be allocated. The number of VMQs per adapter must be one more than the maximum number of VM NICs.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- vmmq
Adapter stringPolicy - Ethernet Adapter policy to be associated with the Sub vNICs. The Transmit Queue and Receive Queue resource value of VMMQ adapter policy should be greater than or equal to the configured number of sub vNICs.
- additional_
properties str - class_
id str - enabled bool
- Enables VMQ feature on the virtual interface.
- multi_
queue_ boolsupport - Enables Virtual Machine Multi-Queue feature on the virtual interface. VMMQ allows configuration of multiple I/O queues for a single VM and thus distributes traffic across multiple CPU cores in a VM.
- num_
interrupts float - The number of interrupt resources to be allocated. Recommended value is the number of CPU threads or logical processors available in the server.
- num_
sub_ floatvnics - The number of sub vNICs to be created.
- num_
vmqs float - The number of hardware Virtual Machine Queues to be allocated. The number of VMQs per adapter must be one more than the maximum number of VM NICs.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- vmmq_
adapter_ strpolicy - Ethernet Adapter policy to be associated with the Sub vNICs. The Transmit Queue and Receive Queue resource value of VMMQ adapter policy should be greater than or equal to the configured number of sub vNICs.
- additional
Properties String - class
Id String - enabled Boolean
- Enables VMQ feature on the virtual interface.
- multi
Queue BooleanSupport - Enables Virtual Machine Multi-Queue feature on the virtual interface. VMMQ allows configuration of multiple I/O queues for a single VM and thus distributes traffic across multiple CPU cores in a VM.
- num
Interrupts Number - The number of interrupt resources to be allocated. Recommended value is the number of CPU threads or logical processors available in the server.
- num
Sub NumberVnics - The number of sub vNICs to be created.
- num
Vmqs Number - The number of hardware Virtual Machine Queues to be allocated. The number of VMQs per adapter must be one more than the maximum number of VM NICs.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- vmmq
Adapter StringPolicy - Ethernet Adapter policy to be associated with the Sub vNICs. The Transmit Queue and Receive Queue resource value of VMMQ adapter policy should be greater than or equal to the configured number of sub vNICs.
Import
intersight_vnic_vnic_template
can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/vnicVnicTemplate:VnicVnicTemplate 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.