1. Packages
  2. Intersight Provider
  3. API Docs
  4. KubernetesAciCniProfile
intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet

intersight.KubernetesAciCniProfile

Explore with Pulumi AI

intersight logo
intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet

    Configuration for an ACI CNI profile.

    Usage Example

    Resource Creation

    import * as pulumi from "@pulumi/pulumi";
    import * as intersight from "@pulumi/intersight";
    
    const config = new pulumi.Config();
    const assetDeviceRegistrationAcniCni = config.require("assetDeviceRegistrationAcniCni");
    const kubernetesAciCniProfile1 = new intersight.KubernetesAciCniProfile("kubernetesAciCniProfile1", {
        description: "kubernetes aci cni profile",
        type: "instance",
        nodeSvcSubnetStart: "10.0.0.0/8",
        podSubnetStart: "10.0.0.0/8",
        organizations: [{
            objectType: "organization.Organization",
            moid: _var.organization,
        }],
        registeredDevices: [{
            moid: assetDeviceRegistrationAcniCni,
            objectType: "asset.DeviceRegistrations",
        }],
    });
    
    import pulumi
    import pulumi_intersight as intersight
    
    config = pulumi.Config()
    asset_device_registration_acni_cni = config.require("assetDeviceRegistrationAcniCni")
    kubernetes_aci_cni_profile1 = intersight.KubernetesAciCniProfile("kubernetesAciCniProfile1",
        description="kubernetes aci cni profile",
        type="instance",
        node_svc_subnet_start="10.0.0.0/8",
        pod_subnet_start="10.0.0.0/8",
        organizations=[{
            "object_type": "organization.Organization",
            "moid": var["organization"],
        }],
        registered_devices=[{
            "moid": asset_device_registration_acni_cni,
            "object_type": "asset.DeviceRegistrations",
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		assetDeviceRegistrationAcniCni := cfg.Require("assetDeviceRegistrationAcniCni")
    		_, err := intersight.NewKubernetesAciCniProfile(ctx, "kubernetesAciCniProfile1", &intersight.KubernetesAciCniProfileArgs{
    			Description:        pulumi.String("kubernetes aci cni profile"),
    			Type:               pulumi.String("instance"),
    			NodeSvcSubnetStart: pulumi.String("10.0.0.0/8"),
    			PodSubnetStart:     pulumi.String("10.0.0.0/8"),
    			Organizations: intersight.KubernetesAciCniProfileOrganizationArray{
    				&intersight.KubernetesAciCniProfileOrganizationArgs{
    					ObjectType: pulumi.String("organization.Organization"),
    					Moid:       pulumi.Any(_var.Organization),
    				},
    			},
    			RegisteredDevices: intersight.KubernetesAciCniProfileRegisteredDeviceArray{
    				&intersight.KubernetesAciCniProfileRegisteredDeviceArgs{
    					Moid:       pulumi.String(assetDeviceRegistrationAcniCni),
    					ObjectType: pulumi.String("asset.DeviceRegistrations"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Intersight = Pulumi.Intersight;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var assetDeviceRegistrationAcniCni = config.Require("assetDeviceRegistrationAcniCni");
        var kubernetesAciCniProfile1 = new Intersight.KubernetesAciCniProfile("kubernetesAciCniProfile1", new()
        {
            Description = "kubernetes aci cni profile",
            Type = "instance",
            NodeSvcSubnetStart = "10.0.0.0/8",
            PodSubnetStart = "10.0.0.0/8",
            Organizations = new[]
            {
                new Intersight.Inputs.KubernetesAciCniProfileOrganizationArgs
                {
                    ObjectType = "organization.Organization",
                    Moid = @var.Organization,
                },
            },
            RegisteredDevices = new[]
            {
                new Intersight.Inputs.KubernetesAciCniProfileRegisteredDeviceArgs
                {
                    Moid = assetDeviceRegistrationAcniCni,
                    ObjectType = "asset.DeviceRegistrations",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.intersight.KubernetesAciCniProfile;
    import com.pulumi.intersight.KubernetesAciCniProfileArgs;
    import com.pulumi.intersight.inputs.KubernetesAciCniProfileOrganizationArgs;
    import com.pulumi.intersight.inputs.KubernetesAciCniProfileRegisteredDeviceArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var config = ctx.config();
            final var assetDeviceRegistrationAcniCni = config.get("assetDeviceRegistrationAcniCni");
            var kubernetesAciCniProfile1 = new KubernetesAciCniProfile("kubernetesAciCniProfile1", KubernetesAciCniProfileArgs.builder()
                .description("kubernetes aci cni profile")
                .type("instance")
                .nodeSvcSubnetStart("10.0.0.0/8")
                .podSubnetStart("10.0.0.0/8")
                .organizations(KubernetesAciCniProfileOrganizationArgs.builder()
                    .objectType("organization.Organization")
                    .moid(var_.organization())
                    .build())
                .registeredDevices(KubernetesAciCniProfileRegisteredDeviceArgs.builder()
                    .moid(assetDeviceRegistrationAcniCni)
                    .objectType("asset.DeviceRegistrations")
                    .build())
                .build());
    
        }
    }
    
    configuration:
      assetDeviceRegistrationAcniCni:
        type: string
    resources:
      kubernetesAciCniProfile1:
        type: intersight:KubernetesAciCniProfile
        properties:
          description: kubernetes aci cni profile
          type: instance
          nodeSvcSubnetStart: 10.0.0.0/8
          podSubnetStart: 10.0.0.0/8
          organizations:
            - objectType: organization.Organization
              moid: ${var.organization}
          registeredDevices:
            - moid: ${assetDeviceRegistrationAcniCni}
              objectType: asset.DeviceRegistrations
    

    Create KubernetesAciCniProfile Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new KubernetesAciCniProfile(name: string, args?: KubernetesAciCniProfileArgs, opts?: CustomResourceOptions);
    @overload
    def KubernetesAciCniProfile(resource_name: str,
                                args: Optional[KubernetesAciCniProfileArgs] = None,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def KubernetesAciCniProfile(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                aaep_name: Optional[str] = None,
                                account_moid: Optional[str] = None,
                                additional_properties: Optional[str] = None,
                                ancestors: Optional[Sequence[KubernetesAciCniProfileAncestorArgs]] = None,
                                class_id: Optional[str] = None,
                                cluster_aci_allocations: Optional[Sequence[KubernetesAciCniProfileClusterAciAllocationArgs]] = None,
                                cluster_profiles: Optional[Sequence[KubernetesAciCniProfileClusterProfileArgs]] = None,
                                create_time: Optional[str] = None,
                                description: Optional[str] = None,
                                domain_group_moid: Optional[str] = None,
                                ext_svc_dyn_subnet_start: Optional[str] = None,
                                ext_svc_static_subnet_start: Optional[str] = None,
                                infra_vlan_id: Optional[float] = None,
                                kubernetes_aci_cni_profile_id: Optional[str] = None,
                                l3_out_network_name: Optional[str] = None,
                                l3_out_policy_name: Optional[str] = None,
                                l3_out_tenant: Optional[str] = None,
                                mod_time: Optional[str] = None,
                                moid: Optional[str] = None,
                                name: Optional[str] = None,
                                nested_vmm_domain: Optional[str] = None,
                                node_svc_subnet_start: Optional[str] = None,
                                node_vlan_range_end: Optional[float] = None,
                                node_vlan_range_start: Optional[float] = None,
                                number_of_kubernetes_clusters: Optional[float] = None,
                                object_type: Optional[str] = None,
                                opflex_multicast_address_range: Optional[str] = None,
                                organizations: Optional[Sequence[KubernetesAciCniProfileOrganizationArgs]] = None,
                                owners: Optional[Sequence[str]] = None,
                                parents: Optional[Sequence[KubernetesAciCniProfileParentArgs]] = None,
                                permission_resources: Optional[Sequence[KubernetesAciCniProfilePermissionResourceArgs]] = None,
                                pod_subnet_start: Optional[str] = None,
                                registered_devices: Optional[Sequence[KubernetesAciCniProfileRegisteredDeviceArgs]] = None,
                                shared_scope: Optional[str] = None,
                                src_templates: Optional[Sequence[KubernetesAciCniProfileSrcTemplateArgs]] = None,
                                svc_subnet_start: Optional[str] = None,
                                tags: Optional[Sequence[KubernetesAciCniProfileTagArgs]] = None,
                                type: Optional[str] = None,
                                version_contexts: Optional[Sequence[KubernetesAciCniProfileVersionContextArgs]] = None,
                                vrf: Optional[str] = None)
    func NewKubernetesAciCniProfile(ctx *Context, name string, args *KubernetesAciCniProfileArgs, opts ...ResourceOption) (*KubernetesAciCniProfile, error)
    public KubernetesAciCniProfile(string name, KubernetesAciCniProfileArgs? args = null, CustomResourceOptions? opts = null)
    public KubernetesAciCniProfile(String name, KubernetesAciCniProfileArgs args)
    public KubernetesAciCniProfile(String name, KubernetesAciCniProfileArgs args, CustomResourceOptions options)
    
    type: intersight:KubernetesAciCniProfile
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args KubernetesAciCniProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args KubernetesAciCniProfileArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args KubernetesAciCniProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KubernetesAciCniProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KubernetesAciCniProfileArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var kubernetesAciCniProfileResource = new Intersight.KubernetesAciCniProfile("kubernetesAciCniProfileResource", new()
    {
        AaepName = "string",
        AccountMoid = "string",
        AdditionalProperties = "string",
        Ancestors = new[]
        {
            new Intersight.Inputs.KubernetesAciCniProfileAncestorArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ClassId = "string",
        ClusterAciAllocations = new[]
        {
            new Intersight.Inputs.KubernetesAciCniProfileClusterAciAllocationArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ClusterProfiles = new[]
        {
            new Intersight.Inputs.KubernetesAciCniProfileClusterProfileArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        CreateTime = "string",
        Description = "string",
        DomainGroupMoid = "string",
        ExtSvcDynSubnetStart = "string",
        ExtSvcStaticSubnetStart = "string",
        InfraVlanId = 0,
        KubernetesAciCniProfileId = "string",
        L3OutNetworkName = "string",
        L3OutPolicyName = "string",
        L3OutTenant = "string",
        ModTime = "string",
        Moid = "string",
        Name = "string",
        NestedVmmDomain = "string",
        NodeSvcSubnetStart = "string",
        NodeVlanRangeEnd = 0,
        NodeVlanRangeStart = 0,
        NumberOfKubernetesClusters = 0,
        ObjectType = "string",
        OpflexMulticastAddressRange = "string",
        Organizations = new[]
        {
            new Intersight.Inputs.KubernetesAciCniProfileOrganizationArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Owners = new[]
        {
            "string",
        },
        Parents = new[]
        {
            new Intersight.Inputs.KubernetesAciCniProfileParentArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PermissionResources = new[]
        {
            new Intersight.Inputs.KubernetesAciCniProfilePermissionResourceArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PodSubnetStart = "string",
        RegisteredDevices = new[]
        {
            new Intersight.Inputs.KubernetesAciCniProfileRegisteredDeviceArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        SharedScope = "string",
        SrcTemplates = new[]
        {
            new Intersight.Inputs.KubernetesAciCniProfileSrcTemplateArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        SvcSubnetStart = "string",
        Tags = new[]
        {
            new Intersight.Inputs.KubernetesAciCniProfileTagArgs
            {
                AdditionalProperties = "string",
                Key = "string",
                Value = "string",
            },
        },
        Type = "string",
        VersionContexts = new[]
        {
            new Intersight.Inputs.KubernetesAciCniProfileVersionContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                InterestedMos = new[]
                {
                    new Intersight.Inputs.KubernetesAciCniProfileVersionContextInterestedMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                MarkedForDeletion = false,
                NrVersion = "string",
                ObjectType = "string",
                RefMos = new[]
                {
                    new Intersight.Inputs.KubernetesAciCniProfileVersionContextRefMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                Timestamp = "string",
                VersionType = "string",
            },
        },
        Vrf = "string",
    });
    
    example, err := intersight.NewKubernetesAciCniProfile(ctx, "kubernetesAciCniProfileResource", &intersight.KubernetesAciCniProfileArgs{
    	AaepName:             pulumi.String("string"),
    	AccountMoid:          pulumi.String("string"),
    	AdditionalProperties: pulumi.String("string"),
    	Ancestors: intersight.KubernetesAciCniProfileAncestorArray{
    		&intersight.KubernetesAciCniProfileAncestorArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ClassId: pulumi.String("string"),
    	ClusterAciAllocations: intersight.KubernetesAciCniProfileClusterAciAllocationArray{
    		&intersight.KubernetesAciCniProfileClusterAciAllocationArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ClusterProfiles: intersight.KubernetesAciCniProfileClusterProfileArray{
    		&intersight.KubernetesAciCniProfileClusterProfileArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	CreateTime:                  pulumi.String("string"),
    	Description:                 pulumi.String("string"),
    	DomainGroupMoid:             pulumi.String("string"),
    	ExtSvcDynSubnetStart:        pulumi.String("string"),
    	ExtSvcStaticSubnetStart:     pulumi.String("string"),
    	InfraVlanId:                 pulumi.Float64(0),
    	KubernetesAciCniProfileId:   pulumi.String("string"),
    	L3OutNetworkName:            pulumi.String("string"),
    	L3OutPolicyName:             pulumi.String("string"),
    	L3OutTenant:                 pulumi.String("string"),
    	ModTime:                     pulumi.String("string"),
    	Moid:                        pulumi.String("string"),
    	Name:                        pulumi.String("string"),
    	NestedVmmDomain:             pulumi.String("string"),
    	NodeSvcSubnetStart:          pulumi.String("string"),
    	NodeVlanRangeEnd:            pulumi.Float64(0),
    	NodeVlanRangeStart:          pulumi.Float64(0),
    	NumberOfKubernetesClusters:  pulumi.Float64(0),
    	ObjectType:                  pulumi.String("string"),
    	OpflexMulticastAddressRange: pulumi.String("string"),
    	Organizations: intersight.KubernetesAciCniProfileOrganizationArray{
    		&intersight.KubernetesAciCniProfileOrganizationArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Owners: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Parents: intersight.KubernetesAciCniProfileParentArray{
    		&intersight.KubernetesAciCniProfileParentArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PermissionResources: intersight.KubernetesAciCniProfilePermissionResourceArray{
    		&intersight.KubernetesAciCniProfilePermissionResourceArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PodSubnetStart: pulumi.String("string"),
    	RegisteredDevices: intersight.KubernetesAciCniProfileRegisteredDeviceArray{
    		&intersight.KubernetesAciCniProfileRegisteredDeviceArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	SharedScope: pulumi.String("string"),
    	SrcTemplates: intersight.KubernetesAciCniProfileSrcTemplateArray{
    		&intersight.KubernetesAciCniProfileSrcTemplateArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	SvcSubnetStart: pulumi.String("string"),
    	Tags: intersight.KubernetesAciCniProfileTagArray{
    		&intersight.KubernetesAciCniProfileTagArgs{
    			AdditionalProperties: pulumi.String("string"),
    			Key:                  pulumi.String("string"),
    			Value:                pulumi.String("string"),
    		},
    	},
    	Type: pulumi.String("string"),
    	VersionContexts: intersight.KubernetesAciCniProfileVersionContextArray{
    		&intersight.KubernetesAciCniProfileVersionContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			InterestedMos: intersight.KubernetesAciCniProfileVersionContextInterestedMoArray{
    				&intersight.KubernetesAciCniProfileVersionContextInterestedMoArgs{
    					AdditionalProperties: pulumi.String("string"),
    					ClassId:              pulumi.String("string"),
    					Moid:                 pulumi.String("string"),
    					ObjectType:           pulumi.String("string"),
    					Selector:             pulumi.String("string"),
    				},
    			},
    			MarkedForDeletion: pulumi.Bool(false),
    			NrVersion:         pulumi.String("string"),
    			ObjectType:        pulumi.String("string"),
    			RefMos: intersight.KubernetesAciCniProfileVersionContextRefMoArray{
    				&intersight.KubernetesAciCniProfileVersionContextRefMoArgs{
    					AdditionalProperties: pulumi.String("string"),
    					ClassId:              pulumi.String("string"),
    					Moid:                 pulumi.String("string"),
    					ObjectType:           pulumi.String("string"),
    					Selector:             pulumi.String("string"),
    				},
    			},
    			Timestamp:   pulumi.String("string"),
    			VersionType: pulumi.String("string"),
    		},
    	},
    	Vrf: pulumi.String("string"),
    })
    
    var kubernetesAciCniProfileResource = new KubernetesAciCniProfile("kubernetesAciCniProfileResource", KubernetesAciCniProfileArgs.builder()
        .aaepName("string")
        .accountMoid("string")
        .additionalProperties("string")
        .ancestors(KubernetesAciCniProfileAncestorArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .classId("string")
        .clusterAciAllocations(KubernetesAciCniProfileClusterAciAllocationArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .clusterProfiles(KubernetesAciCniProfileClusterProfileArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .createTime("string")
        .description("string")
        .domainGroupMoid("string")
        .extSvcDynSubnetStart("string")
        .extSvcStaticSubnetStart("string")
        .infraVlanId(0)
        .kubernetesAciCniProfileId("string")
        .l3OutNetworkName("string")
        .l3OutPolicyName("string")
        .l3OutTenant("string")
        .modTime("string")
        .moid("string")
        .name("string")
        .nestedVmmDomain("string")
        .nodeSvcSubnetStart("string")
        .nodeVlanRangeEnd(0)
        .nodeVlanRangeStart(0)
        .numberOfKubernetesClusters(0)
        .objectType("string")
        .opflexMulticastAddressRange("string")
        .organizations(KubernetesAciCniProfileOrganizationArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .owners("string")
        .parents(KubernetesAciCniProfileParentArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .permissionResources(KubernetesAciCniProfilePermissionResourceArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .podSubnetStart("string")
        .registeredDevices(KubernetesAciCniProfileRegisteredDeviceArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .sharedScope("string")
        .srcTemplates(KubernetesAciCniProfileSrcTemplateArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .svcSubnetStart("string")
        .tags(KubernetesAciCniProfileTagArgs.builder()
            .additionalProperties("string")
            .key("string")
            .value("string")
            .build())
        .type("string")
        .versionContexts(KubernetesAciCniProfileVersionContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .interestedMos(KubernetesAciCniProfileVersionContextInterestedMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .markedForDeletion(false)
            .nrVersion("string")
            .objectType("string")
            .refMos(KubernetesAciCniProfileVersionContextRefMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .timestamp("string")
            .versionType("string")
            .build())
        .vrf("string")
        .build());
    
    kubernetes_aci_cni_profile_resource = intersight.KubernetesAciCniProfile("kubernetesAciCniProfileResource",
        aaep_name="string",
        account_moid="string",
        additional_properties="string",
        ancestors=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        class_id="string",
        cluster_aci_allocations=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        cluster_profiles=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        create_time="string",
        description="string",
        domain_group_moid="string",
        ext_svc_dyn_subnet_start="string",
        ext_svc_static_subnet_start="string",
        infra_vlan_id=0,
        kubernetes_aci_cni_profile_id="string",
        l3_out_network_name="string",
        l3_out_policy_name="string",
        l3_out_tenant="string",
        mod_time="string",
        moid="string",
        name="string",
        nested_vmm_domain="string",
        node_svc_subnet_start="string",
        node_vlan_range_end=0,
        node_vlan_range_start=0,
        number_of_kubernetes_clusters=0,
        object_type="string",
        opflex_multicast_address_range="string",
        organizations=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        owners=["string"],
        parents=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        permission_resources=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        pod_subnet_start="string",
        registered_devices=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        shared_scope="string",
        src_templates=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        svc_subnet_start="string",
        tags=[{
            "additional_properties": "string",
            "key": "string",
            "value": "string",
        }],
        type="string",
        version_contexts=[{
            "additional_properties": "string",
            "class_id": "string",
            "interested_mos": [{
                "additional_properties": "string",
                "class_id": "string",
                "moid": "string",
                "object_type": "string",
                "selector": "string",
            }],
            "marked_for_deletion": False,
            "nr_version": "string",
            "object_type": "string",
            "ref_mos": [{
                "additional_properties": "string",
                "class_id": "string",
                "moid": "string",
                "object_type": "string",
                "selector": "string",
            }],
            "timestamp": "string",
            "version_type": "string",
        }],
        vrf="string")
    
    const kubernetesAciCniProfileResource = new intersight.KubernetesAciCniProfile("kubernetesAciCniProfileResource", {
        aaepName: "string",
        accountMoid: "string",
        additionalProperties: "string",
        ancestors: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        classId: "string",
        clusterAciAllocations: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        clusterProfiles: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        createTime: "string",
        description: "string",
        domainGroupMoid: "string",
        extSvcDynSubnetStart: "string",
        extSvcStaticSubnetStart: "string",
        infraVlanId: 0,
        kubernetesAciCniProfileId: "string",
        l3OutNetworkName: "string",
        l3OutPolicyName: "string",
        l3OutTenant: "string",
        modTime: "string",
        moid: "string",
        name: "string",
        nestedVmmDomain: "string",
        nodeSvcSubnetStart: "string",
        nodeVlanRangeEnd: 0,
        nodeVlanRangeStart: 0,
        numberOfKubernetesClusters: 0,
        objectType: "string",
        opflexMulticastAddressRange: "string",
        organizations: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        owners: ["string"],
        parents: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        permissionResources: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        podSubnetStart: "string",
        registeredDevices: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        sharedScope: "string",
        srcTemplates: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        svcSubnetStart: "string",
        tags: [{
            additionalProperties: "string",
            key: "string",
            value: "string",
        }],
        type: "string",
        versionContexts: [{
            additionalProperties: "string",
            classId: "string",
            interestedMos: [{
                additionalProperties: "string",
                classId: "string",
                moid: "string",
                objectType: "string",
                selector: "string",
            }],
            markedForDeletion: false,
            nrVersion: "string",
            objectType: "string",
            refMos: [{
                additionalProperties: "string",
                classId: "string",
                moid: "string",
                objectType: "string",
                selector: "string",
            }],
            timestamp: "string",
            versionType: "string",
        }],
        vrf: "string",
    });
    
    type: intersight:KubernetesAciCniProfile
    properties:
        aaepName: string
        accountMoid: string
        additionalProperties: string
        ancestors:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        classId: string
        clusterAciAllocations:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        clusterProfiles:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        createTime: string
        description: string
        domainGroupMoid: string
        extSvcDynSubnetStart: string
        extSvcStaticSubnetStart: string
        infraVlanId: 0
        kubernetesAciCniProfileId: string
        l3OutNetworkName: string
        l3OutPolicyName: string
        l3OutTenant: string
        modTime: string
        moid: string
        name: string
        nestedVmmDomain: string
        nodeSvcSubnetStart: string
        nodeVlanRangeEnd: 0
        nodeVlanRangeStart: 0
        numberOfKubernetesClusters: 0
        objectType: string
        opflexMulticastAddressRange: string
        organizations:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        owners:
            - string
        parents:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        permissionResources:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        podSubnetStart: string
        registeredDevices:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        sharedScope: string
        srcTemplates:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        svcSubnetStart: string
        tags:
            - additionalProperties: string
              key: string
              value: string
        type: string
        versionContexts:
            - additionalProperties: string
              classId: string
              interestedMos:
                - additionalProperties: string
                  classId: string
                  moid: string
                  objectType: string
                  selector: string
              markedForDeletion: false
              nrVersion: string
              objectType: string
              refMos:
                - additionalProperties: string
                  classId: string
                  moid: string
                  objectType: string
                  selector: string
              timestamp: string
              versionType: string
        vrf: string
    

    KubernetesAciCniProfile Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The KubernetesAciCniProfile resource accepts the following input properties:

    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<KubernetesAciCniProfileAncestor>
    (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.
    ClusterAciAllocations List<KubernetesAciCniProfileClusterAciAllocation>
    (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
    ClusterProfiles List<KubernetesAciCniProfileClusterProfile>
    (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.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    ExtSvcDynSubnetStart string
    Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    ExtSvcStaticSubnetStart string
    Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    InfraVlanId double
    (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
    KubernetesAciCniProfileId string
    L3OutNetworkName string
    Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
    L3OutPolicyName string
    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.
    NestedVmmDomain string
    VMM domain within which Kubernetes clusters using this policy are nested.
    NodeSvcSubnetStart string
    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.
    NodeVlanRangeEnd double
    Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    NodeVlanRangeStart double
    Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    NumberOfKubernetesClusters double
    (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.
    OpflexMulticastAddressRange string
    Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
    Organizations List<KubernetesAciCniProfileOrganization>
    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<KubernetesAciCniProfileParent>
    (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<KubernetesAciCniProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PodSubnetStart string
    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<KubernetesAciCniProfileRegisteredDevice>
    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:
    SharedScope 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<KubernetesAciCniProfileSrcTemplate>
    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:
    SvcSubnetStart string
    (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.
    Tags List<KubernetesAciCniProfileTag>
    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<KubernetesAciCniProfileVersionContext>
    (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 []KubernetesAciCniProfileAncestorArgs
    (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.
    ClusterAciAllocations []KubernetesAciCniProfileClusterAciAllocationArgs
    (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
    ClusterProfiles []KubernetesAciCniProfileClusterProfileArgs
    (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.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    ExtSvcDynSubnetStart string
    Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    ExtSvcStaticSubnetStart string
    Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    InfraVlanId float64
    (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
    KubernetesAciCniProfileId string
    L3OutNetworkName string
    Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
    L3OutPolicyName string
    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.
    NestedVmmDomain string
    VMM domain within which Kubernetes clusters using this policy are nested.
    NodeSvcSubnetStart string
    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.
    NodeVlanRangeEnd float64
    Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    NodeVlanRangeStart float64
    Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    NumberOfKubernetesClusters float64
    (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.
    OpflexMulticastAddressRange string
    Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
    Organizations []KubernetesAciCniProfileOrganizationArgs
    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 []KubernetesAciCniProfileParentArgs
    (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 []KubernetesAciCniProfilePermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PodSubnetStart string
    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 []KubernetesAciCniProfileRegisteredDeviceArgs
    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:
    SharedScope 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 []KubernetesAciCniProfileSrcTemplateArgs
    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:
    SvcSubnetStart string
    (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.
    Tags []KubernetesAciCniProfileTagArgs
    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 []KubernetesAciCniProfileVersionContextArgs
    (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<KubernetesAciCniProfileAncestor>
    (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.
    clusterAciAllocations List<KubernetesAciCniProfileClusterAciAllocation>
    (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
    clusterProfiles List<KubernetesAciCniProfileClusterProfile>
    (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.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    extSvcDynSubnetStart String
    Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    extSvcStaticSubnetStart String
    Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    infraVlanId Double
    (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
    kubernetesAciCniProfileId String
    l3OutNetworkName String
    Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
    l3OutPolicyName String
    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.
    nestedVmmDomain String
    VMM domain within which Kubernetes clusters using this policy are nested.
    nodeSvcSubnetStart String
    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.
    nodeVlanRangeEnd Double
    Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    nodeVlanRangeStart Double
    Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    numberOfKubernetesClusters Double
    (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.
    opflexMulticastAddressRange String
    Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
    organizations List<KubernetesAciCniProfileOrganization>
    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<KubernetesAciCniProfileParent>
    (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<KubernetesAciCniProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    podSubnetStart String
    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<KubernetesAciCniProfileRegisteredDevice>
    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:
    sharedScope 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<KubernetesAciCniProfileSrcTemplate>
    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:
    svcSubnetStart String
    (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.
    tags List<KubernetesAciCniProfileTag>
    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<KubernetesAciCniProfileVersionContext>
    (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 KubernetesAciCniProfileAncestor[]
    (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.
    clusterAciAllocations KubernetesAciCniProfileClusterAciAllocation[]
    (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
    clusterProfiles KubernetesAciCniProfileClusterProfile[]
    (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.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    extSvcDynSubnetStart string
    Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    extSvcStaticSubnetStart string
    Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    infraVlanId number
    (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
    kubernetesAciCniProfileId string
    l3OutNetworkName string
    Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
    l3OutPolicyName string
    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.
    nestedVmmDomain string
    VMM domain within which Kubernetes clusters using this policy are nested.
    nodeSvcSubnetStart string
    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.
    nodeVlanRangeEnd number
    Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    nodeVlanRangeStart number
    Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    numberOfKubernetesClusters number
    (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.
    opflexMulticastAddressRange string
    Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
    organizations KubernetesAciCniProfileOrganization[]
    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 KubernetesAciCniProfileParent[]
    (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 KubernetesAciCniProfilePermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    podSubnetStart string
    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 KubernetesAciCniProfileRegisteredDevice[]
    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:
    sharedScope 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 KubernetesAciCniProfileSrcTemplate[]
    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:
    svcSubnetStart string
    (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.
    tags KubernetesAciCniProfileTag[]
    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 KubernetesAciCniProfileVersionContext[]
    (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[KubernetesAciCniProfileAncestorArgs]
    (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_allocations Sequence[KubernetesAciCniProfileClusterAciAllocationArgs]
    (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
    cluster_profiles Sequence[KubernetesAciCniProfileClusterProfileArgs]
    (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_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    ext_svc_dyn_subnet_start str
    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_static_subnet_start str
    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_id float
    (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
    kubernetes_aci_cni_profile_id str
    l3_out_network_name str
    Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
    l3_out_policy_name str
    Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
    l3_out_tenant str
    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_domain str
    VMM domain within which Kubernetes clusters using this policy are nested.
    node_svc_subnet_start str
    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_range_end float
    Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    node_vlan_range_start float
    Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    number_of_kubernetes_clusters float
    (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_address_range str
    Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
    organizations Sequence[KubernetesAciCniProfileOrganizationArgs]
    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[KubernetesAciCniProfileParentArgs]
    (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[KubernetesAciCniProfilePermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    pod_subnet_start str
    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[KubernetesAciCniProfileRegisteredDeviceArgs]
    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:
    shared_scope 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[KubernetesAciCniProfileSrcTemplateArgs]
    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_start str
    (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.
    tags Sequence[KubernetesAciCniProfileTagArgs]
    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[KubernetesAciCniProfileVersionContextArgs]
    (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.
    clusterAciAllocations List<Property Map>
    (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.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    extSvcDynSubnetStart String
    Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    extSvcStaticSubnetStart String
    Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    infraVlanId Number
    (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
    kubernetesAciCniProfileId String
    l3OutNetworkName String
    Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
    l3OutPolicyName String
    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.
    nestedVmmDomain String
    VMM domain within which Kubernetes clusters using this policy are nested.
    nodeSvcSubnetStart String
    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.
    nodeVlanRangeEnd Number
    Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    nodeVlanRangeStart Number
    Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    numberOfKubernetesClusters Number
    (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.
    opflexMulticastAddressRange String
    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:
    podSubnetStart String
    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:
    sharedScope 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:
    svcSubnetStart String
    (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.
    tags 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) -> KubernetesAciCniProfile
    func GetKubernetesAciCniProfile(ctx *Context, name string, id IDInput, state *KubernetesAciCniProfileState, opts ...ResourceOption) (*KubernetesAciCniProfile, error)
    public static KubernetesAciCniProfile Get(string name, Input<string> id, KubernetesAciCniProfileState? state, CustomResourceOptions? opts = null)
    public static KubernetesAciCniProfile get(String name, Output<String> id, KubernetesAciCniProfileState state, CustomResourceOptions options)
    resources:  _:    type: intersight:KubernetesAciCniProfile    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    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<KubernetesAciCniProfileAncestor>
    (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.
    ClusterAciAllocations List<KubernetesAciCniProfileClusterAciAllocation>
    (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
    ClusterProfiles List<KubernetesAciCniProfileClusterProfile>
    (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.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    ExtSvcDynSubnetStart string
    Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    ExtSvcStaticSubnetStart string
    Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    InfraVlanId double
    (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
    KubernetesAciCniProfileId string
    L3OutNetworkName string
    Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
    L3OutPolicyName string
    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.
    NestedVmmDomain string
    VMM domain within which Kubernetes clusters using this policy are nested.
    NodeSvcSubnetStart string
    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.
    NodeVlanRangeEnd double
    Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    NodeVlanRangeStart double
    Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    NumberOfKubernetesClusters double
    (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.
    OpflexMulticastAddressRange string
    Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
    Organizations List<KubernetesAciCniProfileOrganization>
    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<KubernetesAciCniProfileParent>
    (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<KubernetesAciCniProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PodSubnetStart string
    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<KubernetesAciCniProfileRegisteredDevice>
    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:
    SharedScope 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<KubernetesAciCniProfileSrcTemplate>
    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:
    SvcSubnetStart string
    (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.
    Tags List<KubernetesAciCniProfileTag>
    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<KubernetesAciCniProfileVersionContext>
    (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 []KubernetesAciCniProfileAncestorArgs
    (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.
    ClusterAciAllocations []KubernetesAciCniProfileClusterAciAllocationArgs
    (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
    ClusterProfiles []KubernetesAciCniProfileClusterProfileArgs
    (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.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    ExtSvcDynSubnetStart string
    Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    ExtSvcStaticSubnetStart string
    Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    InfraVlanId float64
    (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
    KubernetesAciCniProfileId string
    L3OutNetworkName string
    Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
    L3OutPolicyName string
    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.
    NestedVmmDomain string
    VMM domain within which Kubernetes clusters using this policy are nested.
    NodeSvcSubnetStart string
    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.
    NodeVlanRangeEnd float64
    Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    NodeVlanRangeStart float64
    Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    NumberOfKubernetesClusters float64
    (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.
    OpflexMulticastAddressRange string
    Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
    Organizations []KubernetesAciCniProfileOrganizationArgs
    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 []KubernetesAciCniProfileParentArgs
    (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 []KubernetesAciCniProfilePermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PodSubnetStart string
    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 []KubernetesAciCniProfileRegisteredDeviceArgs
    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:
    SharedScope 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 []KubernetesAciCniProfileSrcTemplateArgs
    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:
    SvcSubnetStart string
    (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.
    Tags []KubernetesAciCniProfileTagArgs
    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 []KubernetesAciCniProfileVersionContextArgs
    (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<KubernetesAciCniProfileAncestor>
    (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.
    clusterAciAllocations List<KubernetesAciCniProfileClusterAciAllocation>
    (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
    clusterProfiles List<KubernetesAciCniProfileClusterProfile>
    (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.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    extSvcDynSubnetStart String
    Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    extSvcStaticSubnetStart String
    Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    infraVlanId Double
    (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
    kubernetesAciCniProfileId String
    l3OutNetworkName String
    Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
    l3OutPolicyName String
    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.
    nestedVmmDomain String
    VMM domain within which Kubernetes clusters using this policy are nested.
    nodeSvcSubnetStart String
    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.
    nodeVlanRangeEnd Double
    Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    nodeVlanRangeStart Double
    Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    numberOfKubernetesClusters Double
    (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.
    opflexMulticastAddressRange String
    Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
    organizations List<KubernetesAciCniProfileOrganization>
    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<KubernetesAciCniProfileParent>
    (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<KubernetesAciCniProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    podSubnetStart String
    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<KubernetesAciCniProfileRegisteredDevice>
    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:
    sharedScope 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<KubernetesAciCniProfileSrcTemplate>
    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:
    svcSubnetStart String
    (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.
    tags List<KubernetesAciCniProfileTag>
    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<KubernetesAciCniProfileVersionContext>
    (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 KubernetesAciCniProfileAncestor[]
    (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.
    clusterAciAllocations KubernetesAciCniProfileClusterAciAllocation[]
    (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
    clusterProfiles KubernetesAciCniProfileClusterProfile[]
    (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.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    extSvcDynSubnetStart string
    Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    extSvcStaticSubnetStart string
    Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    infraVlanId number
    (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
    kubernetesAciCniProfileId string
    l3OutNetworkName string
    Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
    l3OutPolicyName string
    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.
    nestedVmmDomain string
    VMM domain within which Kubernetes clusters using this policy are nested.
    nodeSvcSubnetStart string
    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.
    nodeVlanRangeEnd number
    Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    nodeVlanRangeStart number
    Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    numberOfKubernetesClusters number
    (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.
    opflexMulticastAddressRange string
    Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
    organizations KubernetesAciCniProfileOrganization[]
    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 KubernetesAciCniProfileParent[]
    (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 KubernetesAciCniProfilePermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    podSubnetStart string
    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 KubernetesAciCniProfileRegisteredDevice[]
    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:
    sharedScope 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 KubernetesAciCniProfileSrcTemplate[]
    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:
    svcSubnetStart string
    (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.
    tags KubernetesAciCniProfileTag[]
    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 KubernetesAciCniProfileVersionContext[]
    (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[KubernetesAciCniProfileAncestorArgs]
    (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_allocations Sequence[KubernetesAciCniProfileClusterAciAllocationArgs]
    (ReadOnly) An array of relationships to kubernetesAciCniTenantClusterAllocation resources. This complex property has following sub-properties:
    cluster_profiles Sequence[KubernetesAciCniProfileClusterProfileArgs]
    (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_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    ext_svc_dyn_subnet_start str
    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_static_subnet_start str
    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_id float
    (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
    kubernetes_aci_cni_profile_id str
    l3_out_network_name str
    Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
    l3_out_policy_name str
    Name of ACI L3Out policy to be used for all Kubernetes clusters using this policy.
    l3_out_tenant str
    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_domain str
    VMM domain within which Kubernetes clusters using this policy are nested.
    node_svc_subnet_start str
    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_range_end float
    Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    node_vlan_range_start float
    Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    number_of_kubernetes_clusters float
    (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_address_range str
    Range of IP Multicast addresses to be used by the Opflex protocol for Kubernetes clusters using this policy.
    organizations Sequence[KubernetesAciCniProfileOrganizationArgs]
    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[KubernetesAciCniProfileParentArgs]
    (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[KubernetesAciCniProfilePermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    pod_subnet_start str
    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[KubernetesAciCniProfileRegisteredDeviceArgs]
    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:
    shared_scope 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[KubernetesAciCniProfileSrcTemplateArgs]
    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_start str
    (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.
    tags Sequence[KubernetesAciCniProfileTagArgs]
    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[KubernetesAciCniProfileVersionContextArgs]
    (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.
    clusterAciAllocations List<Property Map>
    (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.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    extSvcDynSubnetStart String
    Start of range of IP subnets for external services with dynamic IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    extSvcStaticSubnetStart String
    Start of range of IP subnets for external services with static IP allocation for use by Kubernetes clusters using this ACI CNI policy.
    infraVlanId Number
    (ReadOnly) Value of ACI infrastructuere VLAN ID for the ACI fabric.
    kubernetesAciCniProfileId String
    l3OutNetworkName String
    Name of ACI L3Out network to be used for all Kubernetes clusters using this policy.
    l3OutPolicyName String
    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.
    nestedVmmDomain String
    VMM domain within which Kubernetes clusters using this policy are nested.
    nodeSvcSubnetStart String
    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.
    nodeVlanRangeEnd Number
    Ending value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    nodeVlanRangeStart Number
    Starting value of VLAN range used to assign Node VLAN Ids for each Kubernetes cluster using this policy.
    numberOfKubernetesClusters Number
    (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.
    opflexMulticastAddressRange String
    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:
    podSubnetStart String
    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:
    sharedScope 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:
    svcSubnetStart String
    (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.
    tags 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<KubernetesAciCniProfileVersionContextInterestedMo>
    This complex property has following sub-properties:
    MarkedForDeletion bool
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    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<KubernetesAciCniProfileVersionContextRefMo>
    (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 []KubernetesAciCniProfileVersionContextInterestedMo
    This complex property has following sub-properties:
    MarkedForDeletion bool
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    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 []KubernetesAciCniProfileVersionContextRefMo
    (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<KubernetesAciCniProfileVersionContextInterestedMo>
    This complex property has following sub-properties:
    markedForDeletion Boolean
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    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<KubernetesAciCniProfileVersionContextRefMo>
    (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 KubernetesAciCniProfileVersionContextInterestedMo[]
    This complex property has following sub-properties:
    markedForDeletion boolean
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    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 KubernetesAciCniProfileVersionContextRefMo[]
    (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[KubernetesAciCniProfileVersionContextInterestedMo]
    This complex property has following sub-properties:
    marked_for_deletion bool
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    nr_version 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[KubernetesAciCniProfileVersionContextRefMo]
    (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:
    markedForDeletion Boolean
    (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
    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 intersight Terraform Provider.
    intersight logo
    intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet