intersight.KubernetesAciCniProfile
Explore with Pulumi AI
Configuration for an ACI CNI profile.
Usage Example
Resource Creation
import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";
const config = new pulumi.Config();
const assetDeviceRegistrationAcniCni = config.require("assetDeviceRegistrationAcniCni");
const kubernetesAciCniProfile1 = new intersight.KubernetesAciCniProfile("kubernetesAciCniProfile1", {
description: "kubernetes aci cni profile",
type: "instance",
nodeSvcSubnetStart: "10.0.0.0/8",
podSubnetStart: "10.0.0.0/8",
organizations: [{
objectType: "organization.Organization",
moid: _var.organization,
}],
registeredDevices: [{
moid: assetDeviceRegistrationAcniCni,
objectType: "asset.DeviceRegistrations",
}],
});
import pulumi
import pulumi_intersight as intersight
config = pulumi.Config()
asset_device_registration_acni_cni = config.require("assetDeviceRegistrationAcniCni")
kubernetes_aci_cni_profile1 = intersight.KubernetesAciCniProfile("kubernetesAciCniProfile1",
description="kubernetes aci cni profile",
type="instance",
node_svc_subnet_start="10.0.0.0/8",
pod_subnet_start="10.0.0.0/8",
organizations=[{
"object_type": "organization.Organization",
"moid": var["organization"],
}],
registered_devices=[{
"moid": asset_device_registration_acni_cni,
"object_type": "asset.DeviceRegistrations",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
assetDeviceRegistrationAcniCni := cfg.Require("assetDeviceRegistrationAcniCni")
_, err := intersight.NewKubernetesAciCniProfile(ctx, "kubernetesAciCniProfile1", &intersight.KubernetesAciCniProfileArgs{
Description: pulumi.String("kubernetes aci cni profile"),
Type: pulumi.String("instance"),
NodeSvcSubnetStart: pulumi.String("10.0.0.0/8"),
PodSubnetStart: pulumi.String("10.0.0.0/8"),
Organizations: intersight.KubernetesAciCniProfileOrganizationArray{
&intersight.KubernetesAciCniProfileOrganizationArgs{
ObjectType: pulumi.String("organization.Organization"),
Moid: pulumi.Any(_var.Organization),
},
},
RegisteredDevices: intersight.KubernetesAciCniProfileRegisteredDeviceArray{
&intersight.KubernetesAciCniProfileRegisteredDeviceArgs{
Moid: pulumi.String(assetDeviceRegistrationAcniCni),
ObjectType: pulumi.String("asset.DeviceRegistrations"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var assetDeviceRegistrationAcniCni = config.Require("assetDeviceRegistrationAcniCni");
var kubernetesAciCniProfile1 = new Intersight.KubernetesAciCniProfile("kubernetesAciCniProfile1", new()
{
Description = "kubernetes aci cni profile",
Type = "instance",
NodeSvcSubnetStart = "10.0.0.0/8",
PodSubnetStart = "10.0.0.0/8",
Organizations = new[]
{
new Intersight.Inputs.KubernetesAciCniProfileOrganizationArgs
{
ObjectType = "organization.Organization",
Moid = @var.Organization,
},
},
RegisteredDevices = new[]
{
new Intersight.Inputs.KubernetesAciCniProfileRegisteredDeviceArgs
{
Moid = assetDeviceRegistrationAcniCni,
ObjectType = "asset.DeviceRegistrations",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.KubernetesAciCniProfile;
import com.pulumi.intersight.KubernetesAciCniProfileArgs;
import com.pulumi.intersight.inputs.KubernetesAciCniProfileOrganizationArgs;
import com.pulumi.intersight.inputs.KubernetesAciCniProfileRegisteredDeviceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var assetDeviceRegistrationAcniCni = config.get("assetDeviceRegistrationAcniCni");
var kubernetesAciCniProfile1 = new KubernetesAciCniProfile("kubernetesAciCniProfile1", KubernetesAciCniProfileArgs.builder()
.description("kubernetes aci cni profile")
.type("instance")
.nodeSvcSubnetStart("10.0.0.0/8")
.podSubnetStart("10.0.0.0/8")
.organizations(KubernetesAciCniProfileOrganizationArgs.builder()
.objectType("organization.Organization")
.moid(var_.organization())
.build())
.registeredDevices(KubernetesAciCniProfileRegisteredDeviceArgs.builder()
.moid(assetDeviceRegistrationAcniCni)
.objectType("asset.DeviceRegistrations")
.build())
.build());
}
}
configuration:
assetDeviceRegistrationAcniCni:
type: string
resources:
kubernetesAciCniProfile1:
type: intersight:KubernetesAciCniProfile
properties:
description: kubernetes aci cni profile
type: instance
nodeSvcSubnetStart: 10.0.0.0/8
podSubnetStart: 10.0.0.0/8
organizations:
- objectType: organization.Organization
moid: ${var.organization}
registeredDevices:
- moid: ${assetDeviceRegistrationAcniCni}
objectType: asset.DeviceRegistrations
Create KubernetesAciCniProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KubernetesAciCniProfile(name: string, args?: KubernetesAciCniProfileArgs, opts?: CustomResourceOptions);
@overload
def KubernetesAciCniProfile(resource_name: str,
args: Optional[KubernetesAciCniProfileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def KubernetesAciCniProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
aaep_name: Optional[str] = None,
account_moid: Optional[str] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[KubernetesAciCniProfileAncestorArgs]] = None,
class_id: Optional[str] = None,
cluster_aci_allocations: Optional[Sequence[KubernetesAciCniProfileClusterAciAllocationArgs]] = None,
cluster_profiles: Optional[Sequence[KubernetesAciCniProfileClusterProfileArgs]] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
ext_svc_dyn_subnet_start: Optional[str] = None,
ext_svc_static_subnet_start: Optional[str] = None,
infra_vlan_id: Optional[float] = None,
kubernetes_aci_cni_profile_id: Optional[str] = None,
l3_out_network_name: Optional[str] = None,
l3_out_policy_name: Optional[str] = None,
l3_out_tenant: Optional[str] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
nested_vmm_domain: Optional[str] = None,
node_svc_subnet_start: Optional[str] = None,
node_vlan_range_end: Optional[float] = None,
node_vlan_range_start: Optional[float] = None,
number_of_kubernetes_clusters: Optional[float] = None,
object_type: Optional[str] = None,
opflex_multicast_address_range: Optional[str] = None,
organizations: Optional[Sequence[KubernetesAciCniProfileOrganizationArgs]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[KubernetesAciCniProfileParentArgs]] = None,
permission_resources: Optional[Sequence[KubernetesAciCniProfilePermissionResourceArgs]] = None,
pod_subnet_start: Optional[str] = None,
registered_devices: Optional[Sequence[KubernetesAciCniProfileRegisteredDeviceArgs]] = None,
shared_scope: Optional[str] = None,
src_templates: Optional[Sequence[KubernetesAciCniProfileSrcTemplateArgs]] = None,
svc_subnet_start: Optional[str] = None,
tags: Optional[Sequence[KubernetesAciCniProfileTagArgs]] = None,
type: Optional[str] = None,
version_contexts: Optional[Sequence[KubernetesAciCniProfileVersionContextArgs]] = None,
vrf: Optional[str] = None)
func NewKubernetesAciCniProfile(ctx *Context, name string, args *KubernetesAciCniProfileArgs, opts ...ResourceOption) (*KubernetesAciCniProfile, error)
public KubernetesAciCniProfile(string name, KubernetesAciCniProfileArgs? args = null, CustomResourceOptions? opts = null)
public KubernetesAciCniProfile(String name, KubernetesAciCniProfileArgs args)
public KubernetesAciCniProfile(String name, KubernetesAciCniProfileArgs args, CustomResourceOptions options)
type: intersight:KubernetesAciCniProfile
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 KubernetesAciCniProfileArgs
- 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 KubernetesAciCniProfileArgs
- 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 KubernetesAciCniProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KubernetesAciCniProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KubernetesAciCniProfileArgs
- 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 kubernetesAciCniProfileResource = new Intersight.KubernetesAciCniProfile("kubernetesAciCniProfileResource", new()
{
AaepName = "string",
AccountMoid = "string",
AdditionalProperties = "string",
Ancestors = new[]
{
new Intersight.Inputs.KubernetesAciCniProfileAncestorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ClassId = "string",
ClusterAciAllocations = new[]
{
new Intersight.Inputs.KubernetesAciCniProfileClusterAciAllocationArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ClusterProfiles = new[]
{
new Intersight.Inputs.KubernetesAciCniProfileClusterProfileArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
CreateTime = "string",
Description = "string",
DomainGroupMoid = "string",
ExtSvcDynSubnetStart = "string",
ExtSvcStaticSubnetStart = "string",
InfraVlanId = 0,
KubernetesAciCniProfileId = "string",
L3OutNetworkName = "string",
L3OutPolicyName = "string",
L3OutTenant = "string",
ModTime = "string",
Moid = "string",
Name = "string",
NestedVmmDomain = "string",
NodeSvcSubnetStart = "string",
NodeVlanRangeEnd = 0,
NodeVlanRangeStart = 0,
NumberOfKubernetesClusters = 0,
ObjectType = "string",
OpflexMulticastAddressRange = "string",
Organizations = new[]
{
new Intersight.Inputs.KubernetesAciCniProfileOrganizationArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Owners = new[]
{
"string",
},
Parents = new[]
{
new Intersight.Inputs.KubernetesAciCniProfileParentArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PermissionResources = new[]
{
new Intersight.Inputs.KubernetesAciCniProfilePermissionResourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PodSubnetStart = "string",
RegisteredDevices = new[]
{
new Intersight.Inputs.KubernetesAciCniProfileRegisteredDeviceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
SharedScope = "string",
SrcTemplates = new[]
{
new Intersight.Inputs.KubernetesAciCniProfileSrcTemplateArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
SvcSubnetStart = "string",
Tags = new[]
{
new Intersight.Inputs.KubernetesAciCniProfileTagArgs
{
AdditionalProperties = "string",
Key = "string",
Value = "string",
},
},
Type = "string",
VersionContexts = new[]
{
new Intersight.Inputs.KubernetesAciCniProfileVersionContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
InterestedMos = new[]
{
new Intersight.Inputs.KubernetesAciCniProfileVersionContextInterestedMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
MarkedForDeletion = false,
NrVersion = "string",
ObjectType = "string",
RefMos = new[]
{
new Intersight.Inputs.KubernetesAciCniProfileVersionContextRefMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Timestamp = "string",
VersionType = "string",
},
},
Vrf = "string",
});
example, err := intersight.NewKubernetesAciCniProfile(ctx, "kubernetesAciCniProfileResource", &intersight.KubernetesAciCniProfileArgs{
AaepName: pulumi.String("string"),
AccountMoid: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
Ancestors: intersight.KubernetesAciCniProfileAncestorArray{
&intersight.KubernetesAciCniProfileAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ClassId: pulumi.String("string"),
ClusterAciAllocations: intersight.KubernetesAciCniProfileClusterAciAllocationArray{
&intersight.KubernetesAciCniProfileClusterAciAllocationArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ClusterProfiles: intersight.KubernetesAciCniProfileClusterProfileArray{
&intersight.KubernetesAciCniProfileClusterProfileArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
CreateTime: pulumi.String("string"),
Description: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
ExtSvcDynSubnetStart: pulumi.String("string"),
ExtSvcStaticSubnetStart: pulumi.String("string"),
InfraVlanId: pulumi.Float64(0),
KubernetesAciCniProfileId: pulumi.String("string"),
L3OutNetworkName: pulumi.String("string"),
L3OutPolicyName: pulumi.String("string"),
L3OutTenant: pulumi.String("string"),
ModTime: pulumi.String("string"),
Moid: pulumi.String("string"),
Name: pulumi.String("string"),
NestedVmmDomain: pulumi.String("string"),
NodeSvcSubnetStart: pulumi.String("string"),
NodeVlanRangeEnd: pulumi.Float64(0),
NodeVlanRangeStart: pulumi.Float64(0),
NumberOfKubernetesClusters: pulumi.Float64(0),
ObjectType: pulumi.String("string"),
OpflexMulticastAddressRange: pulumi.String("string"),
Organizations: intersight.KubernetesAciCniProfileOrganizationArray{
&intersight.KubernetesAciCniProfileOrganizationArgs{
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.KubernetesAciCniProfileParentArray{
&intersight.KubernetesAciCniProfileParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: intersight.KubernetesAciCniProfilePermissionResourceArray{
&intersight.KubernetesAciCniProfilePermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PodSubnetStart: pulumi.String("string"),
RegisteredDevices: intersight.KubernetesAciCniProfileRegisteredDeviceArray{
&intersight.KubernetesAciCniProfileRegisteredDeviceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
SharedScope: pulumi.String("string"),
SrcTemplates: intersight.KubernetesAciCniProfileSrcTemplateArray{
&intersight.KubernetesAciCniProfileSrcTemplateArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
SvcSubnetStart: pulumi.String("string"),
Tags: intersight.KubernetesAciCniProfileTagArray{
&intersight.KubernetesAciCniProfileTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Type: pulumi.String("string"),
VersionContexts: intersight.KubernetesAciCniProfileVersionContextArray{
&intersight.KubernetesAciCniProfileVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: intersight.KubernetesAciCniProfileVersionContextInterestedMoArray{
&intersight.KubernetesAciCniProfileVersionContextInterestedMoArgs{
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.KubernetesAciCniProfileVersionContextRefMoArray{
&intersight.KubernetesAciCniProfileVersionContextRefMoArgs{
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"),
},
},
Vrf: pulumi.String("string"),
})
var kubernetesAciCniProfileResource = new KubernetesAciCniProfile("kubernetesAciCniProfileResource", KubernetesAciCniProfileArgs.builder()
.aaepName("string")
.accountMoid("string")
.additionalProperties("string")
.ancestors(KubernetesAciCniProfileAncestorArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.classId("string")
.clusterAciAllocations(KubernetesAciCniProfileClusterAciAllocationArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.clusterProfiles(KubernetesAciCniProfileClusterProfileArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.createTime("string")
.description("string")
.domainGroupMoid("string")
.extSvcDynSubnetStart("string")
.extSvcStaticSubnetStart("string")
.infraVlanId(0)
.kubernetesAciCniProfileId("string")
.l3OutNetworkName("string")
.l3OutPolicyName("string")
.l3OutTenant("string")
.modTime("string")
.moid("string")
.name("string")
.nestedVmmDomain("string")
.nodeSvcSubnetStart("string")
.nodeVlanRangeEnd(0)
.nodeVlanRangeStart(0)
.numberOfKubernetesClusters(0)
.objectType("string")
.opflexMulticastAddressRange("string")
.organizations(KubernetesAciCniProfileOrganizationArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.owners("string")
.parents(KubernetesAciCniProfileParentArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.permissionResources(KubernetesAciCniProfilePermissionResourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.podSubnetStart("string")
.registeredDevices(KubernetesAciCniProfileRegisteredDeviceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.sharedScope("string")
.srcTemplates(KubernetesAciCniProfileSrcTemplateArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.svcSubnetStart("string")
.tags(KubernetesAciCniProfileTagArgs.builder()
.additionalProperties("string")
.key("string")
.value("string")
.build())
.type("string")
.versionContexts(KubernetesAciCniProfileVersionContextArgs.builder()
.additionalProperties("string")
.classId("string")
.interestedMos(KubernetesAciCniProfileVersionContextInterestedMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.markedForDeletion(false)
.nrVersion("string")
.objectType("string")
.refMos(KubernetesAciCniProfileVersionContextRefMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.timestamp("string")
.versionType("string")
.build())
.vrf("string")
.build());
kubernetes_aci_cni_profile_resource = intersight.KubernetesAciCniProfile("kubernetesAciCniProfileResource",
aaep_name="string",
account_moid="string",
additional_properties="string",
ancestors=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
class_id="string",
cluster_aci_allocations=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
cluster_profiles=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
create_time="string",
description="string",
domain_group_moid="string",
ext_svc_dyn_subnet_start="string",
ext_svc_static_subnet_start="string",
infra_vlan_id=0,
kubernetes_aci_cni_profile_id="string",
l3_out_network_name="string",
l3_out_policy_name="string",
l3_out_tenant="string",
mod_time="string",
moid="string",
name="string",
nested_vmm_domain="string",
node_svc_subnet_start="string",
node_vlan_range_end=0,
node_vlan_range_start=0,
number_of_kubernetes_clusters=0,
object_type="string",
opflex_multicast_address_range="string",
organizations=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
owners=["string"],
parents=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
permission_resources=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
pod_subnet_start="string",
registered_devices=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
shared_scope="string",
src_templates=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
svc_subnet_start="string",
tags=[{
"additional_properties": "string",
"key": "string",
"value": "string",
}],
type="string",
version_contexts=[{
"additional_properties": "string",
"class_id": "string",
"interested_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"marked_for_deletion": False,
"nr_version": "string",
"object_type": "string",
"ref_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"timestamp": "string",
"version_type": "string",
}],
vrf="string")
const kubernetesAciCniProfileResource = new intersight.KubernetesAciCniProfile("kubernetesAciCniProfileResource", {
aaepName: "string",
accountMoid: "string",
additionalProperties: "string",
ancestors: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
classId: "string",
clusterAciAllocations: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
clusterProfiles: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
createTime: "string",
description: "string",
domainGroupMoid: "string",
extSvcDynSubnetStart: "string",
extSvcStaticSubnetStart: "string",
infraVlanId: 0,
kubernetesAciCniProfileId: "string",
l3OutNetworkName: "string",
l3OutPolicyName: "string",
l3OutTenant: "string",
modTime: "string",
moid: "string",
name: "string",
nestedVmmDomain: "string",
nodeSvcSubnetStart: "string",
nodeVlanRangeEnd: 0,
nodeVlanRangeStart: 0,
numberOfKubernetesClusters: 0,
objectType: "string",
opflexMulticastAddressRange: "string",
organizations: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
owners: ["string"],
parents: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
permissionResources: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
podSubnetStart: "string",
registeredDevices: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
sharedScope: "string",
srcTemplates: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
svcSubnetStart: "string",
tags: [{
additionalProperties: "string",
key: "string",
value: "string",
}],
type: "string",
versionContexts: [{
additionalProperties: "string",
classId: "string",
interestedMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
markedForDeletion: false,
nrVersion: "string",
objectType: "string",
refMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
timestamp: "string",
versionType: "string",
}],
vrf: "string",
});
type: intersight:KubernetesAciCniProfile
properties:
aaepName: string
accountMoid: string
additionalProperties: string
ancestors:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
classId: string
clusterAciAllocations:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
clusterProfiles:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
createTime: string
description: string
domainGroupMoid: string
extSvcDynSubnetStart: string
extSvcStaticSubnetStart: string
infraVlanId: 0
kubernetesAciCniProfileId: string
l3OutNetworkName: string
l3OutPolicyName: string
l3OutTenant: string
modTime: string
moid: string
name: string
nestedVmmDomain: string
nodeSvcSubnetStart: string
nodeVlanRangeEnd: 0
nodeVlanRangeStart: 0
numberOfKubernetesClusters: 0
objectType: string
opflexMulticastAddressRange: string
organizations:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
owners:
- string
parents:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
permissionResources:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
podSubnetStart: string
registeredDevices:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
sharedScope: string
srcTemplates:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
svcSubnetStart: string
tags:
- additionalProperties: string
key: string
value: string
type: string
versionContexts:
- additionalProperties: string
classId: string
interestedMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
markedForDeletion: false
nrVersion: string
objectType: string
refMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
timestamp: string
versionType: string
vrf: string
KubernetesAciCniProfile 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 KubernetesAciCniProfile resource accepts the following input properties:
- Aaep
Name string - Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Kubernetes
Aci Cni Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Cluster
Aci List<KubernetesAllocations Aci Cni Profile Cluster Aci Allocation> - (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- Cluster
Profiles List<KubernetesAci Cni Profile Cluster Profile> - (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the profile.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Ext
Svc stringDyn Subnet Start - Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- Ext
Svc stringStatic Subnet Start - Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- Infra
Vlan doubleId - (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- Kubernetes
Aci stringCni Profile Id - L3Out
Network stringName - Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- L3Out
Policy stringName - Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- L3Out
Tenant string - Tenant in ACI used by this L3Out and Common VRF.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the profile instance or profile template.
- Nested
Vmm stringDomain - VMM domain within which Kubernetes clusters using this policy are nested.
- Node
Svc stringSubnet Start - Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing.
- Node
Vlan doubleRange End - Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- Node
Vlan doubleRange Start - Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- Number
Of doubleKubernetes Clusters - (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Opflex
Multicast stringAddress Range - Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- Organizations
List<Kubernetes
Aci Cni Profile Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Kubernetes
Aci Cni Profile Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<KubernetesAci Cni Profile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pod
Subnet stringStart - Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile.
- Registered
Devices List<KubernetesAci Cni Profile Registered Device> - A reference to a assetDeviceRegistration resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Src
Templates List<KubernetesAci Cni Profile Src Template> - A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Svc
Subnet stringStart - (ReadOnly) Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only.
- List<Kubernetes
Aci Cni Profile Tag> - This complex property has following sub-properties:
- Type string
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - Version
Contexts List<KubernetesAci Cni Profile Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vrf string
- VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy.
- Aaep
Name string - Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Kubernetes
Aci Cni Profile Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Cluster
Aci []KubernetesAllocations Aci Cni Profile Cluster Aci Allocation Args - (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- Cluster
Profiles []KubernetesAci Cni Profile Cluster Profile Args - (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the profile.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Ext
Svc stringDyn Subnet Start - Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- Ext
Svc stringStatic Subnet Start - Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- Infra
Vlan float64Id - (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- Kubernetes
Aci stringCni Profile Id - L3Out
Network stringName - Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- L3Out
Policy stringName - Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- L3Out
Tenant string - Tenant in ACI used by this L3Out and Common VRF.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the profile instance or profile template.
- Nested
Vmm stringDomain - VMM domain within which Kubernetes clusters using this policy are nested.
- Node
Svc stringSubnet Start - Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing.
- Node
Vlan float64Range End - Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- Node
Vlan float64Range Start - Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- Number
Of float64Kubernetes Clusters - (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Opflex
Multicast stringAddress Range - Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- Organizations
[]Kubernetes
Aci Cni Profile Organization Args - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Kubernetes
Aci Cni Profile Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []KubernetesAci Cni Profile Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pod
Subnet stringStart - Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile.
- Registered
Devices []KubernetesAci Cni Profile Registered Device Args - A reference to a assetDeviceRegistration resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Src
Templates []KubernetesAci Cni Profile Src Template Args - A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Svc
Subnet stringStart - (ReadOnly) Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only.
- []Kubernetes
Aci Cni Profile Tag Args - This complex property has following sub-properties:
- Type string
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - Version
Contexts []KubernetesAci Cni Profile Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vrf string
- VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy.
- aaep
Name String - Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Kubernetes
Aci Cni Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cluster
Aci List<KubernetesAllocations Aci Cni Profile Cluster Aci Allocation> - (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- cluster
Profiles List<KubernetesAci Cni Profile Cluster Profile> - (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the profile.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- ext
Svc StringDyn Subnet Start - Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- ext
Svc StringStatic Subnet Start - Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- infra
Vlan DoubleId - (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- kubernetes
Aci StringCni Profile Id - l3Out
Network StringName - Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- l3Out
Policy StringName - Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- l3Out
Tenant String - Tenant in ACI used by this L3Out and Common VRF.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the profile instance or profile template.
- nested
Vmm StringDomain - VMM domain within which Kubernetes clusters using this policy are nested.
- node
Svc StringSubnet Start - Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing.
- node
Vlan DoubleRange End - Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- node
Vlan DoubleRange Start - Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- number
Of DoubleKubernetes Clusters - (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- opflex
Multicast StringAddress Range - Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- organizations
List<Kubernetes
Aci Cni Profile Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Kubernetes
Aci Cni Profile Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<KubernetesAci Cni Profile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pod
Subnet StringStart - Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile.
- registered
Devices List<KubernetesAci Cni Profile Registered Device> - A reference to a assetDeviceRegistration resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- src
Templates List<KubernetesAci Cni Profile Src Template> - A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- svc
Subnet StringStart - (ReadOnly) Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only.
- List<Kubernetes
Aci Cni Profile Tag> - This complex property has following sub-properties:
- type String
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - version
Contexts List<KubernetesAci Cni Profile Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vrf String
- VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy.
- aaep
Name string - Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Kubernetes
Aci Cni Profile Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cluster
Aci KubernetesAllocations Aci Cni Profile Cluster Aci Allocation[] - (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- cluster
Profiles KubernetesAci Cni Profile Cluster Profile[] - (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- Description of the profile.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- ext
Svc stringDyn Subnet Start - Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- ext
Svc stringStatic Subnet Start - Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- infra
Vlan numberId - (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- kubernetes
Aci stringCni Profile Id - l3Out
Network stringName - Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- l3Out
Policy stringName - Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- l3Out
Tenant string - Tenant in ACI used by this L3Out and Common VRF.
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the profile instance or profile template.
- nested
Vmm stringDomain - VMM domain within which Kubernetes clusters using this policy are nested.
- node
Svc stringSubnet Start - Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing.
- node
Vlan numberRange End - Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- node
Vlan numberRange Start - Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- number
Of numberKubernetes Clusters - (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- opflex
Multicast stringAddress Range - Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- organizations
Kubernetes
Aci Cni Profile Organization[] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Kubernetes
Aci Cni Profile Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources KubernetesAci Cni Profile Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pod
Subnet stringStart - Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile.
- registered
Devices KubernetesAci Cni Profile Registered Device[] - A reference to a assetDeviceRegistration resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- src
Templates KubernetesAci Cni Profile Src Template[] - A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- svc
Subnet stringStart - (ReadOnly) Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only.
- Kubernetes
Aci Cni Profile Tag[] - This complex property has following sub-properties:
- type string
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - version
Contexts KubernetesAci Cni Profile Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vrf string
- VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy.
- aaep_
name str - Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Kubernetes
Aci Cni Profile Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cluster_
aci_ Sequence[Kubernetesallocations Aci Cni Profile Cluster Aci Allocation Args] - (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- cluster_
profiles Sequence[KubernetesAci Cni Profile Cluster Profile Args] - (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- create_
time str - (ReadOnly) The time when this managed object was created.
- description str
- Description of the profile.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- ext_
svc_ strdyn_ subnet_ start - Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- ext_
svc_ strstatic_ subnet_ start - Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- infra_
vlan_ floatid - (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- kubernetes_
aci_ strcni_ profile_ id - l3_
out_ strnetwork_ name - Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- l3_
out_ strpolicy_ name - Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- l3_
out_ strtenant - Tenant in ACI used by this L3Out and Common VRF.
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- Name of the profile instance or profile template.
- nested_
vmm_ strdomain - VMM domain within which Kubernetes clusters using this policy are nested.
- node_
svc_ strsubnet_ start - Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing.
- node_
vlan_ floatrange_ end - Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- node_
vlan_ floatrange_ start - Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- number_
of_ floatkubernetes_ clusters - (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- opflex_
multicast_ straddress_ range - Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- organizations
Sequence[Kubernetes
Aci Cni Profile Organization Args] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Kubernetes
Aci Cni Profile Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[KubernetesAci Cni Profile Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pod_
subnet_ strstart - Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile.
- registered_
devices Sequence[KubernetesAci Cni Profile Registered Device Args] - A reference to a assetDeviceRegistration resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- src_
templates Sequence[KubernetesAci Cni Profile Src Template Args] - A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- svc_
subnet_ strstart - (ReadOnly) Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only.
- Sequence[Kubernetes
Aci Cni Profile Tag Args] - This complex property has following sub-properties:
- type str
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - version_
contexts Sequence[KubernetesAci Cni Profile Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vrf str
- VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy.
- aaep
Name String - Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cluster
Aci List<Property Map>Allocations - (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- cluster
Profiles List<Property Map> - (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the profile.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- ext
Svc StringDyn Subnet Start - Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- ext
Svc StringStatic Subnet Start - Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- infra
Vlan NumberId - (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- kubernetes
Aci StringCni Profile Id - l3Out
Network StringName - Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- l3Out
Policy StringName - Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- l3Out
Tenant String - Tenant in ACI used by this L3Out and Common VRF.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the profile instance or profile template.
- nested
Vmm StringDomain - VMM domain within which Kubernetes clusters using this policy are nested.
- node
Svc StringSubnet Start - Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing.
- node
Vlan NumberRange End - Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- node
Vlan NumberRange Start - Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- number
Of NumberKubernetes Clusters - (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- opflex
Multicast StringAddress Range - Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pod
Subnet StringStart - Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile.
- registered
Devices List<Property Map> - A reference to a assetDeviceRegistration resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- src
Templates List<Property Map> - A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- svc
Subnet StringStart - (ReadOnly) Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only.
- List<Property Map>
- This complex property has following sub-properties:
- type String
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vrf String
- VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy.
Outputs
All input properties are implicitly available as output properties. Additionally, the KubernetesAciCniProfile 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 KubernetesAciCniProfile Resource
Get an existing KubernetesAciCniProfile 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?: KubernetesAciCniProfileState, opts?: CustomResourceOptions): KubernetesAciCniProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
aaep_name: Optional[str] = None,
account_moid: Optional[str] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[KubernetesAciCniProfileAncestorArgs]] = None,
class_id: Optional[str] = None,
cluster_aci_allocations: Optional[Sequence[KubernetesAciCniProfileClusterAciAllocationArgs]] = None,
cluster_profiles: Optional[Sequence[KubernetesAciCniProfileClusterProfileArgs]] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
ext_svc_dyn_subnet_start: Optional[str] = None,
ext_svc_static_subnet_start: Optional[str] = None,
infra_vlan_id: Optional[float] = None,
kubernetes_aci_cni_profile_id: Optional[str] = None,
l3_out_network_name: Optional[str] = None,
l3_out_policy_name: Optional[str] = None,
l3_out_tenant: Optional[str] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
nested_vmm_domain: Optional[str] = None,
node_svc_subnet_start: Optional[str] = None,
node_vlan_range_end: Optional[float] = None,
node_vlan_range_start: Optional[float] = None,
number_of_kubernetes_clusters: Optional[float] = None,
object_type: Optional[str] = None,
opflex_multicast_address_range: Optional[str] = None,
organizations: Optional[Sequence[KubernetesAciCniProfileOrganizationArgs]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[KubernetesAciCniProfileParentArgs]] = None,
permission_resources: Optional[Sequence[KubernetesAciCniProfilePermissionResourceArgs]] = None,
pod_subnet_start: Optional[str] = None,
registered_devices: Optional[Sequence[KubernetesAciCniProfileRegisteredDeviceArgs]] = None,
shared_scope: Optional[str] = None,
src_templates: Optional[Sequence[KubernetesAciCniProfileSrcTemplateArgs]] = None,
svc_subnet_start: Optional[str] = None,
tags: Optional[Sequence[KubernetesAciCniProfileTagArgs]] = None,
type: Optional[str] = None,
version_contexts: Optional[Sequence[KubernetesAciCniProfileVersionContextArgs]] = None,
vrf: Optional[str] = None) -> KubernetesAciCniProfile
func GetKubernetesAciCniProfile(ctx *Context, name string, id IDInput, state *KubernetesAciCniProfileState, opts ...ResourceOption) (*KubernetesAciCniProfile, error)
public static KubernetesAciCniProfile Get(string name, Input<string> id, KubernetesAciCniProfileState? state, CustomResourceOptions? opts = null)
public static KubernetesAciCniProfile get(String name, Output<String> id, KubernetesAciCniProfileState state, CustomResourceOptions options)
resources: _: type: intersight:KubernetesAciCniProfile 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.
- Aaep
Name string - Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Kubernetes
Aci Cni Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Cluster
Aci List<KubernetesAllocations Aci Cni Profile Cluster Aci Allocation> - (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- Cluster
Profiles List<KubernetesAci Cni Profile Cluster Profile> - (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the profile.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Ext
Svc stringDyn Subnet Start - Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- Ext
Svc stringStatic Subnet Start - Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- Infra
Vlan doubleId - (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- Kubernetes
Aci stringCni Profile Id - L3Out
Network stringName - Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- L3Out
Policy stringName - Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- L3Out
Tenant string - Tenant in ACI used by this L3Out and Common VRF.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the profile instance or profile template.
- Nested
Vmm stringDomain - VMM domain within which Kubernetes clusters using this policy are nested.
- Node
Svc stringSubnet Start - Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing.
- Node
Vlan doubleRange End - Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- Node
Vlan doubleRange Start - Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- Number
Of doubleKubernetes Clusters - (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Opflex
Multicast stringAddress Range - Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- Organizations
List<Kubernetes
Aci Cni Profile Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Kubernetes
Aci Cni Profile Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<KubernetesAci Cni Profile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pod
Subnet stringStart - Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile.
- Registered
Devices List<KubernetesAci Cni Profile Registered Device> - A reference to a assetDeviceRegistration resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Src
Templates List<KubernetesAci Cni Profile Src Template> - A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Svc
Subnet stringStart - (ReadOnly) Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only.
- List<Kubernetes
Aci Cni Profile Tag> - This complex property has following sub-properties:
- Type string
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - Version
Contexts List<KubernetesAci Cni Profile Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vrf string
- VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy.
- Aaep
Name string - Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Kubernetes
Aci Cni Profile Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Cluster
Aci []KubernetesAllocations Aci Cni Profile Cluster Aci Allocation Args - (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- Cluster
Profiles []KubernetesAci Cni Profile Cluster Profile Args - (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the profile.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Ext
Svc stringDyn Subnet Start - Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- Ext
Svc stringStatic Subnet Start - Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- Infra
Vlan float64Id - (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- Kubernetes
Aci stringCni Profile Id - L3Out
Network stringName - Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- L3Out
Policy stringName - Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- L3Out
Tenant string - Tenant in ACI used by this L3Out and Common VRF.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the profile instance or profile template.
- Nested
Vmm stringDomain - VMM domain within which Kubernetes clusters using this policy are nested.
- Node
Svc stringSubnet Start - Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing.
- Node
Vlan float64Range End - Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- Node
Vlan float64Range Start - Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- Number
Of float64Kubernetes Clusters - (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Opflex
Multicast stringAddress Range - Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- Organizations
[]Kubernetes
Aci Cni Profile Organization Args - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Kubernetes
Aci Cni Profile Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []KubernetesAci Cni Profile Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pod
Subnet stringStart - Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile.
- Registered
Devices []KubernetesAci Cni Profile Registered Device Args - A reference to a assetDeviceRegistration resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Src
Templates []KubernetesAci Cni Profile Src Template Args - A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Svc
Subnet stringStart - (ReadOnly) Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only.
- []Kubernetes
Aci Cni Profile Tag Args - This complex property has following sub-properties:
- Type string
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - Version
Contexts []KubernetesAci Cni Profile Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Vrf string
- VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy.
- aaep
Name String - Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Kubernetes
Aci Cni Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cluster
Aci List<KubernetesAllocations Aci Cni Profile Cluster Aci Allocation> - (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- cluster
Profiles List<KubernetesAci Cni Profile Cluster Profile> - (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the profile.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- ext
Svc StringDyn Subnet Start - Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- ext
Svc StringStatic Subnet Start - Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- infra
Vlan DoubleId - (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- kubernetes
Aci StringCni Profile Id - l3Out
Network StringName - Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- l3Out
Policy StringName - Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- l3Out
Tenant String - Tenant in ACI used by this L3Out and Common VRF.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the profile instance or profile template.
- nested
Vmm StringDomain - VMM domain within which Kubernetes clusters using this policy are nested.
- node
Svc StringSubnet Start - Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing.
- node
Vlan DoubleRange End - Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- node
Vlan DoubleRange Start - Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- number
Of DoubleKubernetes Clusters - (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- opflex
Multicast StringAddress Range - Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- organizations
List<Kubernetes
Aci Cni Profile Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Kubernetes
Aci Cni Profile Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<KubernetesAci Cni Profile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pod
Subnet StringStart - Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile.
- registered
Devices List<KubernetesAci Cni Profile Registered Device> - A reference to a assetDeviceRegistration resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- src
Templates List<KubernetesAci Cni Profile Src Template> - A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- svc
Subnet StringStart - (ReadOnly) Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only.
- List<Kubernetes
Aci Cni Profile Tag> - This complex property has following sub-properties:
- type String
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - version
Contexts List<KubernetesAci Cni Profile Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vrf String
- VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy.
- aaep
Name string - Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Kubernetes
Aci Cni Profile Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cluster
Aci KubernetesAllocations Aci Cni Profile Cluster Aci Allocation[] - (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- cluster
Profiles KubernetesAci Cni Profile Cluster Profile[] - (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- Description of the profile.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- ext
Svc stringDyn Subnet Start - Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- ext
Svc stringStatic Subnet Start - Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- infra
Vlan numberId - (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- kubernetes
Aci stringCni Profile Id - l3Out
Network stringName - Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- l3Out
Policy stringName - Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- l3Out
Tenant string - Tenant in ACI used by this L3Out and Common VRF.
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the profile instance or profile template.
- nested
Vmm stringDomain - VMM domain within which Kubernetes clusters using this policy are nested.
- node
Svc stringSubnet Start - Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing.
- node
Vlan numberRange End - Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- node
Vlan numberRange Start - Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- number
Of numberKubernetes Clusters - (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- opflex
Multicast stringAddress Range - Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- organizations
Kubernetes
Aci Cni Profile Organization[] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Kubernetes
Aci Cni Profile Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources KubernetesAci Cni Profile Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pod
Subnet stringStart - Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile.
- registered
Devices KubernetesAci Cni Profile Registered Device[] - A reference to a assetDeviceRegistration resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- src
Templates KubernetesAci Cni Profile Src Template[] - A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- svc
Subnet stringStart - (ReadOnly) Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only.
- Kubernetes
Aci Cni Profile Tag[] - This complex property has following sub-properties:
- type string
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - version
Contexts KubernetesAci Cni Profile Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vrf string
- VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy.
- aaep_
name str - Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Kubernetes
Aci Cni Profile Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cluster_
aci_ Sequence[Kubernetesallocations Aci Cni Profile Cluster Aci Allocation Args] - (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- cluster_
profiles Sequence[KubernetesAci Cni Profile Cluster Profile Args] - (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- create_
time str - (ReadOnly) The time when this managed object was created.
- description str
- Description of the profile.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- ext_
svc_ strdyn_ subnet_ start - Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- ext_
svc_ strstatic_ subnet_ start - Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- infra_
vlan_ floatid - (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- kubernetes_
aci_ strcni_ profile_ id - l3_
out_ strnetwork_ name - Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- l3_
out_ strpolicy_ name - Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- l3_
out_ strtenant - Tenant in ACI used by this L3Out and Common VRF.
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- Name of the profile instance or profile template.
- nested_
vmm_ strdomain - VMM domain within which Kubernetes clusters using this policy are nested.
- node_
svc_ strsubnet_ start - Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing.
- node_
vlan_ floatrange_ end - Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- node_
vlan_ floatrange_ start - Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- number_
of_ floatkubernetes_ clusters - (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- opflex_
multicast_ straddress_ range - Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- organizations
Sequence[Kubernetes
Aci Cni Profile Organization Args] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Kubernetes
Aci Cni Profile Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[KubernetesAci Cni Profile Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pod_
subnet_ strstart - Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile.
- registered_
devices Sequence[KubernetesAci Cni Profile Registered Device Args] - A reference to a assetDeviceRegistration resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- src_
templates Sequence[KubernetesAci Cni Profile Src Template Args] - A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- svc_
subnet_ strstart - (ReadOnly) Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only.
- Sequence[Kubernetes
Aci Cni Profile Tag Args] - This complex property has following sub-properties:
- type str
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - version_
contexts Sequence[KubernetesAci Cni Profile Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vrf str
- VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy.
- aaep
Name String - Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cluster
Aci List<Property Map>Allocations - (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- cluster
Profiles List<Property Map> - (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the profile.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- ext
Svc StringDyn Subnet Start - Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- ext
Svc StringStatic Subnet Start - Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
- infra
Vlan NumberId - (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- kubernetes
Aci StringCni Profile Id - l3Out
Network StringName - Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- l3Out
Policy StringName - Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- l3Out
Tenant String - Tenant in ACI used by this L3Out and Common VRF.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the profile instance or profile template.
- nested
Vmm StringDomain - VMM domain within which Kubernetes clusters using this policy are nested.
- node
Svc StringSubnet Start - Start of range of ACI Node Service IP subnets to use by Kubernetes clusters using this ACI CNI policy This is used for the service graph which is used for ACI PBR based load balancing.
- node
Vlan NumberRange End - Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- node
Vlan NumberRange Start - Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- number
Of NumberKubernetes Clusters - (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- opflex
Multicast StringAddress Range - Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pod
Subnet StringStart - Start of range of Kubernetes pod IP subnets to use by Kubernetes clusters using this ACI CNI policy This should be a /8 IP subnet so that multiple /16 subnets can be assigned for pod subnets of Kubernetes clusters using this profile.
- registered
Devices List<Property Map> - A reference to a assetDeviceRegistration resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- src
Templates List<Property Map> - A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- svc
Subnet StringStart - (ReadOnly) Start of range of Kubernetes Service IP subnets to use by Kubernetes clusters using this ACI CNI policy Currently this is fixed internally and read-only.
- List<Property Map>
- This complex property has following sub-properties:
- type String
- Defines the type of the profile. Accepted values are instance or template.*
instance
- The profile defines the configuration for a specific instance of a target. - version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- vrf String
- VRF (Virtual Routing and Forwarding) domain to be used within ACI fabric by all k8s clusters using this policy.
Supporting Types
KubernetesAciCniProfileAncestor, KubernetesAciCniProfileAncestorArgs
- 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'.
KubernetesAciCniProfileClusterAciAllocation, KubernetesAciCniProfileClusterAciAllocationArgs
- 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'.
KubernetesAciCniProfileClusterProfile, KubernetesAciCniProfileClusterProfileArgs
- 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'.
KubernetesAciCniProfileOrganization, KubernetesAciCniProfileOrganizationArgs
- 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'.
KubernetesAciCniProfileParent, KubernetesAciCniProfileParentArgs
- 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'.
KubernetesAciCniProfilePermissionResource, KubernetesAciCniProfilePermissionResourceArgs
- 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'.
KubernetesAciCniProfileRegisteredDevice, KubernetesAciCniProfileRegisteredDeviceArgs
- 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'.
KubernetesAciCniProfileSrcTemplate, KubernetesAciCniProfileSrcTemplateArgs
- 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'.
KubernetesAciCniProfileTag, KubernetesAciCniProfileTagArgs
- 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.
KubernetesAciCniProfileVersionContext, KubernetesAciCniProfileVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<KubernetesAci Cni Profile Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<KubernetesAci Cni Profile Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Class
Id string - Interested
Mos []KubernetesAci Cni Profile Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []KubernetesAci Cni Profile Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<KubernetesAci Cni Profile Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<KubernetesAci Cni Profile Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - class
Id string - interested
Mos KubernetesAci Cni Profile Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos KubernetesAci Cni Profile Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - class_
id str - interested_
mos Sequence[KubernetesAci Cni Profile Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[KubernetesAci Cni Profile Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
KubernetesAciCniProfileVersionContextInterestedMo, KubernetesAciCniProfileVersionContextInterestedMoArgs
- 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'.
KubernetesAciCniProfileVersionContextRefMo, KubernetesAciCniProfileVersionContextRefMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_kubernetes_aci_cni_profile
can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/kubernetesAciCniProfile:KubernetesAciCniProfile 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.