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.0)
    .kubernetesAciCniProfileId("string")
    .l3OutNetworkName("string")
    .l3OutPolicyName("string")
    .l3OutTenant("string")
    .modTime("string")
    .moid("string")
    .name("string")
    .nestedVmmDomain("string")
    .nodeSvcSubnetStart("string")
    .nodeVlanRangeEnd(0.0)
    .nodeVlanRangeStart(0.0)
    .numberOfKubernetesClusters(0.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:
- AaepName string
- Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
List<KubernetesAci Cni Profile Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- ClassId 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.
- ClusterAci List<KubernetesAllocations Aci Cni Profile Cluster Aci Allocation> 
- (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- ClusterProfiles List<KubernetesAci Cni Profile Cluster Profile> 
- (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- CreateTime string
- (ReadOnly) The time when this managed object was created.
- Description string
- Description of the profile.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- ExtSvc 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.
- ExtSvc 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.
- InfraVlan doubleId 
- (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- KubernetesAci stringCni Profile Id 
- L3OutNetwork stringName 
- Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- L3OutPolicy stringName 
- Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- L3OutTenant string
- Tenant in ACI used by this L3Out and Common VRF.
- ModTime 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.
- NestedVmm stringDomain 
- VMM domain within which Kubernetes clusters using this policy are nested.
- NodeSvc 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.
- NodeVlan doubleRange End 
- Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- NodeVlan doubleRange Start 
- Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- NumberOf doubleKubernetes Clusters 
- (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- OpflexMulticast stringAddress Range 
- Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- Organizations
List<KubernetesAci 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<KubernetesAci 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:
- PermissionResources List<KubernetesAci Cni Profile Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- PodSubnet 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.
- RegisteredDevices 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.
- SrcTemplates 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:
- SvcSubnet 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<KubernetesAci 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.
- VersionContexts 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.
- AaepName string
- Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
[]KubernetesAci Cni Profile Ancestor Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- ClassId 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.
- ClusterAci []KubernetesAllocations Aci Cni Profile Cluster Aci Allocation Args 
- (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- ClusterProfiles []KubernetesAci Cni Profile Cluster Profile Args 
- (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- CreateTime string
- (ReadOnly) The time when this managed object was created.
- Description string
- Description of the profile.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- ExtSvc 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.
- ExtSvc 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.
- InfraVlan float64Id 
- (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- KubernetesAci stringCni Profile Id 
- L3OutNetwork stringName 
- Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- L3OutPolicy stringName 
- Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- L3OutTenant string
- Tenant in ACI used by this L3Out and Common VRF.
- ModTime 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.
- NestedVmm stringDomain 
- VMM domain within which Kubernetes clusters using this policy are nested.
- NodeSvc 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.
- NodeVlan float64Range End 
- Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- NodeVlan float64Range Start 
- Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- NumberOf float64Kubernetes Clusters 
- (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- OpflexMulticast stringAddress Range 
- Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- Organizations
[]KubernetesAci 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
[]KubernetesAci 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:
- PermissionResources []KubernetesAci Cni Profile Permission Resource Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- PodSubnet 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.
- RegisteredDevices []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.
- SrcTemplates []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:
- SvcSubnet 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.
- 
[]KubernetesAci 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.
- VersionContexts []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.
- aaepName String
- Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- additionalProperties String
- ancestors
List<KubernetesAci Cni Profile Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- classId 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.
- clusterAci List<KubernetesAllocations Aci Cni Profile Cluster Aci Allocation> 
- (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- clusterProfiles List<KubernetesAci Cni Profile Cluster Profile> 
- (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- createTime String
- (ReadOnly) The time when this managed object was created.
- description String
- Description of the profile.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- extSvc 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.
- extSvc 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.
- infraVlan DoubleId 
- (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- kubernetesAci StringCni Profile Id 
- l3OutNetwork StringName 
- Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- l3OutPolicy StringName 
- Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- l3OutTenant String
- Tenant in ACI used by this L3Out and Common VRF.
- modTime 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.
- nestedVmm StringDomain 
- VMM domain within which Kubernetes clusters using this policy are nested.
- nodeSvc 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.
- nodeVlan DoubleRange End 
- Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- nodeVlan DoubleRange Start 
- Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- numberOf DoubleKubernetes Clusters 
- (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- objectType String
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- opflexMulticast StringAddress Range 
- Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- organizations
List<KubernetesAci 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<KubernetesAci 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:
- permissionResources List<KubernetesAci Cni Profile Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- podSubnet 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.
- registeredDevices 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.
- srcTemplates 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:
- svcSubnet 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<KubernetesAci 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.
- versionContexts 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.
- aaepName string
- Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- accountMoid string
- (ReadOnly) The Account ID for this managed object.
- additionalProperties string
- ancestors
KubernetesAci Cni Profile Ancestor[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- classId 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.
- clusterAci KubernetesAllocations Aci Cni Profile Cluster Aci Allocation[] 
- (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- clusterProfiles KubernetesAci Cni Profile Cluster Profile[] 
- (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- createTime string
- (ReadOnly) The time when this managed object was created.
- description string
- Description of the profile.
- domainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- extSvc 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.
- extSvc 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.
- infraVlan numberId 
- (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- kubernetesAci stringCni Profile Id 
- l3OutNetwork stringName 
- Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- l3OutPolicy stringName 
- Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- l3OutTenant string
- Tenant in ACI used by this L3Out and Common VRF.
- modTime 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.
- nestedVmm stringDomain 
- VMM domain within which Kubernetes clusters using this policy are nested.
- nodeSvc 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.
- nodeVlan numberRange End 
- Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- nodeVlan numberRange Start 
- Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- numberOf numberKubernetes Clusters 
- (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- objectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- opflexMulticast stringAddress Range 
- Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- organizations
KubernetesAci 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
KubernetesAci 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:
- permissionResources KubernetesAci Cni Profile Permission Resource[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- podSubnet 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.
- registeredDevices 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.
- srcTemplates 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:
- svcSubnet 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.
- 
KubernetesAci 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.
- versionContexts 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[KubernetesAci 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[KubernetesAci 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[KubernetesAci 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[KubernetesAci 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.
- aaepName String
- Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- additionalProperties String
- ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- classId 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.
- clusterAci List<Property Map>Allocations 
- (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- clusterProfiles List<Property Map>
- (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- createTime String
- (ReadOnly) The time when this managed object was created.
- description String
- Description of the profile.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- extSvc 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.
- extSvc 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.
- infraVlan NumberId 
- (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- kubernetesAci StringCni Profile Id 
- l3OutNetwork StringName 
- Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- l3OutPolicy StringName 
- Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- l3OutTenant String
- Tenant in ACI used by this L3Out and Common VRF.
- modTime 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.
- nestedVmm StringDomain 
- VMM domain within which Kubernetes clusters using this policy are nested.
- nodeSvc 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.
- nodeVlan NumberRange End 
- Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- nodeVlan NumberRange Start 
- Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- numberOf NumberKubernetes Clusters 
- (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- objectType String
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- opflexMulticast 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:
- permissionResources List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- podSubnet 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.
- registeredDevices 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.
- srcTemplates 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:
- svcSubnet 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.
- versionContexts 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) -> KubernetesAciCniProfilefunc 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.
- AaepName string
- Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
List<KubernetesAci Cni Profile Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- ClassId 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.
- ClusterAci List<KubernetesAllocations Aci Cni Profile Cluster Aci Allocation> 
- (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- ClusterProfiles List<KubernetesAci Cni Profile Cluster Profile> 
- (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- CreateTime string
- (ReadOnly) The time when this managed object was created.
- Description string
- Description of the profile.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- ExtSvc 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.
- ExtSvc 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.
- InfraVlan doubleId 
- (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- KubernetesAci stringCni Profile Id 
- L3OutNetwork stringName 
- Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- L3OutPolicy stringName 
- Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- L3OutTenant string
- Tenant in ACI used by this L3Out and Common VRF.
- ModTime 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.
- NestedVmm stringDomain 
- VMM domain within which Kubernetes clusters using this policy are nested.
- NodeSvc 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.
- NodeVlan doubleRange End 
- Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- NodeVlan doubleRange Start 
- Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- NumberOf doubleKubernetes Clusters 
- (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- OpflexMulticast stringAddress Range 
- Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- Organizations
List<KubernetesAci 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<KubernetesAci 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:
- PermissionResources List<KubernetesAci Cni Profile Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- PodSubnet 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.
- RegisteredDevices 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.
- SrcTemplates 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:
- SvcSubnet 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<KubernetesAci 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.
- VersionContexts 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.
- AaepName string
- Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
[]KubernetesAci Cni Profile Ancestor Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- ClassId 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.
- ClusterAci []KubernetesAllocations Aci Cni Profile Cluster Aci Allocation Args 
- (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- ClusterProfiles []KubernetesAci Cni Profile Cluster Profile Args 
- (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- CreateTime string
- (ReadOnly) The time when this managed object was created.
- Description string
- Description of the profile.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- ExtSvc 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.
- ExtSvc 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.
- InfraVlan float64Id 
- (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- KubernetesAci stringCni Profile Id 
- L3OutNetwork stringName 
- Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- L3OutPolicy stringName 
- Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- L3OutTenant string
- Tenant in ACI used by this L3Out and Common VRF.
- ModTime 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.
- NestedVmm stringDomain 
- VMM domain within which Kubernetes clusters using this policy are nested.
- NodeSvc 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.
- NodeVlan float64Range End 
- Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- NodeVlan float64Range Start 
- Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- NumberOf float64Kubernetes Clusters 
- (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- OpflexMulticast stringAddress Range 
- Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- Organizations
[]KubernetesAci 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
[]KubernetesAci 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:
- PermissionResources []KubernetesAci Cni Profile Permission Resource Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- PodSubnet 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.
- RegisteredDevices []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.
- SrcTemplates []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:
- SvcSubnet 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.
- 
[]KubernetesAci 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.
- VersionContexts []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.
- aaepName String
- Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- additionalProperties String
- ancestors
List<KubernetesAci Cni Profile Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- classId 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.
- clusterAci List<KubernetesAllocations Aci Cni Profile Cluster Aci Allocation> 
- (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- clusterProfiles List<KubernetesAci Cni Profile Cluster Profile> 
- (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- createTime String
- (ReadOnly) The time when this managed object was created.
- description String
- Description of the profile.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- extSvc 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.
- extSvc 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.
- infraVlan DoubleId 
- (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- kubernetesAci StringCni Profile Id 
- l3OutNetwork StringName 
- Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- l3OutPolicy StringName 
- Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- l3OutTenant String
- Tenant in ACI used by this L3Out and Common VRF.
- modTime 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.
- nestedVmm StringDomain 
- VMM domain within which Kubernetes clusters using this policy are nested.
- nodeSvc 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.
- nodeVlan DoubleRange End 
- Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- nodeVlan DoubleRange Start 
- Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- numberOf DoubleKubernetes Clusters 
- (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- objectType String
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- opflexMulticast StringAddress Range 
- Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- organizations
List<KubernetesAci 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<KubernetesAci 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:
- permissionResources List<KubernetesAci Cni Profile Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- podSubnet 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.
- registeredDevices 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.
- srcTemplates 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:
- svcSubnet 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<KubernetesAci 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.
- versionContexts 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.
- aaepName string
- Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- accountMoid string
- (ReadOnly) The Account ID for this managed object.
- additionalProperties string
- ancestors
KubernetesAci Cni Profile Ancestor[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- classId 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.
- clusterAci KubernetesAllocations Aci Cni Profile Cluster Aci Allocation[] 
- (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- clusterProfiles KubernetesAci Cni Profile Cluster Profile[] 
- (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- createTime string
- (ReadOnly) The time when this managed object was created.
- description string
- Description of the profile.
- domainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- extSvc 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.
- extSvc 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.
- infraVlan numberId 
- (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- kubernetesAci stringCni Profile Id 
- l3OutNetwork stringName 
- Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- l3OutPolicy stringName 
- Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- l3OutTenant string
- Tenant in ACI used by this L3Out and Common VRF.
- modTime 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.
- nestedVmm stringDomain 
- VMM domain within which Kubernetes clusters using this policy are nested.
- nodeSvc 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.
- nodeVlan numberRange End 
- Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- nodeVlan numberRange Start 
- Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- numberOf numberKubernetes Clusters 
- (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- objectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- opflexMulticast stringAddress Range 
- Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
- organizations
KubernetesAci 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
KubernetesAci 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:
- permissionResources KubernetesAci Cni Profile Permission Resource[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- podSubnet 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.
- registeredDevices 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.
- srcTemplates 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:
- svcSubnet 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.
- 
KubernetesAci 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.
- versionContexts 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[KubernetesAci 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[KubernetesAci 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[KubernetesAci 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[KubernetesAci 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.
- aaepName String
- Name of ACI AAEP (Attachable Access Entity Profile) to be used for all Kubernetes clusters using this policy.
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- additionalProperties String
- ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- classId 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.
- clusterAci List<Property Map>Allocations 
- (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
- clusterProfiles List<Property Map>
- (ReadOnly) An array of relationships to kubernetesClusterProfile resources. This complex property has following sub-properties:
- createTime String
- (ReadOnly) The time when this managed object was created.
- description String
- Description of the profile.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- extSvc 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.
- extSvc 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.
- infraVlan NumberId 
- (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
- kubernetesAci StringCni Profile Id 
- l3OutNetwork StringName 
- Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
- l3OutPolicy StringName 
- Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
- l3OutTenant String
- Tenant in ACI used by this L3Out and Common VRF.
- modTime 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.
- nestedVmm StringDomain 
- VMM domain within which Kubernetes clusters using this policy are nested.
- nodeSvc 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.
- nodeVlan NumberRange End 
- Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- nodeVlan NumberRange Start 
- Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
- numberOf NumberKubernetes Clusters 
- (ReadOnly) Number of k8s clusters currently using this ACI CNI profile.
- objectType String
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- opflexMulticast 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:
- permissionResources List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- podSubnet 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.
- registeredDevices 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.
- srcTemplates 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:
- svcSubnet 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.
- versionContexts 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          
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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              
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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            
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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          
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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          
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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            
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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            
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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            
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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          
- AdditionalProperties string
- Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- AdditionalProperties string
- Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additionalProperties String
- key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additionalProperties 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.
- additionalProperties String
- key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
KubernetesAciCniProfileVersionContext, KubernetesAciCniProfileVersionContextArgs            
- AdditionalProperties string
- ClassId string
- InterestedMos List<KubernetesAci Cni Profile Version Context Interested Mo> 
- This complex property has following sub-properties:
- MarkedFor 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.
- NrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- RefMos 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.
- VersionType 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.
- AdditionalProperties string
- ClassId string
- InterestedMos []KubernetesAci Cni Profile Version Context Interested Mo 
- This complex property has following sub-properties:
- MarkedFor 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.
- NrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- RefMos []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.
- VersionType 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.
- additionalProperties String
- classId String
- interestedMos List<KubernetesAci Cni Profile Version Context Interested Mo> 
- This complex property has following sub-properties:
- markedFor 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.
- nrVersion String
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos 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.
- versionType 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.
- additionalProperties string
- classId string
- interestedMos KubernetesAci Cni Profile Version Context Interested Mo[] 
- This complex property has following sub-properties:
- markedFor 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.
- nrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos 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.
- versionType 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.
- additionalProperties String
- classId String
- interestedMos List<Property Map>
- This complex property has following sub-properties:
- markedFor 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.
- nrVersion String
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos 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.
- versionType 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                
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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                
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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 intersightTerraform Provider.