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

intersight.KubernetesClusterProfile

Explore with Pulumi AI

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

    Cluster profile specifies the config profile for a Kubernetes cluster. It also depicts operations to control the life cycle of a Kubernetes cluster.

    Usage Example

    Resource Creation

    import * as pulumi from "@pulumi/pulumi";
    import * as intersight from "@pulumi/intersight";
    
    const config = new pulumi.Config();
    const workflowWorkflowInfo = config.require("workflowWorkflowInfo");
    const kubernetesClusterProfile1 = new intersight.KubernetesClusterProfile("kubernetesClusterProfile1", {
        description: "kubernetes cluster profile",
        type: "instance",
        action: "Deploy",
        configContexts: [{
            controlAction: "Deploy",
            errorState: "Pre-config-error",
            objectType: "policy.ConfigContext",
        }],
        managedMode: "Managed",
        status: "Deploying",
        organizations: [{
            objectType: "organization.Organization",
            moid: _var.organization,
        }],
        workflowInfos: [{
            objectType: "workflow.WorkflowInfo",
            moid: workflowWorkflowInfo,
        }],
    });
    
    import pulumi
    import pulumi_intersight as intersight
    
    config = pulumi.Config()
    workflow_workflow_info = config.require("workflowWorkflowInfo")
    kubernetes_cluster_profile1 = intersight.KubernetesClusterProfile("kubernetesClusterProfile1",
        description="kubernetes cluster profile",
        type="instance",
        action="Deploy",
        config_contexts=[{
            "control_action": "Deploy",
            "error_state": "Pre-config-error",
            "object_type": "policy.ConfigContext",
        }],
        managed_mode="Managed",
        status="Deploying",
        organizations=[{
            "object_type": "organization.Organization",
            "moid": var["organization"],
        }],
        workflow_infos=[{
            "object_type": "workflow.WorkflowInfo",
            "moid": workflow_workflow_info,
        }])
    
    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, "")
    		workflowWorkflowInfo := cfg.Require("workflowWorkflowInfo")
    		_, err := intersight.NewKubernetesClusterProfile(ctx, "kubernetesClusterProfile1", &intersight.KubernetesClusterProfileArgs{
    			Description: pulumi.String("kubernetes cluster profile"),
    			Type:        pulumi.String("instance"),
    			Action:      pulumi.String("Deploy"),
    			ConfigContexts: intersight.KubernetesClusterProfileConfigContextArray{
    				&intersight.KubernetesClusterProfileConfigContextArgs{
    					ControlAction: pulumi.String("Deploy"),
    					ErrorState:    pulumi.String("Pre-config-error"),
    					ObjectType:    pulumi.String("policy.ConfigContext"),
    				},
    			},
    			ManagedMode: pulumi.String("Managed"),
    			Status:      pulumi.String("Deploying"),
    			Organizations: intersight.KubernetesClusterProfileOrganizationArray{
    				&intersight.KubernetesClusterProfileOrganizationArgs{
    					ObjectType: pulumi.String("organization.Organization"),
    					Moid:       pulumi.Any(_var.Organization),
    				},
    			},
    			WorkflowInfos: intersight.KubernetesClusterProfileWorkflowInfoArray{
    				&intersight.KubernetesClusterProfileWorkflowInfoArgs{
    					ObjectType: pulumi.String("workflow.WorkflowInfo"),
    					Moid:       pulumi.String(workflowWorkflowInfo),
    				},
    			},
    		})
    		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 workflowWorkflowInfo = config.Require("workflowWorkflowInfo");
        var kubernetesClusterProfile1 = new Intersight.KubernetesClusterProfile("kubernetesClusterProfile1", new()
        {
            Description = "kubernetes cluster profile",
            Type = "instance",
            Action = "Deploy",
            ConfigContexts = new[]
            {
                new Intersight.Inputs.KubernetesClusterProfileConfigContextArgs
                {
                    ControlAction = "Deploy",
                    ErrorState = "Pre-config-error",
                    ObjectType = "policy.ConfigContext",
                },
            },
            ManagedMode = "Managed",
            Status = "Deploying",
            Organizations = new[]
            {
                new Intersight.Inputs.KubernetesClusterProfileOrganizationArgs
                {
                    ObjectType = "organization.Organization",
                    Moid = @var.Organization,
                },
            },
            WorkflowInfos = new[]
            {
                new Intersight.Inputs.KubernetesClusterProfileWorkflowInfoArgs
                {
                    ObjectType = "workflow.WorkflowInfo",
                    Moid = workflowWorkflowInfo,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.intersight.KubernetesClusterProfile;
    import com.pulumi.intersight.KubernetesClusterProfileArgs;
    import com.pulumi.intersight.inputs.KubernetesClusterProfileConfigContextArgs;
    import com.pulumi.intersight.inputs.KubernetesClusterProfileOrganizationArgs;
    import com.pulumi.intersight.inputs.KubernetesClusterProfileWorkflowInfoArgs;
    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 workflowWorkflowInfo = config.get("workflowWorkflowInfo");
            var kubernetesClusterProfile1 = new KubernetesClusterProfile("kubernetesClusterProfile1", KubernetesClusterProfileArgs.builder()
                .description("kubernetes cluster profile")
                .type("instance")
                .action("Deploy")
                .configContexts(KubernetesClusterProfileConfigContextArgs.builder()
                    .controlAction("Deploy")
                    .errorState("Pre-config-error")
                    .objectType("policy.ConfigContext")
                    .build())
                .managedMode("Managed")
                .status("Deploying")
                .organizations(KubernetesClusterProfileOrganizationArgs.builder()
                    .objectType("organization.Organization")
                    .moid(var_.organization())
                    .build())
                .workflowInfos(KubernetesClusterProfileWorkflowInfoArgs.builder()
                    .objectType("workflow.WorkflowInfo")
                    .moid(workflowWorkflowInfo)
                    .build())
                .build());
    
        }
    }
    
    configuration:
      workflowWorkflowInfo:
        type: string
    resources:
      kubernetesClusterProfile1:
        type: intersight:KubernetesClusterProfile
        properties:
          description: kubernetes cluster profile
          type: instance
          action: Deploy
          configContexts:
            - controlAction: Deploy
              errorState: Pre-config-error
              objectType: policy.ConfigContext
          managedMode: Managed
          status: Deploying
          organizations:
            - objectType: organization.Organization
              moid: ${var.organization}
          workflowInfos:
            - objectType: workflow.WorkflowInfo
              moid: ${workflowWorkflowInfo}
    

    Create KubernetesClusterProfile Resource

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

    Constructor syntax

    new KubernetesClusterProfile(name: string, args?: KubernetesClusterProfileArgs, opts?: CustomResourceOptions);
    @overload
    def KubernetesClusterProfile(resource_name: str,
                                 args: Optional[KubernetesClusterProfileArgs] = None,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def KubernetesClusterProfile(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 account_moid: Optional[str] = None,
                                 aci_cni_profiles: Optional[Sequence[KubernetesClusterProfileAciCniProfileArgs]] = None,
                                 action: Optional[str] = None,
                                 action_infos: Optional[Sequence[KubernetesClusterProfileActionInfoArgs]] = None,
                                 action_params: Optional[Sequence[KubernetesClusterProfileActionParamArgs]] = None,
                                 additional_properties: Optional[str] = None,
                                 ancestors: Optional[Sequence[KubernetesClusterProfileAncestorArgs]] = None,
                                 associated_clusters: Optional[Sequence[KubernetesClusterProfileAssociatedClusterArgs]] = None,
                                 cert_configs: Optional[Sequence[KubernetesClusterProfileCertConfigArgs]] = None,
                                 class_id: Optional[str] = None,
                                 cluster_ip_pools: Optional[Sequence[KubernetesClusterProfileClusterIpPoolArgs]] = None,
                                 config_contexts: Optional[Sequence[KubernetesClusterProfileConfigContextArgs]] = None,
                                 container_runtime_configs: Optional[Sequence[KubernetesClusterProfileContainerRuntimeConfigArgs]] = None,
                                 container_runtime_proxy_policies: Optional[Sequence[KubernetesClusterProfileContainerRuntimeProxyPolicyArgs]] = None,
                                 create_time: Optional[str] = None,
                                 deployed_policies: Optional[Sequence[str]] = None,
                                 description: Optional[str] = None,
                                 device_connector_proxy_policies: Optional[Sequence[KubernetesClusterProfileDeviceConnectorProxyPolicyArgs]] = None,
                                 domain_group_moid: Optional[str] = None,
                                 essential_addons: Optional[Sequence[KubernetesClusterProfileEssentialAddonArgs]] = None,
                                 kube_configs: Optional[Sequence[KubernetesClusterProfileKubeConfigArgs]] = None,
                                 kubernetes_cluster_profile_id: Optional[str] = None,
                                 loadbalancer_block_ip_leases: Optional[Sequence[KubernetesClusterProfileLoadbalancerBlockIpLeaseArgs]] = None,
                                 loadbalancer_ip_leases: Optional[Sequence[KubernetesClusterProfileLoadbalancerIpLeaseArgs]] = None,
                                 managed_mode: Optional[str] = None,
                                 management_configs: Optional[Sequence[KubernetesClusterProfileManagementConfigArgs]] = None,
                                 master_vip_leases: Optional[Sequence[KubernetesClusterProfileMasterVipLeaseArgs]] = None,
                                 mod_time: Optional[str] = None,
                                 moid: Optional[str] = None,
                                 name: Optional[str] = None,
                                 net_configs: Optional[Sequence[KubernetesClusterProfileNetConfigArgs]] = None,
                                 node_groups: Optional[Sequence[KubernetesClusterProfileNodeGroupArgs]] = None,
                                 object_type: Optional[str] = None,
                                 organizations: Optional[Sequence[KubernetesClusterProfileOrganizationArgs]] = None,
                                 owners: Optional[Sequence[str]] = None,
                                 parent_solution_profiles: Optional[Sequence[KubernetesClusterProfileParentSolutionProfileArgs]] = None,
                                 parents: Optional[Sequence[KubernetesClusterProfileParentArgs]] = None,
                                 permission_resources: Optional[Sequence[KubernetesClusterProfilePermissionResourceArgs]] = None,
                                 policy_buckets: Optional[Sequence[KubernetesClusterProfilePolicyBucketArgs]] = None,
                                 removed_policies: Optional[Sequence[str]] = None,
                                 scheduled_actions: Optional[Sequence[KubernetesClusterProfileScheduledActionArgs]] = None,
                                 shared_scope: Optional[str] = None,
                                 src_templates: Optional[Sequence[KubernetesClusterProfileSrcTemplateArgs]] = None,
                                 status: Optional[str] = None,
                                 sys_configs: Optional[Sequence[KubernetesClusterProfileSysConfigArgs]] = None,
                                 tags: Optional[Sequence[KubernetesClusterProfileTagArgs]] = None,
                                 trusted_registries: Optional[Sequence[KubernetesClusterProfileTrustedRegistryArgs]] = None,
                                 type: Optional[str] = None,
                                 version_contexts: Optional[Sequence[KubernetesClusterProfileVersionContextArgs]] = None,
                                 wait_for_completion: Optional[bool] = None,
                                 workflow_infos: Optional[Sequence[KubernetesClusterProfileWorkflowInfoArgs]] = None)
    func NewKubernetesClusterProfile(ctx *Context, name string, args *KubernetesClusterProfileArgs, opts ...ResourceOption) (*KubernetesClusterProfile, error)
    public KubernetesClusterProfile(string name, KubernetesClusterProfileArgs? args = null, CustomResourceOptions? opts = null)
    public KubernetesClusterProfile(String name, KubernetesClusterProfileArgs args)
    public KubernetesClusterProfile(String name, KubernetesClusterProfileArgs args, CustomResourceOptions options)
    
    type: intersight:KubernetesClusterProfile
    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 KubernetesClusterProfileArgs
    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 KubernetesClusterProfileArgs
    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 KubernetesClusterProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KubernetesClusterProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KubernetesClusterProfileArgs
    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 kubernetesClusterProfileResource = new Intersight.KubernetesClusterProfile("kubernetesClusterProfileResource", new()
    {
        AccountMoid = "string",
        AciCniProfiles = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileAciCniProfileArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Action = "string",
        ActionInfos = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileActionInfoArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                FailureReason = "string",
                Name = "string",
                ObjectType = "string",
                Status = "string",
            },
        },
        ActionParams = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileActionParamArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Name = "string",
                ObjectType = "string",
                Value = "string",
            },
        },
        AdditionalProperties = "string",
        Ancestors = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileAncestorArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        AssociatedClusters = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileAssociatedClusterArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        CertConfigs = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileCertConfigArgs
            {
                AdditionalProperties = "string",
                CaCert = "string",
                CaKey = "string",
                ClassId = "string",
                EtcdCert = "string",
                EtcdEncryptionKeys = new[]
                {
                    "string",
                },
                EtcdKey = "string",
                FrontProxyCert = "string",
                FrontProxyKey = "string",
                ObjectType = "string",
                SaPrivateKey = "string",
                SaPublicKey = "string",
            },
        },
        ClassId = "string",
        ClusterIpPools = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileClusterIpPoolArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ConfigContexts = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileConfigContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                ConfigState = "string",
                ConfigStateSummary = "string",
                ConfigType = "string",
                ControlAction = "string",
                ErrorState = "string",
                InconsistencyReasons = new[]
                {
                    "string",
                },
                ObjectType = "string",
                OperState = "string",
            },
        },
        ContainerRuntimeConfigs = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileContainerRuntimeConfigArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ContainerRuntimeProxyPolicies = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileContainerRuntimeProxyPolicyArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        CreateTime = "string",
        DeployedPolicies = new[]
        {
            "string",
        },
        Description = "string",
        DeviceConnectorProxyPolicies = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileDeviceConnectorProxyPolicyArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        DomainGroupMoid = "string",
        EssentialAddons = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileEssentialAddonArgs
            {
                AdditionalProperties = "string",
                AddonConfigurations = new[]
                {
                    new Intersight.Inputs.KubernetesClusterProfileEssentialAddonAddonConfigurationArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        InstallStrategy = "string",
                        ObjectType = "string",
                        OverrideSets = new[]
                        {
                            new Intersight.Inputs.KubernetesClusterProfileEssentialAddonAddonConfigurationOverrideSetArgs
                            {
                                AdditionalProperties = "string",
                                ClassId = "string",
                                Key = "string",
                                ObjectType = "string",
                                Value = "string",
                            },
                        },
                        Overrides = "string",
                        ReleaseName = "string",
                        ReleaseNamespace = "string",
                        UpgradeStrategy = "string",
                    },
                },
                AddonDefinitions = new[]
                {
                    new Intersight.Inputs.KubernetesClusterProfileEssentialAddonAddonDefinitionArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                ClassId = "string",
                Name = "string",
                ObjectType = "string",
            },
        },
        KubeConfigs = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileKubeConfigArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                KubeConfig = "string",
                ObjectType = "string",
            },
        },
        KubernetesClusterProfileId = "string",
        LoadbalancerBlockIpLeases = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileLoadbalancerBlockIpLeaseArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        LoadbalancerIpLeases = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileLoadbalancerIpLeaseArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ManagedMode = "string",
        ManagementConfigs = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileManagementConfigArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                IsTacPasswdSet = false,
                LoadBalancerCount = 0,
                LoadBalancers = new[]
                {
                    "string",
                },
                MasterVip = "string",
                ObjectType = "string",
                SshKeys = new[]
                {
                    "string",
                },
                SshUser = "string",
                TacPasswd = "string",
            },
        },
        MasterVipLeases = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileMasterVipLeaseArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ModTime = "string",
        Moid = "string",
        Name = "string",
        NetConfigs = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileNetConfigArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        NodeGroups = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileNodeGroupArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ObjectType = "string",
        Organizations = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileOrganizationArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Owners = new[]
        {
            "string",
        },
        ParentSolutionProfiles = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileParentSolutionProfileArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Parents = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileParentArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PermissionResources = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfilePermissionResourceArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PolicyBuckets = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfilePolicyBucketArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        RemovedPolicies = new[]
        {
            "string",
        },
        ScheduledActions = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileScheduledActionArgs
            {
                Action = "string",
                ActionQualifiers = new[]
                {
                    new Intersight.Inputs.KubernetesClusterProfileScheduledActionActionQualifierArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        ObjectType = "string",
                    },
                },
                AdditionalProperties = "string",
                ClassId = "string",
                ObjectType = "string",
                ProceedOnReboot = false,
            },
        },
        SharedScope = "string",
        SrcTemplates = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileSrcTemplateArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Status = "string",
        SysConfigs = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileSysConfigArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Tags = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileTagArgs
            {
                AdditionalProperties = "string",
                Key = "string",
                Value = "string",
            },
        },
        TrustedRegistries = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileTrustedRegistryArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Type = "string",
        VersionContexts = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileVersionContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                InterestedMos = new[]
                {
                    new Intersight.Inputs.KubernetesClusterProfileVersionContextInterestedMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                MarkedForDeletion = false,
                NrVersion = "string",
                ObjectType = "string",
                RefMos = new[]
                {
                    new Intersight.Inputs.KubernetesClusterProfileVersionContextRefMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                Timestamp = "string",
                VersionType = "string",
            },
        },
        WaitForCompletion = false,
        WorkflowInfos = new[]
        {
            new Intersight.Inputs.KubernetesClusterProfileWorkflowInfoArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
    });
    
    example, err := intersight.NewKubernetesClusterProfile(ctx, "kubernetesClusterProfileResource", &intersight.KubernetesClusterProfileArgs{
    	AccountMoid: pulumi.String("string"),
    	AciCniProfiles: intersight.KubernetesClusterProfileAciCniProfileArray{
    		&intersight.KubernetesClusterProfileAciCniProfileArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Action: pulumi.String("string"),
    	ActionInfos: intersight.KubernetesClusterProfileActionInfoArray{
    		&intersight.KubernetesClusterProfileActionInfoArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			FailureReason:        pulumi.String("string"),
    			Name:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Status:               pulumi.String("string"),
    		},
    	},
    	ActionParams: intersight.KubernetesClusterProfileActionParamArray{
    		&intersight.KubernetesClusterProfileActionParamArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Name:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Value:                pulumi.String("string"),
    		},
    	},
    	AdditionalProperties: pulumi.String("string"),
    	Ancestors: intersight.KubernetesClusterProfileAncestorArray{
    		&intersight.KubernetesClusterProfileAncestorArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	AssociatedClusters: intersight.KubernetesClusterProfileAssociatedClusterArray{
    		&intersight.KubernetesClusterProfileAssociatedClusterArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	CertConfigs: intersight.KubernetesClusterProfileCertConfigArray{
    		&intersight.KubernetesClusterProfileCertConfigArgs{
    			AdditionalProperties: pulumi.String("string"),
    			CaCert:               pulumi.String("string"),
    			CaKey:                pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			EtcdCert:             pulumi.String("string"),
    			EtcdEncryptionKeys: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			EtcdKey:        pulumi.String("string"),
    			FrontProxyCert: pulumi.String("string"),
    			FrontProxyKey:  pulumi.String("string"),
    			ObjectType:     pulumi.String("string"),
    			SaPrivateKey:   pulumi.String("string"),
    			SaPublicKey:    pulumi.String("string"),
    		},
    	},
    	ClassId: pulumi.String("string"),
    	ClusterIpPools: intersight.KubernetesClusterProfileClusterIpPoolArray{
    		&intersight.KubernetesClusterProfileClusterIpPoolArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ConfigContexts: intersight.KubernetesClusterProfileConfigContextArray{
    		&intersight.KubernetesClusterProfileConfigContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			ConfigState:          pulumi.String("string"),
    			ConfigStateSummary:   pulumi.String("string"),
    			ConfigType:           pulumi.String("string"),
    			ControlAction:        pulumi.String("string"),
    			ErrorState:           pulumi.String("string"),
    			InconsistencyReasons: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ObjectType: pulumi.String("string"),
    			OperState:  pulumi.String("string"),
    		},
    	},
    	ContainerRuntimeConfigs: intersight.KubernetesClusterProfileContainerRuntimeConfigArray{
    		&intersight.KubernetesClusterProfileContainerRuntimeConfigArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ContainerRuntimeProxyPolicies: intersight.KubernetesClusterProfileContainerRuntimeProxyPolicyArray{
    		&intersight.KubernetesClusterProfileContainerRuntimeProxyPolicyArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	CreateTime: pulumi.String("string"),
    	DeployedPolicies: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	DeviceConnectorProxyPolicies: intersight.KubernetesClusterProfileDeviceConnectorProxyPolicyArray{
    		&intersight.KubernetesClusterProfileDeviceConnectorProxyPolicyArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	DomainGroupMoid: pulumi.String("string"),
    	EssentialAddons: intersight.KubernetesClusterProfileEssentialAddonArray{
    		&intersight.KubernetesClusterProfileEssentialAddonArgs{
    			AdditionalProperties: pulumi.String("string"),
    			AddonConfigurations: intersight.KubernetesClusterProfileEssentialAddonAddonConfigurationArray{
    				&intersight.KubernetesClusterProfileEssentialAddonAddonConfigurationArgs{
    					AdditionalProperties: pulumi.String("string"),
    					ClassId:              pulumi.String("string"),
    					InstallStrategy:      pulumi.String("string"),
    					ObjectType:           pulumi.String("string"),
    					OverrideSets: intersight.KubernetesClusterProfileEssentialAddonAddonConfigurationOverrideSetArray{
    						&intersight.KubernetesClusterProfileEssentialAddonAddonConfigurationOverrideSetArgs{
    							AdditionalProperties: pulumi.String("string"),
    							ClassId:              pulumi.String("string"),
    							Key:                  pulumi.String("string"),
    							ObjectType:           pulumi.String("string"),
    							Value:                pulumi.String("string"),
    						},
    					},
    					Overrides:        pulumi.String("string"),
    					ReleaseName:      pulumi.String("string"),
    					ReleaseNamespace: pulumi.String("string"),
    					UpgradeStrategy:  pulumi.String("string"),
    				},
    			},
    			AddonDefinitions: intersight.KubernetesClusterProfileEssentialAddonAddonDefinitionArray{
    				&intersight.KubernetesClusterProfileEssentialAddonAddonDefinitionArgs{
    					AdditionalProperties: pulumi.String("string"),
    					ClassId:              pulumi.String("string"),
    					Moid:                 pulumi.String("string"),
    					ObjectType:           pulumi.String("string"),
    					Selector:             pulumi.String("string"),
    				},
    			},
    			ClassId:    pulumi.String("string"),
    			Name:       pulumi.String("string"),
    			ObjectType: pulumi.String("string"),
    		},
    	},
    	KubeConfigs: intersight.KubernetesClusterProfileKubeConfigArray{
    		&intersight.KubernetesClusterProfileKubeConfigArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			KubeConfig:           pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    		},
    	},
    	KubernetesClusterProfileId: pulumi.String("string"),
    	LoadbalancerBlockIpLeases: intersight.KubernetesClusterProfileLoadbalancerBlockIpLeaseArray{
    		&intersight.KubernetesClusterProfileLoadbalancerBlockIpLeaseArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	LoadbalancerIpLeases: intersight.KubernetesClusterProfileLoadbalancerIpLeaseArray{
    		&intersight.KubernetesClusterProfileLoadbalancerIpLeaseArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ManagedMode: pulumi.String("string"),
    	ManagementConfigs: intersight.KubernetesClusterProfileManagementConfigArray{
    		&intersight.KubernetesClusterProfileManagementConfigArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			IsTacPasswdSet:       pulumi.Bool(false),
    			LoadBalancerCount:    pulumi.Float64(0),
    			LoadBalancers: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			MasterVip:  pulumi.String("string"),
    			ObjectType: pulumi.String("string"),
    			SshKeys: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			SshUser:   pulumi.String("string"),
    			TacPasswd: pulumi.String("string"),
    		},
    	},
    	MasterVipLeases: intersight.KubernetesClusterProfileMasterVipLeaseArray{
    		&intersight.KubernetesClusterProfileMasterVipLeaseArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ModTime: pulumi.String("string"),
    	Moid:    pulumi.String("string"),
    	Name:    pulumi.String("string"),
    	NetConfigs: intersight.KubernetesClusterProfileNetConfigArray{
    		&intersight.KubernetesClusterProfileNetConfigArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	NodeGroups: intersight.KubernetesClusterProfileNodeGroupArray{
    		&intersight.KubernetesClusterProfileNodeGroupArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ObjectType: pulumi.String("string"),
    	Organizations: intersight.KubernetesClusterProfileOrganizationArray{
    		&intersight.KubernetesClusterProfileOrganizationArgs{
    			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"),
    	},
    	ParentSolutionProfiles: intersight.KubernetesClusterProfileParentSolutionProfileArray{
    		&intersight.KubernetesClusterProfileParentSolutionProfileArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Parents: intersight.KubernetesClusterProfileParentArray{
    		&intersight.KubernetesClusterProfileParentArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PermissionResources: intersight.KubernetesClusterProfilePermissionResourceArray{
    		&intersight.KubernetesClusterProfilePermissionResourceArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PolicyBuckets: intersight.KubernetesClusterProfilePolicyBucketArray{
    		&intersight.KubernetesClusterProfilePolicyBucketArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	RemovedPolicies: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ScheduledActions: intersight.KubernetesClusterProfileScheduledActionArray{
    		&intersight.KubernetesClusterProfileScheduledActionArgs{
    			Action: pulumi.String("string"),
    			ActionQualifiers: intersight.KubernetesClusterProfileScheduledActionActionQualifierArray{
    				&intersight.KubernetesClusterProfileScheduledActionActionQualifierArgs{
    					AdditionalProperties: pulumi.String("string"),
    					ClassId:              pulumi.String("string"),
    					ObjectType:           pulumi.String("string"),
    				},
    			},
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			ProceedOnReboot:      pulumi.Bool(false),
    		},
    	},
    	SharedScope: pulumi.String("string"),
    	SrcTemplates: intersight.KubernetesClusterProfileSrcTemplateArray{
    		&intersight.KubernetesClusterProfileSrcTemplateArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Status: pulumi.String("string"),
    	SysConfigs: intersight.KubernetesClusterProfileSysConfigArray{
    		&intersight.KubernetesClusterProfileSysConfigArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Tags: intersight.KubernetesClusterProfileTagArray{
    		&intersight.KubernetesClusterProfileTagArgs{
    			AdditionalProperties: pulumi.String("string"),
    			Key:                  pulumi.String("string"),
    			Value:                pulumi.String("string"),
    		},
    	},
    	TrustedRegistries: intersight.KubernetesClusterProfileTrustedRegistryArray{
    		&intersight.KubernetesClusterProfileTrustedRegistryArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Type: pulumi.String("string"),
    	VersionContexts: intersight.KubernetesClusterProfileVersionContextArray{
    		&intersight.KubernetesClusterProfileVersionContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			InterestedMos: intersight.KubernetesClusterProfileVersionContextInterestedMoArray{
    				&intersight.KubernetesClusterProfileVersionContextInterestedMoArgs{
    					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.KubernetesClusterProfileVersionContextRefMoArray{
    				&intersight.KubernetesClusterProfileVersionContextRefMoArgs{
    					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"),
    		},
    	},
    	WaitForCompletion: pulumi.Bool(false),
    	WorkflowInfos: intersight.KubernetesClusterProfileWorkflowInfoArray{
    		&intersight.KubernetesClusterProfileWorkflowInfoArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    })
    
    var kubernetesClusterProfileResource = new KubernetesClusterProfile("kubernetesClusterProfileResource", KubernetesClusterProfileArgs.builder()
        .accountMoid("string")
        .aciCniProfiles(KubernetesClusterProfileAciCniProfileArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .action("string")
        .actionInfos(KubernetesClusterProfileActionInfoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .failureReason("string")
            .name("string")
            .objectType("string")
            .status("string")
            .build())
        .actionParams(KubernetesClusterProfileActionParamArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .name("string")
            .objectType("string")
            .value("string")
            .build())
        .additionalProperties("string")
        .ancestors(KubernetesClusterProfileAncestorArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .associatedClusters(KubernetesClusterProfileAssociatedClusterArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .certConfigs(KubernetesClusterProfileCertConfigArgs.builder()
            .additionalProperties("string")
            .caCert("string")
            .caKey("string")
            .classId("string")
            .etcdCert("string")
            .etcdEncryptionKeys("string")
            .etcdKey("string")
            .frontProxyCert("string")
            .frontProxyKey("string")
            .objectType("string")
            .saPrivateKey("string")
            .saPublicKey("string")
            .build())
        .classId("string")
        .clusterIpPools(KubernetesClusterProfileClusterIpPoolArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .configContexts(KubernetesClusterProfileConfigContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .configState("string")
            .configStateSummary("string")
            .configType("string")
            .controlAction("string")
            .errorState("string")
            .inconsistencyReasons("string")
            .objectType("string")
            .operState("string")
            .build())
        .containerRuntimeConfigs(KubernetesClusterProfileContainerRuntimeConfigArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .containerRuntimeProxyPolicies(KubernetesClusterProfileContainerRuntimeProxyPolicyArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .createTime("string")
        .deployedPolicies("string")
        .description("string")
        .deviceConnectorProxyPolicies(KubernetesClusterProfileDeviceConnectorProxyPolicyArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .domainGroupMoid("string")
        .essentialAddons(KubernetesClusterProfileEssentialAddonArgs.builder()
            .additionalProperties("string")
            .addonConfigurations(KubernetesClusterProfileEssentialAddonAddonConfigurationArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .installStrategy("string")
                .objectType("string")
                .overrideSets(KubernetesClusterProfileEssentialAddonAddonConfigurationOverrideSetArgs.builder()
                    .additionalProperties("string")
                    .classId("string")
                    .key("string")
                    .objectType("string")
                    .value("string")
                    .build())
                .overrides("string")
                .releaseName("string")
                .releaseNamespace("string")
                .upgradeStrategy("string")
                .build())
            .addonDefinitions(KubernetesClusterProfileEssentialAddonAddonDefinitionArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .classId("string")
            .name("string")
            .objectType("string")
            .build())
        .kubeConfigs(KubernetesClusterProfileKubeConfigArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .kubeConfig("string")
            .objectType("string")
            .build())
        .kubernetesClusterProfileId("string")
        .loadbalancerBlockIpLeases(KubernetesClusterProfileLoadbalancerBlockIpLeaseArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .loadbalancerIpLeases(KubernetesClusterProfileLoadbalancerIpLeaseArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .managedMode("string")
        .managementConfigs(KubernetesClusterProfileManagementConfigArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .isTacPasswdSet(false)
            .loadBalancerCount(0)
            .loadBalancers("string")
            .masterVip("string")
            .objectType("string")
            .sshKeys("string")
            .sshUser("string")
            .tacPasswd("string")
            .build())
        .masterVipLeases(KubernetesClusterProfileMasterVipLeaseArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .modTime("string")
        .moid("string")
        .name("string")
        .netConfigs(KubernetesClusterProfileNetConfigArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .nodeGroups(KubernetesClusterProfileNodeGroupArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .objectType("string")
        .organizations(KubernetesClusterProfileOrganizationArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .owners("string")
        .parentSolutionProfiles(KubernetesClusterProfileParentSolutionProfileArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .parents(KubernetesClusterProfileParentArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .permissionResources(KubernetesClusterProfilePermissionResourceArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .policyBuckets(KubernetesClusterProfilePolicyBucketArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .removedPolicies("string")
        .scheduledActions(KubernetesClusterProfileScheduledActionArgs.builder()
            .action("string")
            .actionQualifiers(KubernetesClusterProfileScheduledActionActionQualifierArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .objectType("string")
                .build())
            .additionalProperties("string")
            .classId("string")
            .objectType("string")
            .proceedOnReboot(false)
            .build())
        .sharedScope("string")
        .srcTemplates(KubernetesClusterProfileSrcTemplateArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .status("string")
        .sysConfigs(KubernetesClusterProfileSysConfigArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .tags(KubernetesClusterProfileTagArgs.builder()
            .additionalProperties("string")
            .key("string")
            .value("string")
            .build())
        .trustedRegistries(KubernetesClusterProfileTrustedRegistryArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .type("string")
        .versionContexts(KubernetesClusterProfileVersionContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .interestedMos(KubernetesClusterProfileVersionContextInterestedMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .markedForDeletion(false)
            .nrVersion("string")
            .objectType("string")
            .refMos(KubernetesClusterProfileVersionContextRefMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .timestamp("string")
            .versionType("string")
            .build())
        .waitForCompletion(false)
        .workflowInfos(KubernetesClusterProfileWorkflowInfoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .build());
    
    kubernetes_cluster_profile_resource = intersight.KubernetesClusterProfile("kubernetesClusterProfileResource",
        account_moid="string",
        aci_cni_profiles=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        action="string",
        action_infos=[{
            "additional_properties": "string",
            "class_id": "string",
            "failure_reason": "string",
            "name": "string",
            "object_type": "string",
            "status": "string",
        }],
        action_params=[{
            "additional_properties": "string",
            "class_id": "string",
            "name": "string",
            "object_type": "string",
            "value": "string",
        }],
        additional_properties="string",
        ancestors=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        associated_clusters=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        cert_configs=[{
            "additional_properties": "string",
            "ca_cert": "string",
            "ca_key": "string",
            "class_id": "string",
            "etcd_cert": "string",
            "etcd_encryption_keys": ["string"],
            "etcd_key": "string",
            "front_proxy_cert": "string",
            "front_proxy_key": "string",
            "object_type": "string",
            "sa_private_key": "string",
            "sa_public_key": "string",
        }],
        class_id="string",
        cluster_ip_pools=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        config_contexts=[{
            "additional_properties": "string",
            "class_id": "string",
            "config_state": "string",
            "config_state_summary": "string",
            "config_type": "string",
            "control_action": "string",
            "error_state": "string",
            "inconsistency_reasons": ["string"],
            "object_type": "string",
            "oper_state": "string",
        }],
        container_runtime_configs=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        container_runtime_proxy_policies=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        create_time="string",
        deployed_policies=["string"],
        description="string",
        device_connector_proxy_policies=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        domain_group_moid="string",
        essential_addons=[{
            "additional_properties": "string",
            "addon_configurations": [{
                "additional_properties": "string",
                "class_id": "string",
                "install_strategy": "string",
                "object_type": "string",
                "override_sets": [{
                    "additional_properties": "string",
                    "class_id": "string",
                    "key": "string",
                    "object_type": "string",
                    "value": "string",
                }],
                "overrides": "string",
                "release_name": "string",
                "release_namespace": "string",
                "upgrade_strategy": "string",
            }],
            "addon_definitions": [{
                "additional_properties": "string",
                "class_id": "string",
                "moid": "string",
                "object_type": "string",
                "selector": "string",
            }],
            "class_id": "string",
            "name": "string",
            "object_type": "string",
        }],
        kube_configs=[{
            "additional_properties": "string",
            "class_id": "string",
            "kube_config": "string",
            "object_type": "string",
        }],
        kubernetes_cluster_profile_id="string",
        loadbalancer_block_ip_leases=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        loadbalancer_ip_leases=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        managed_mode="string",
        management_configs=[{
            "additional_properties": "string",
            "class_id": "string",
            "is_tac_passwd_set": False,
            "load_balancer_count": 0,
            "load_balancers": ["string"],
            "master_vip": "string",
            "object_type": "string",
            "ssh_keys": ["string"],
            "ssh_user": "string",
            "tac_passwd": "string",
        }],
        master_vip_leases=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        mod_time="string",
        moid="string",
        name="string",
        net_configs=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        node_groups=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        object_type="string",
        organizations=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        owners=["string"],
        parent_solution_profiles=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "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",
        }],
        policy_buckets=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        removed_policies=["string"],
        scheduled_actions=[{
            "action": "string",
            "action_qualifiers": [{
                "additional_properties": "string",
                "class_id": "string",
                "object_type": "string",
            }],
            "additional_properties": "string",
            "class_id": "string",
            "object_type": "string",
            "proceed_on_reboot": False,
        }],
        shared_scope="string",
        src_templates=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        status="string",
        sys_configs=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        tags=[{
            "additional_properties": "string",
            "key": "string",
            "value": "string",
        }],
        trusted_registries=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "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",
        }],
        wait_for_completion=False,
        workflow_infos=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }])
    
    const kubernetesClusterProfileResource = new intersight.KubernetesClusterProfile("kubernetesClusterProfileResource", {
        accountMoid: "string",
        aciCniProfiles: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        action: "string",
        actionInfos: [{
            additionalProperties: "string",
            classId: "string",
            failureReason: "string",
            name: "string",
            objectType: "string",
            status: "string",
        }],
        actionParams: [{
            additionalProperties: "string",
            classId: "string",
            name: "string",
            objectType: "string",
            value: "string",
        }],
        additionalProperties: "string",
        ancestors: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        associatedClusters: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        certConfigs: [{
            additionalProperties: "string",
            caCert: "string",
            caKey: "string",
            classId: "string",
            etcdCert: "string",
            etcdEncryptionKeys: ["string"],
            etcdKey: "string",
            frontProxyCert: "string",
            frontProxyKey: "string",
            objectType: "string",
            saPrivateKey: "string",
            saPublicKey: "string",
        }],
        classId: "string",
        clusterIpPools: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        configContexts: [{
            additionalProperties: "string",
            classId: "string",
            configState: "string",
            configStateSummary: "string",
            configType: "string",
            controlAction: "string",
            errorState: "string",
            inconsistencyReasons: ["string"],
            objectType: "string",
            operState: "string",
        }],
        containerRuntimeConfigs: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        containerRuntimeProxyPolicies: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        createTime: "string",
        deployedPolicies: ["string"],
        description: "string",
        deviceConnectorProxyPolicies: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        domainGroupMoid: "string",
        essentialAddons: [{
            additionalProperties: "string",
            addonConfigurations: [{
                additionalProperties: "string",
                classId: "string",
                installStrategy: "string",
                objectType: "string",
                overrideSets: [{
                    additionalProperties: "string",
                    classId: "string",
                    key: "string",
                    objectType: "string",
                    value: "string",
                }],
                overrides: "string",
                releaseName: "string",
                releaseNamespace: "string",
                upgradeStrategy: "string",
            }],
            addonDefinitions: [{
                additionalProperties: "string",
                classId: "string",
                moid: "string",
                objectType: "string",
                selector: "string",
            }],
            classId: "string",
            name: "string",
            objectType: "string",
        }],
        kubeConfigs: [{
            additionalProperties: "string",
            classId: "string",
            kubeConfig: "string",
            objectType: "string",
        }],
        kubernetesClusterProfileId: "string",
        loadbalancerBlockIpLeases: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        loadbalancerIpLeases: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        managedMode: "string",
        managementConfigs: [{
            additionalProperties: "string",
            classId: "string",
            isTacPasswdSet: false,
            loadBalancerCount: 0,
            loadBalancers: ["string"],
            masterVip: "string",
            objectType: "string",
            sshKeys: ["string"],
            sshUser: "string",
            tacPasswd: "string",
        }],
        masterVipLeases: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        modTime: "string",
        moid: "string",
        name: "string",
        netConfigs: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        nodeGroups: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        objectType: "string",
        organizations: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        owners: ["string"],
        parentSolutionProfiles: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        parents: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        permissionResources: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        policyBuckets: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        removedPolicies: ["string"],
        scheduledActions: [{
            action: "string",
            actionQualifiers: [{
                additionalProperties: "string",
                classId: "string",
                objectType: "string",
            }],
            additionalProperties: "string",
            classId: "string",
            objectType: "string",
            proceedOnReboot: false,
        }],
        sharedScope: "string",
        srcTemplates: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        status: "string",
        sysConfigs: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        tags: [{
            additionalProperties: "string",
            key: "string",
            value: "string",
        }],
        trustedRegistries: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "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",
        }],
        waitForCompletion: false,
        workflowInfos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
    });
    
    type: intersight:KubernetesClusterProfile
    properties:
        accountMoid: string
        aciCniProfiles:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        action: string
        actionInfos:
            - additionalProperties: string
              classId: string
              failureReason: string
              name: string
              objectType: string
              status: string
        actionParams:
            - additionalProperties: string
              classId: string
              name: string
              objectType: string
              value: string
        additionalProperties: string
        ancestors:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        associatedClusters:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        certConfigs:
            - additionalProperties: string
              caCert: string
              caKey: string
              classId: string
              etcdCert: string
              etcdEncryptionKeys:
                - string
              etcdKey: string
              frontProxyCert: string
              frontProxyKey: string
              objectType: string
              saPrivateKey: string
              saPublicKey: string
        classId: string
        clusterIpPools:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        configContexts:
            - additionalProperties: string
              classId: string
              configState: string
              configStateSummary: string
              configType: string
              controlAction: string
              errorState: string
              inconsistencyReasons:
                - string
              objectType: string
              operState: string
        containerRuntimeConfigs:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        containerRuntimeProxyPolicies:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        createTime: string
        deployedPolicies:
            - string
        description: string
        deviceConnectorProxyPolicies:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        domainGroupMoid: string
        essentialAddons:
            - additionalProperties: string
              addonConfigurations:
                - additionalProperties: string
                  classId: string
                  installStrategy: string
                  objectType: string
                  overrideSets:
                    - additionalProperties: string
                      classId: string
                      key: string
                      objectType: string
                      value: string
                  overrides: string
                  releaseName: string
                  releaseNamespace: string
                  upgradeStrategy: string
              addonDefinitions:
                - additionalProperties: string
                  classId: string
                  moid: string
                  objectType: string
                  selector: string
              classId: string
              name: string
              objectType: string
        kubeConfigs:
            - additionalProperties: string
              classId: string
              kubeConfig: string
              objectType: string
        kubernetesClusterProfileId: string
        loadbalancerBlockIpLeases:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        loadbalancerIpLeases:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        managedMode: string
        managementConfigs:
            - additionalProperties: string
              classId: string
              isTacPasswdSet: false
              loadBalancerCount: 0
              loadBalancers:
                - string
              masterVip: string
              objectType: string
              sshKeys:
                - string
              sshUser: string
              tacPasswd: string
        masterVipLeases:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        modTime: string
        moid: string
        name: string
        netConfigs:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        nodeGroups:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        objectType: string
        organizations:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        owners:
            - string
        parentSolutionProfiles:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        parents:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        permissionResources:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        policyBuckets:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        removedPolicies:
            - string
        scheduledActions:
            - action: string
              actionQualifiers:
                - additionalProperties: string
                  classId: string
                  objectType: string
              additionalProperties: string
              classId: string
              objectType: string
              proceedOnReboot: false
        sharedScope: string
        srcTemplates:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        status: string
        sysConfigs:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        tags:
            - additionalProperties: string
              key: string
              value: string
        trustedRegistries:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: 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
        waitForCompletion: false
        workflowInfos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
    

    KubernetesClusterProfile 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 KubernetesClusterProfile resource accepts the following input properties:

    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AciCniProfiles List<KubernetesClusterProfileAciCniProfile>
    (ReadOnly) A reference to a kubernetesAciCniProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Action string
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    ActionInfos List<KubernetesClusterProfileActionInfo>
    (ReadOnly) No longer updated, to see action details such as name of the actionperformed, status, failure reason, etc. look at the ConfigContext and at details of the related workflowInfo. This complex property has following sub-properties:
    ActionParams List<KubernetesClusterProfileActionParam>
    This complex property has following sub-properties:
    AdditionalProperties string
    Ancestors List<KubernetesClusterProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AssociatedClusters List<KubernetesClusterProfileAssociatedCluster>
    (ReadOnly) A reference to a kubernetesCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    CertConfigs List<KubernetesClusterProfileCertConfig>
    Certificates and keys that are used to configure a Kubernetescluster. If user does not specify any Certificates or Keys,system generated certificates will be used to configure the cluster. 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.
    ClusterIpPools List<KubernetesClusterProfileClusterIpPool>
    An array of relationships to ippoolPool resources. This complex property has following sub-properties:
    ConfigContexts List<KubernetesClusterProfileConfigContext>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    ContainerRuntimeConfigs List<KubernetesClusterProfileContainerRuntimeConfig>
    A reference to a kubernetesContainerRuntimePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ContainerRuntimeProxyPolicies List<KubernetesClusterProfileContainerRuntimeProxyPolicy>
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DeployedPolicies List<string>
    (Array of schema.TypeString) -
    Description string
    Description of the profile.
    DeviceConnectorProxyPolicies List<KubernetesClusterProfileDeviceConnectorProxyPolicy>
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    EssentialAddons List<KubernetesClusterProfileEssentialAddon>
    This complex property has following sub-properties:
    KubeConfigs List<KubernetesClusterProfileKubeConfig>
    Certificates and keys that are used to access a Kubernetescluster. This complex property has following sub-properties:
    KubernetesClusterProfileId string
    LoadbalancerBlockIpLeases List<KubernetesClusterProfileLoadbalancerBlockIpLease>
    An array of relationships to ippoolBlockLease resources. This complex property has following sub-properties:
    LoadbalancerIpLeases List<KubernetesClusterProfileLoadbalancerIpLease>
    An array of relationships to ippoolIpLease resources. This complex property has following sub-properties:
    ManagedMode string
    Management mode for the cluster. In some cases Intersight kubernetes service is not requiredto provision and manage the management entities and endpoints (for e.g. EKS). In most other casesit will be required to provision and manage these entities and endpoints.* Provided - Cluster management entities and endpoints are provided by the infrastructure platform.* Managed - Cluster management entities and endpoints are provisioned and managed by Intersight kubernetes service.
    ManagementConfigs List<KubernetesClusterProfileManagementConfig>
    Configuration required for provisioning and management of cluster management entities. Required if'managedMode' is set to 'Managed'. This complex property has following sub-properties:
    MasterVipLeases List<KubernetesClusterProfileMasterVipLease>
    A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    NetConfigs List<KubernetesClusterProfileNetConfig>
    A reference to a kubernetesNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    NodeGroups List<KubernetesClusterProfileNodeGroup>
    An array of relationships to kubernetesNodeGroupProfile resources. This complex property has following sub-properties:
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations List<KubernetesClusterProfileOrganization>
    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)
    ParentSolutionProfiles List<KubernetesClusterProfileParentSolutionProfile>
    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:
    Parents List<KubernetesClusterProfileParent>
    (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<KubernetesClusterProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PolicyBuckets List<KubernetesClusterProfilePolicyBucket>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    RemovedPolicies List<string>
    (Array of schema.TypeString) -
    ScheduledActions List<KubernetesClusterProfileScheduledAction>
    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<KubernetesClusterProfileSrcTemplate>
    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:
    Status string
    Status of the Kubernetes cluster and its nodes.* Undeployed - The cluster is undeployed.* Configuring - The cluster is being configured.* Deploying - The cluster is being deployed.* Undeploying - The cluster is being undeployed.* DeployFailedTerminal - The Cluster Deploy failed creation and can not be recovered, only Delete or Undeploy operations are available for this Cluster.* DeployFailed - The cluster deployment failed.* Upgrading - The cluster is being upgraded.* Deleting - The cluster is being deleted.* DeleteFailed - The Cluster Delete failed and the Cluster can not be recovered, only Delete or Undeploy operations are available for this Cluster.* Ready - The cluster is ready for use.* Active - The cluster is being active.* Shutdown - All the nodes in the cluster are powered off.* Terminated - The cluster is terminated.* Deployed - The cluster is deployed. The cluster may not yet be ready for use.* UndeployFailed - The cluster undeploy action failed.* NotReady - The cluster is created and some nodes are not ready.
    SysConfigs List<KubernetesClusterProfileSysConfig>
    A reference to a kubernetesSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Tags List<KubernetesClusterProfileTag>
    This complex property has following sub-properties:
    TrustedRegistries List<KubernetesClusterProfileTrustedRegistry>
    A reference to a kubernetesTrustedRegistriesPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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<KubernetesClusterProfileVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    WaitForCompletion bool
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    WorkflowInfos List<KubernetesClusterProfileWorkflowInfo>
    (ReadOnly) A reference to a workflowWorkflowInfo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AciCniProfiles []KubernetesClusterProfileAciCniProfileArgs
    (ReadOnly) A reference to a kubernetesAciCniProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Action string
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    ActionInfos []KubernetesClusterProfileActionInfoArgs
    (ReadOnly) No longer updated, to see action details such as name of the actionperformed, status, failure reason, etc. look at the ConfigContext and at details of the related workflowInfo. This complex property has following sub-properties:
    ActionParams []KubernetesClusterProfileActionParamArgs
    This complex property has following sub-properties:
    AdditionalProperties string
    Ancestors []KubernetesClusterProfileAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AssociatedClusters []KubernetesClusterProfileAssociatedClusterArgs
    (ReadOnly) A reference to a kubernetesCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    CertConfigs []KubernetesClusterProfileCertConfigArgs
    Certificates and keys that are used to configure a Kubernetescluster. If user does not specify any Certificates or Keys,system generated certificates will be used to configure the cluster. 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.
    ClusterIpPools []KubernetesClusterProfileClusterIpPoolArgs
    An array of relationships to ippoolPool resources. This complex property has following sub-properties:
    ConfigContexts []KubernetesClusterProfileConfigContextArgs
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    ContainerRuntimeConfigs []KubernetesClusterProfileContainerRuntimeConfigArgs
    A reference to a kubernetesContainerRuntimePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ContainerRuntimeProxyPolicies []KubernetesClusterProfileContainerRuntimeProxyPolicyArgs
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DeployedPolicies []string
    (Array of schema.TypeString) -
    Description string
    Description of the profile.
    DeviceConnectorProxyPolicies []KubernetesClusterProfileDeviceConnectorProxyPolicyArgs
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    EssentialAddons []KubernetesClusterProfileEssentialAddonArgs
    This complex property has following sub-properties:
    KubeConfigs []KubernetesClusterProfileKubeConfigArgs
    Certificates and keys that are used to access a Kubernetescluster. This complex property has following sub-properties:
    KubernetesClusterProfileId string
    LoadbalancerBlockIpLeases []KubernetesClusterProfileLoadbalancerBlockIpLeaseArgs
    An array of relationships to ippoolBlockLease resources. This complex property has following sub-properties:
    LoadbalancerIpLeases []KubernetesClusterProfileLoadbalancerIpLeaseArgs
    An array of relationships to ippoolIpLease resources. This complex property has following sub-properties:
    ManagedMode string
    Management mode for the cluster. In some cases Intersight kubernetes service is not requiredto provision and manage the management entities and endpoints (for e.g. EKS). In most other casesit will be required to provision and manage these entities and endpoints.* Provided - Cluster management entities and endpoints are provided by the infrastructure platform.* Managed - Cluster management entities and endpoints are provisioned and managed by Intersight kubernetes service.
    ManagementConfigs []KubernetesClusterProfileManagementConfigArgs
    Configuration required for provisioning and management of cluster management entities. Required if'managedMode' is set to 'Managed'. This complex property has following sub-properties:
    MasterVipLeases []KubernetesClusterProfileMasterVipLeaseArgs
    A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    NetConfigs []KubernetesClusterProfileNetConfigArgs
    A reference to a kubernetesNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    NodeGroups []KubernetesClusterProfileNodeGroupArgs
    An array of relationships to kubernetesNodeGroupProfile resources. This complex property has following sub-properties:
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations []KubernetesClusterProfileOrganizationArgs
    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)
    ParentSolutionProfiles []KubernetesClusterProfileParentSolutionProfileArgs
    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:
    Parents []KubernetesClusterProfileParentArgs
    (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 []KubernetesClusterProfilePermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PolicyBuckets []KubernetesClusterProfilePolicyBucketArgs
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    RemovedPolicies []string
    (Array of schema.TypeString) -
    ScheduledActions []KubernetesClusterProfileScheduledActionArgs
    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 []KubernetesClusterProfileSrcTemplateArgs
    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:
    Status string
    Status of the Kubernetes cluster and its nodes.* Undeployed - The cluster is undeployed.* Configuring - The cluster is being configured.* Deploying - The cluster is being deployed.* Undeploying - The cluster is being undeployed.* DeployFailedTerminal - The Cluster Deploy failed creation and can not be recovered, only Delete or Undeploy operations are available for this Cluster.* DeployFailed - The cluster deployment failed.* Upgrading - The cluster is being upgraded.* Deleting - The cluster is being deleted.* DeleteFailed - The Cluster Delete failed and the Cluster can not be recovered, only Delete or Undeploy operations are available for this Cluster.* Ready - The cluster is ready for use.* Active - The cluster is being active.* Shutdown - All the nodes in the cluster are powered off.* Terminated - The cluster is terminated.* Deployed - The cluster is deployed. The cluster may not yet be ready for use.* UndeployFailed - The cluster undeploy action failed.* NotReady - The cluster is created and some nodes are not ready.
    SysConfigs []KubernetesClusterProfileSysConfigArgs
    A reference to a kubernetesSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Tags []KubernetesClusterProfileTagArgs
    This complex property has following sub-properties:
    TrustedRegistries []KubernetesClusterProfileTrustedRegistryArgs
    A reference to a kubernetesTrustedRegistriesPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 []KubernetesClusterProfileVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    WaitForCompletion bool
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    WorkflowInfos []KubernetesClusterProfileWorkflowInfoArgs
    (ReadOnly) A reference to a workflowWorkflowInfo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    aciCniProfiles List<KubernetesClusterProfileAciCniProfile>
    (ReadOnly) A reference to a kubernetesAciCniProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    action String
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    actionInfos List<KubernetesClusterProfileActionInfo>
    (ReadOnly) No longer updated, to see action details such as name of the actionperformed, status, failure reason, etc. look at the ConfigContext and at details of the related workflowInfo. This complex property has following sub-properties:
    actionParams List<KubernetesClusterProfileActionParam>
    This complex property has following sub-properties:
    additionalProperties String
    ancestors List<KubernetesClusterProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    associatedClusters List<KubernetesClusterProfileAssociatedCluster>
    (ReadOnly) A reference to a kubernetesCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    certConfigs List<KubernetesClusterProfileCertConfig>
    Certificates and keys that are used to configure a Kubernetescluster. If user does not specify any Certificates or Keys,system generated certificates will be used to configure the cluster. 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.
    clusterIpPools List<KubernetesClusterProfileClusterIpPool>
    An array of relationships to ippoolPool resources. This complex property has following sub-properties:
    configContexts List<KubernetesClusterProfileConfigContext>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    containerRuntimeConfigs List<KubernetesClusterProfileContainerRuntimeConfig>
    A reference to a kubernetesContainerRuntimePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    containerRuntimeProxyPolicies List<KubernetesClusterProfileContainerRuntimeProxyPolicy>
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    createTime String
    (ReadOnly) The time when this managed object was created.
    deployedPolicies List<String>
    (Array of schema.TypeString) -
    description String
    Description of the profile.
    deviceConnectorProxyPolicies List<KubernetesClusterProfileDeviceConnectorProxyPolicy>
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    essentialAddons List<KubernetesClusterProfileEssentialAddon>
    This complex property has following sub-properties:
    kubeConfigs List<KubernetesClusterProfileKubeConfig>
    Certificates and keys that are used to access a Kubernetescluster. This complex property has following sub-properties:
    kubernetesClusterProfileId String
    loadbalancerBlockIpLeases List<KubernetesClusterProfileLoadbalancerBlockIpLease>
    An array of relationships to ippoolBlockLease resources. This complex property has following sub-properties:
    loadbalancerIpLeases List<KubernetesClusterProfileLoadbalancerIpLease>
    An array of relationships to ippoolIpLease resources. This complex property has following sub-properties:
    managedMode String
    Management mode for the cluster. In some cases Intersight kubernetes service is not requiredto provision and manage the management entities and endpoints (for e.g. EKS). In most other casesit will be required to provision and manage these entities and endpoints.* Provided - Cluster management entities and endpoints are provided by the infrastructure platform.* Managed - Cluster management entities and endpoints are provisioned and managed by Intersight kubernetes service.
    managementConfigs List<KubernetesClusterProfileManagementConfig>
    Configuration required for provisioning and management of cluster management entities. Required if'managedMode' is set to 'Managed'. This complex property has following sub-properties:
    masterVipLeases List<KubernetesClusterProfileMasterVipLease>
    A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    netConfigs List<KubernetesClusterProfileNetConfig>
    A reference to a kubernetesNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    nodeGroups List<KubernetesClusterProfileNodeGroup>
    An array of relationships to kubernetesNodeGroupProfile resources. This complex property has following sub-properties:
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations List<KubernetesClusterProfileOrganization>
    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)
    parentSolutionProfiles List<KubernetesClusterProfileParentSolutionProfile>
    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:
    parents List<KubernetesClusterProfileParent>
    (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<KubernetesClusterProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policyBuckets List<KubernetesClusterProfilePolicyBucket>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies List<String>
    (Array of schema.TypeString) -
    scheduledActions List<KubernetesClusterProfileScheduledAction>
    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<KubernetesClusterProfileSrcTemplate>
    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:
    status String
    Status of the Kubernetes cluster and its nodes.* Undeployed - The cluster is undeployed.* Configuring - The cluster is being configured.* Deploying - The cluster is being deployed.* Undeploying - The cluster is being undeployed.* DeployFailedTerminal - The Cluster Deploy failed creation and can not be recovered, only Delete or Undeploy operations are available for this Cluster.* DeployFailed - The cluster deployment failed.* Upgrading - The cluster is being upgraded.* Deleting - The cluster is being deleted.* DeleteFailed - The Cluster Delete failed and the Cluster can not be recovered, only Delete or Undeploy operations are available for this Cluster.* Ready - The cluster is ready for use.* Active - The cluster is being active.* Shutdown - All the nodes in the cluster are powered off.* Terminated - The cluster is terminated.* Deployed - The cluster is deployed. The cluster may not yet be ready for use.* UndeployFailed - The cluster undeploy action failed.* NotReady - The cluster is created and some nodes are not ready.
    sysConfigs List<KubernetesClusterProfileSysConfig>
    A reference to a kubernetesSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags List<KubernetesClusterProfileTag>
    This complex property has following sub-properties:
    trustedRegistries List<KubernetesClusterProfileTrustedRegistry>
    A reference to a kubernetesTrustedRegistriesPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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<KubernetesClusterProfileVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    waitForCompletion Boolean
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    workflowInfos List<KubernetesClusterProfileWorkflowInfo>
    (ReadOnly) A reference to a workflowWorkflowInfo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    aciCniProfiles KubernetesClusterProfileAciCniProfile[]
    (ReadOnly) A reference to a kubernetesAciCniProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    action string
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    actionInfos KubernetesClusterProfileActionInfo[]
    (ReadOnly) No longer updated, to see action details such as name of the actionperformed, status, failure reason, etc. look at the ConfigContext and at details of the related workflowInfo. This complex property has following sub-properties:
    actionParams KubernetesClusterProfileActionParam[]
    This complex property has following sub-properties:
    additionalProperties string
    ancestors KubernetesClusterProfileAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    associatedClusters KubernetesClusterProfileAssociatedCluster[]
    (ReadOnly) A reference to a kubernetesCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    certConfigs KubernetesClusterProfileCertConfig[]
    Certificates and keys that are used to configure a Kubernetescluster. If user does not specify any Certificates or Keys,system generated certificates will be used to configure the cluster. 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.
    clusterIpPools KubernetesClusterProfileClusterIpPool[]
    An array of relationships to ippoolPool resources. This complex property has following sub-properties:
    configContexts KubernetesClusterProfileConfigContext[]
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    containerRuntimeConfigs KubernetesClusterProfileContainerRuntimeConfig[]
    A reference to a kubernetesContainerRuntimePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    containerRuntimeProxyPolicies KubernetesClusterProfileContainerRuntimeProxyPolicy[]
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    createTime string
    (ReadOnly) The time when this managed object was created.
    deployedPolicies string[]
    (Array of schema.TypeString) -
    description string
    Description of the profile.
    deviceConnectorProxyPolicies KubernetesClusterProfileDeviceConnectorProxyPolicy[]
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    essentialAddons KubernetesClusterProfileEssentialAddon[]
    This complex property has following sub-properties:
    kubeConfigs KubernetesClusterProfileKubeConfig[]
    Certificates and keys that are used to access a Kubernetescluster. This complex property has following sub-properties:
    kubernetesClusterProfileId string
    loadbalancerBlockIpLeases KubernetesClusterProfileLoadbalancerBlockIpLease[]
    An array of relationships to ippoolBlockLease resources. This complex property has following sub-properties:
    loadbalancerIpLeases KubernetesClusterProfileLoadbalancerIpLease[]
    An array of relationships to ippoolIpLease resources. This complex property has following sub-properties:
    managedMode string
    Management mode for the cluster. In some cases Intersight kubernetes service is not requiredto provision and manage the management entities and endpoints (for e.g. EKS). In most other casesit will be required to provision and manage these entities and endpoints.* Provided - Cluster management entities and endpoints are provided by the infrastructure platform.* Managed - Cluster management entities and endpoints are provisioned and managed by Intersight kubernetes service.
    managementConfigs KubernetesClusterProfileManagementConfig[]
    Configuration required for provisioning and management of cluster management entities. Required if'managedMode' is set to 'Managed'. This complex property has following sub-properties:
    masterVipLeases KubernetesClusterProfileMasterVipLease[]
    A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    netConfigs KubernetesClusterProfileNetConfig[]
    A reference to a kubernetesNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    nodeGroups KubernetesClusterProfileNodeGroup[]
    An array of relationships to kubernetesNodeGroupProfile resources. This complex property has following sub-properties:
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations KubernetesClusterProfileOrganization[]
    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)
    parentSolutionProfiles KubernetesClusterProfileParentSolutionProfile[]
    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:
    parents KubernetesClusterProfileParent[]
    (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 KubernetesClusterProfilePermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policyBuckets KubernetesClusterProfilePolicyBucket[]
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies string[]
    (Array of schema.TypeString) -
    scheduledActions KubernetesClusterProfileScheduledAction[]
    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 KubernetesClusterProfileSrcTemplate[]
    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:
    status string
    Status of the Kubernetes cluster and its nodes.* Undeployed - The cluster is undeployed.* Configuring - The cluster is being configured.* Deploying - The cluster is being deployed.* Undeploying - The cluster is being undeployed.* DeployFailedTerminal - The Cluster Deploy failed creation and can not be recovered, only Delete or Undeploy operations are available for this Cluster.* DeployFailed - The cluster deployment failed.* Upgrading - The cluster is being upgraded.* Deleting - The cluster is being deleted.* DeleteFailed - The Cluster Delete failed and the Cluster can not be recovered, only Delete or Undeploy operations are available for this Cluster.* Ready - The cluster is ready for use.* Active - The cluster is being active.* Shutdown - All the nodes in the cluster are powered off.* Terminated - The cluster is terminated.* Deployed - The cluster is deployed. The cluster may not yet be ready for use.* UndeployFailed - The cluster undeploy action failed.* NotReady - The cluster is created and some nodes are not ready.
    sysConfigs KubernetesClusterProfileSysConfig[]
    A reference to a kubernetesSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags KubernetesClusterProfileTag[]
    This complex property has following sub-properties:
    trustedRegistries KubernetesClusterProfileTrustedRegistry[]
    A reference to a kubernetesTrustedRegistriesPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 KubernetesClusterProfileVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    waitForCompletion boolean
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    workflowInfos KubernetesClusterProfileWorkflowInfo[]
    (ReadOnly) A reference to a workflowWorkflowInfo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    aci_cni_profiles Sequence[KubernetesClusterProfileAciCniProfileArgs]
    (ReadOnly) A reference to a kubernetesAciCniProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    action str
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    action_infos Sequence[KubernetesClusterProfileActionInfoArgs]
    (ReadOnly) No longer updated, to see action details such as name of the actionperformed, status, failure reason, etc. look at the ConfigContext and at details of the related workflowInfo. This complex property has following sub-properties:
    action_params Sequence[KubernetesClusterProfileActionParamArgs]
    This complex property has following sub-properties:
    additional_properties str
    ancestors Sequence[KubernetesClusterProfileAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    associated_clusters Sequence[KubernetesClusterProfileAssociatedClusterArgs]
    (ReadOnly) A reference to a kubernetesCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    cert_configs Sequence[KubernetesClusterProfileCertConfigArgs]
    Certificates and keys that are used to configure a Kubernetescluster. If user does not specify any Certificates or Keys,system generated certificates will be used to configure the cluster. 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_ip_pools Sequence[KubernetesClusterProfileClusterIpPoolArgs]
    An array of relationships to ippoolPool resources. This complex property has following sub-properties:
    config_contexts Sequence[KubernetesClusterProfileConfigContextArgs]
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    container_runtime_configs Sequence[KubernetesClusterProfileContainerRuntimeConfigArgs]
    A reference to a kubernetesContainerRuntimePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    container_runtime_proxy_policies Sequence[KubernetesClusterProfileContainerRuntimeProxyPolicyArgs]
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    create_time str
    (ReadOnly) The time when this managed object was created.
    deployed_policies Sequence[str]
    (Array of schema.TypeString) -
    description str
    Description of the profile.
    device_connector_proxy_policies Sequence[KubernetesClusterProfileDeviceConnectorProxyPolicyArgs]
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    essential_addons Sequence[KubernetesClusterProfileEssentialAddonArgs]
    This complex property has following sub-properties:
    kube_configs Sequence[KubernetesClusterProfileKubeConfigArgs]
    Certificates and keys that are used to access a Kubernetescluster. This complex property has following sub-properties:
    kubernetes_cluster_profile_id str
    loadbalancer_block_ip_leases Sequence[KubernetesClusterProfileLoadbalancerBlockIpLeaseArgs]
    An array of relationships to ippoolBlockLease resources. This complex property has following sub-properties:
    loadbalancer_ip_leases Sequence[KubernetesClusterProfileLoadbalancerIpLeaseArgs]
    An array of relationships to ippoolIpLease resources. This complex property has following sub-properties:
    managed_mode str
    Management mode for the cluster. In some cases Intersight kubernetes service is not requiredto provision and manage the management entities and endpoints (for e.g. EKS). In most other casesit will be required to provision and manage these entities and endpoints.* Provided - Cluster management entities and endpoints are provided by the infrastructure platform.* Managed - Cluster management entities and endpoints are provisioned and managed by Intersight kubernetes service.
    management_configs Sequence[KubernetesClusterProfileManagementConfigArgs]
    Configuration required for provisioning and management of cluster management entities. Required if'managedMode' is set to 'Managed'. This complex property has following sub-properties:
    master_vip_leases Sequence[KubernetesClusterProfileMasterVipLeaseArgs]
    A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    mod_time str
    (ReadOnly) The time when this managed object was last modified.
    moid str
    The unique identifier of this Managed Object instance.
    name str
    Name of the profile instance or profile template.
    net_configs Sequence[KubernetesClusterProfileNetConfigArgs]
    A reference to a kubernetesNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    node_groups Sequence[KubernetesClusterProfileNodeGroupArgs]
    An array of relationships to kubernetesNodeGroupProfile resources. This complex property has following sub-properties:
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations Sequence[KubernetesClusterProfileOrganizationArgs]
    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)
    parent_solution_profiles Sequence[KubernetesClusterProfileParentSolutionProfileArgs]
    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:
    parents Sequence[KubernetesClusterProfileParentArgs]
    (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[KubernetesClusterProfilePermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policy_buckets Sequence[KubernetesClusterProfilePolicyBucketArgs]
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removed_policies Sequence[str]
    (Array of schema.TypeString) -
    scheduled_actions Sequence[KubernetesClusterProfileScheduledActionArgs]
    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[KubernetesClusterProfileSrcTemplateArgs]
    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:
    status str
    Status of the Kubernetes cluster and its nodes.* Undeployed - The cluster is undeployed.* Configuring - The cluster is being configured.* Deploying - The cluster is being deployed.* Undeploying - The cluster is being undeployed.* DeployFailedTerminal - The Cluster Deploy failed creation and can not be recovered, only Delete or Undeploy operations are available for this Cluster.* DeployFailed - The cluster deployment failed.* Upgrading - The cluster is being upgraded.* Deleting - The cluster is being deleted.* DeleteFailed - The Cluster Delete failed and the Cluster can not be recovered, only Delete or Undeploy operations are available for this Cluster.* Ready - The cluster is ready for use.* Active - The cluster is being active.* Shutdown - All the nodes in the cluster are powered off.* Terminated - The cluster is terminated.* Deployed - The cluster is deployed. The cluster may not yet be ready for use.* UndeployFailed - The cluster undeploy action failed.* NotReady - The cluster is created and some nodes are not ready.
    sys_configs Sequence[KubernetesClusterProfileSysConfigArgs]
    A reference to a kubernetesSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags Sequence[KubernetesClusterProfileTagArgs]
    This complex property has following sub-properties:
    trusted_registries Sequence[KubernetesClusterProfileTrustedRegistryArgs]
    A reference to a kubernetesTrustedRegistriesPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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[KubernetesClusterProfileVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    wait_for_completion bool
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    workflow_infos Sequence[KubernetesClusterProfileWorkflowInfoArgs]
    (ReadOnly) A reference to a workflowWorkflowInfo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    aciCniProfiles List<Property Map>
    (ReadOnly) A reference to a kubernetesAciCniProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    action String
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    actionInfos List<Property Map>
    (ReadOnly) No longer updated, to see action details such as name of the actionperformed, status, failure reason, etc. look at the ConfigContext and at details of the related workflowInfo. This complex property has following sub-properties:
    actionParams List<Property Map>
    This complex property has following sub-properties:
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    associatedClusters List<Property Map>
    (ReadOnly) A reference to a kubernetesCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    certConfigs List<Property Map>
    Certificates and keys that are used to configure a Kubernetescluster. If user does not specify any Certificates or Keys,system generated certificates will be used to configure the cluster. 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.
    clusterIpPools List<Property Map>
    An array of relationships to ippoolPool resources. This complex property has following sub-properties:
    configContexts List<Property Map>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    containerRuntimeConfigs List<Property Map>
    A reference to a kubernetesContainerRuntimePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    containerRuntimeProxyPolicies List<Property Map>
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    createTime String
    (ReadOnly) The time when this managed object was created.
    deployedPolicies List<String>
    (Array of schema.TypeString) -
    description String
    Description of the profile.
    deviceConnectorProxyPolicies List<Property Map>
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    essentialAddons List<Property Map>
    This complex property has following sub-properties:
    kubeConfigs List<Property Map>
    Certificates and keys that are used to access a Kubernetescluster. This complex property has following sub-properties:
    kubernetesClusterProfileId String
    loadbalancerBlockIpLeases List<Property Map>
    An array of relationships to ippoolBlockLease resources. This complex property has following sub-properties:
    loadbalancerIpLeases List<Property Map>
    An array of relationships to ippoolIpLease resources. This complex property has following sub-properties:
    managedMode String
    Management mode for the cluster. In some cases Intersight kubernetes service is not requiredto provision and manage the management entities and endpoints (for e.g. EKS). In most other casesit will be required to provision and manage these entities and endpoints.* Provided - Cluster management entities and endpoints are provided by the infrastructure platform.* Managed - Cluster management entities and endpoints are provisioned and managed by Intersight kubernetes service.
    managementConfigs List<Property Map>
    Configuration required for provisioning and management of cluster management entities. Required if'managedMode' is set to 'Managed'. This complex property has following sub-properties:
    masterVipLeases List<Property Map>
    A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    netConfigs List<Property Map>
    A reference to a kubernetesNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    nodeGroups List<Property Map>
    An array of relationships to kubernetesNodeGroupProfile resources. This complex property has following sub-properties:
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations List<Property Map>
    A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parentSolutionProfiles List<Property Map>
    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:
    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:
    policyBuckets List<Property Map>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies List<String>
    (Array of schema.TypeString) -
    scheduledActions List<Property Map>
    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:
    status String
    Status of the Kubernetes cluster and its nodes.* Undeployed - The cluster is undeployed.* Configuring - The cluster is being configured.* Deploying - The cluster is being deployed.* Undeploying - The cluster is being undeployed.* DeployFailedTerminal - The Cluster Deploy failed creation and can not be recovered, only Delete or Undeploy operations are available for this Cluster.* DeployFailed - The cluster deployment failed.* Upgrading - The cluster is being upgraded.* Deleting - The cluster is being deleted.* DeleteFailed - The Cluster Delete failed and the Cluster can not be recovered, only Delete or Undeploy operations are available for this Cluster.* Ready - The cluster is ready for use.* Active - The cluster is being active.* Shutdown - All the nodes in the cluster are powered off.* Terminated - The cluster is terminated.* Deployed - The cluster is deployed. The cluster may not yet be ready for use.* UndeployFailed - The cluster undeploy action failed.* NotReady - The cluster is created and some nodes are not ready.
    sysConfigs List<Property Map>
    A reference to a kubernetesSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags List<Property Map>
    This complex property has following sub-properties:
    trustedRegistries List<Property Map>
    A reference to a kubernetesTrustedRegistriesPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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:
    waitForCompletion Boolean
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    workflowInfos List<Property Map>
    (ReadOnly) A reference to a workflowWorkflowInfo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:

    Outputs

    All input properties are implicitly available as output properties. Additionally, the KubernetesClusterProfile 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 KubernetesClusterProfile Resource

    Get an existing KubernetesClusterProfile 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?: KubernetesClusterProfileState, opts?: CustomResourceOptions): KubernetesClusterProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_moid: Optional[str] = None,
            aci_cni_profiles: Optional[Sequence[KubernetesClusterProfileAciCniProfileArgs]] = None,
            action: Optional[str] = None,
            action_infos: Optional[Sequence[KubernetesClusterProfileActionInfoArgs]] = None,
            action_params: Optional[Sequence[KubernetesClusterProfileActionParamArgs]] = None,
            additional_properties: Optional[str] = None,
            ancestors: Optional[Sequence[KubernetesClusterProfileAncestorArgs]] = None,
            associated_clusters: Optional[Sequence[KubernetesClusterProfileAssociatedClusterArgs]] = None,
            cert_configs: Optional[Sequence[KubernetesClusterProfileCertConfigArgs]] = None,
            class_id: Optional[str] = None,
            cluster_ip_pools: Optional[Sequence[KubernetesClusterProfileClusterIpPoolArgs]] = None,
            config_contexts: Optional[Sequence[KubernetesClusterProfileConfigContextArgs]] = None,
            container_runtime_configs: Optional[Sequence[KubernetesClusterProfileContainerRuntimeConfigArgs]] = None,
            container_runtime_proxy_policies: Optional[Sequence[KubernetesClusterProfileContainerRuntimeProxyPolicyArgs]] = None,
            create_time: Optional[str] = None,
            deployed_policies: Optional[Sequence[str]] = None,
            description: Optional[str] = None,
            device_connector_proxy_policies: Optional[Sequence[KubernetesClusterProfileDeviceConnectorProxyPolicyArgs]] = None,
            domain_group_moid: Optional[str] = None,
            essential_addons: Optional[Sequence[KubernetesClusterProfileEssentialAddonArgs]] = None,
            kube_configs: Optional[Sequence[KubernetesClusterProfileKubeConfigArgs]] = None,
            kubernetes_cluster_profile_id: Optional[str] = None,
            loadbalancer_block_ip_leases: Optional[Sequence[KubernetesClusterProfileLoadbalancerBlockIpLeaseArgs]] = None,
            loadbalancer_ip_leases: Optional[Sequence[KubernetesClusterProfileLoadbalancerIpLeaseArgs]] = None,
            managed_mode: Optional[str] = None,
            management_configs: Optional[Sequence[KubernetesClusterProfileManagementConfigArgs]] = None,
            master_vip_leases: Optional[Sequence[KubernetesClusterProfileMasterVipLeaseArgs]] = None,
            mod_time: Optional[str] = None,
            moid: Optional[str] = None,
            name: Optional[str] = None,
            net_configs: Optional[Sequence[KubernetesClusterProfileNetConfigArgs]] = None,
            node_groups: Optional[Sequence[KubernetesClusterProfileNodeGroupArgs]] = None,
            object_type: Optional[str] = None,
            organizations: Optional[Sequence[KubernetesClusterProfileOrganizationArgs]] = None,
            owners: Optional[Sequence[str]] = None,
            parent_solution_profiles: Optional[Sequence[KubernetesClusterProfileParentSolutionProfileArgs]] = None,
            parents: Optional[Sequence[KubernetesClusterProfileParentArgs]] = None,
            permission_resources: Optional[Sequence[KubernetesClusterProfilePermissionResourceArgs]] = None,
            policy_buckets: Optional[Sequence[KubernetesClusterProfilePolicyBucketArgs]] = None,
            removed_policies: Optional[Sequence[str]] = None,
            scheduled_actions: Optional[Sequence[KubernetesClusterProfileScheduledActionArgs]] = None,
            shared_scope: Optional[str] = None,
            src_templates: Optional[Sequence[KubernetesClusterProfileSrcTemplateArgs]] = None,
            status: Optional[str] = None,
            sys_configs: Optional[Sequence[KubernetesClusterProfileSysConfigArgs]] = None,
            tags: Optional[Sequence[KubernetesClusterProfileTagArgs]] = None,
            trusted_registries: Optional[Sequence[KubernetesClusterProfileTrustedRegistryArgs]] = None,
            type: Optional[str] = None,
            version_contexts: Optional[Sequence[KubernetesClusterProfileVersionContextArgs]] = None,
            wait_for_completion: Optional[bool] = None,
            workflow_infos: Optional[Sequence[KubernetesClusterProfileWorkflowInfoArgs]] = None) -> KubernetesClusterProfile
    func GetKubernetesClusterProfile(ctx *Context, name string, id IDInput, state *KubernetesClusterProfileState, opts ...ResourceOption) (*KubernetesClusterProfile, error)
    public static KubernetesClusterProfile Get(string name, Input<string> id, KubernetesClusterProfileState? state, CustomResourceOptions? opts = null)
    public static KubernetesClusterProfile get(String name, Output<String> id, KubernetesClusterProfileState state, CustomResourceOptions options)
    resources:  _:    type: intersight:KubernetesClusterProfile    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:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AciCniProfiles List<KubernetesClusterProfileAciCniProfile>
    (ReadOnly) A reference to a kubernetesAciCniProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Action string
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    ActionInfos List<KubernetesClusterProfileActionInfo>
    (ReadOnly) No longer updated, to see action details such as name of the actionperformed, status, failure reason, etc. look at the ConfigContext and at details of the related workflowInfo. This complex property has following sub-properties:
    ActionParams List<KubernetesClusterProfileActionParam>
    This complex property has following sub-properties:
    AdditionalProperties string
    Ancestors List<KubernetesClusterProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AssociatedClusters List<KubernetesClusterProfileAssociatedCluster>
    (ReadOnly) A reference to a kubernetesCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    CertConfigs List<KubernetesClusterProfileCertConfig>
    Certificates and keys that are used to configure a Kubernetescluster. If user does not specify any Certificates or Keys,system generated certificates will be used to configure the cluster. 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.
    ClusterIpPools List<KubernetesClusterProfileClusterIpPool>
    An array of relationships to ippoolPool resources. This complex property has following sub-properties:
    ConfigContexts List<KubernetesClusterProfileConfigContext>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    ContainerRuntimeConfigs List<KubernetesClusterProfileContainerRuntimeConfig>
    A reference to a kubernetesContainerRuntimePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ContainerRuntimeProxyPolicies List<KubernetesClusterProfileContainerRuntimeProxyPolicy>
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DeployedPolicies List<string>
    (Array of schema.TypeString) -
    Description string
    Description of the profile.
    DeviceConnectorProxyPolicies List<KubernetesClusterProfileDeviceConnectorProxyPolicy>
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    EssentialAddons List<KubernetesClusterProfileEssentialAddon>
    This complex property has following sub-properties:
    KubeConfigs List<KubernetesClusterProfileKubeConfig>
    Certificates and keys that are used to access a Kubernetescluster. This complex property has following sub-properties:
    KubernetesClusterProfileId string
    LoadbalancerBlockIpLeases List<KubernetesClusterProfileLoadbalancerBlockIpLease>
    An array of relationships to ippoolBlockLease resources. This complex property has following sub-properties:
    LoadbalancerIpLeases List<KubernetesClusterProfileLoadbalancerIpLease>
    An array of relationships to ippoolIpLease resources. This complex property has following sub-properties:
    ManagedMode string
    Management mode for the cluster. In some cases Intersight kubernetes service is not requiredto provision and manage the management entities and endpoints (for e.g. EKS). In most other casesit will be required to provision and manage these entities and endpoints.* Provided - Cluster management entities and endpoints are provided by the infrastructure platform.* Managed - Cluster management entities and endpoints are provisioned and managed by Intersight kubernetes service.
    ManagementConfigs List<KubernetesClusterProfileManagementConfig>
    Configuration required for provisioning and management of cluster management entities. Required if'managedMode' is set to 'Managed'. This complex property has following sub-properties:
    MasterVipLeases List<KubernetesClusterProfileMasterVipLease>
    A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    NetConfigs List<KubernetesClusterProfileNetConfig>
    A reference to a kubernetesNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    NodeGroups List<KubernetesClusterProfileNodeGroup>
    An array of relationships to kubernetesNodeGroupProfile resources. This complex property has following sub-properties:
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations List<KubernetesClusterProfileOrganization>
    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)
    ParentSolutionProfiles List<KubernetesClusterProfileParentSolutionProfile>
    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:
    Parents List<KubernetesClusterProfileParent>
    (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<KubernetesClusterProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PolicyBuckets List<KubernetesClusterProfilePolicyBucket>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    RemovedPolicies List<string>
    (Array of schema.TypeString) -
    ScheduledActions List<KubernetesClusterProfileScheduledAction>
    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<KubernetesClusterProfileSrcTemplate>
    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:
    Status string
    Status of the Kubernetes cluster and its nodes.* Undeployed - The cluster is undeployed.* Configuring - The cluster is being configured.* Deploying - The cluster is being deployed.* Undeploying - The cluster is being undeployed.* DeployFailedTerminal - The Cluster Deploy failed creation and can not be recovered, only Delete or Undeploy operations are available for this Cluster.* DeployFailed - The cluster deployment failed.* Upgrading - The cluster is being upgraded.* Deleting - The cluster is being deleted.* DeleteFailed - The Cluster Delete failed and the Cluster can not be recovered, only Delete or Undeploy operations are available for this Cluster.* Ready - The cluster is ready for use.* Active - The cluster is being active.* Shutdown - All the nodes in the cluster are powered off.* Terminated - The cluster is terminated.* Deployed - The cluster is deployed. The cluster may not yet be ready for use.* UndeployFailed - The cluster undeploy action failed.* NotReady - The cluster is created and some nodes are not ready.
    SysConfigs List<KubernetesClusterProfileSysConfig>
    A reference to a kubernetesSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Tags List<KubernetesClusterProfileTag>
    This complex property has following sub-properties:
    TrustedRegistries List<KubernetesClusterProfileTrustedRegistry>
    A reference to a kubernetesTrustedRegistriesPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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<KubernetesClusterProfileVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    WaitForCompletion bool
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    WorkflowInfos List<KubernetesClusterProfileWorkflowInfo>
    (ReadOnly) A reference to a workflowWorkflowInfo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AciCniProfiles []KubernetesClusterProfileAciCniProfileArgs
    (ReadOnly) A reference to a kubernetesAciCniProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Action string
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    ActionInfos []KubernetesClusterProfileActionInfoArgs
    (ReadOnly) No longer updated, to see action details such as name of the actionperformed, status, failure reason, etc. look at the ConfigContext and at details of the related workflowInfo. This complex property has following sub-properties:
    ActionParams []KubernetesClusterProfileActionParamArgs
    This complex property has following sub-properties:
    AdditionalProperties string
    Ancestors []KubernetesClusterProfileAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    AssociatedClusters []KubernetesClusterProfileAssociatedClusterArgs
    (ReadOnly) A reference to a kubernetesCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    CertConfigs []KubernetesClusterProfileCertConfigArgs
    Certificates and keys that are used to configure a Kubernetescluster. If user does not specify any Certificates or Keys,system generated certificates will be used to configure the cluster. 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.
    ClusterIpPools []KubernetesClusterProfileClusterIpPoolArgs
    An array of relationships to ippoolPool resources. This complex property has following sub-properties:
    ConfigContexts []KubernetesClusterProfileConfigContextArgs
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    ContainerRuntimeConfigs []KubernetesClusterProfileContainerRuntimeConfigArgs
    A reference to a kubernetesContainerRuntimePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ContainerRuntimeProxyPolicies []KubernetesClusterProfileContainerRuntimeProxyPolicyArgs
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DeployedPolicies []string
    (Array of schema.TypeString) -
    Description string
    Description of the profile.
    DeviceConnectorProxyPolicies []KubernetesClusterProfileDeviceConnectorProxyPolicyArgs
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    EssentialAddons []KubernetesClusterProfileEssentialAddonArgs
    This complex property has following sub-properties:
    KubeConfigs []KubernetesClusterProfileKubeConfigArgs
    Certificates and keys that are used to access a Kubernetescluster. This complex property has following sub-properties:
    KubernetesClusterProfileId string
    LoadbalancerBlockIpLeases []KubernetesClusterProfileLoadbalancerBlockIpLeaseArgs
    An array of relationships to ippoolBlockLease resources. This complex property has following sub-properties:
    LoadbalancerIpLeases []KubernetesClusterProfileLoadbalancerIpLeaseArgs
    An array of relationships to ippoolIpLease resources. This complex property has following sub-properties:
    ManagedMode string
    Management mode for the cluster. In some cases Intersight kubernetes service is not requiredto provision and manage the management entities and endpoints (for e.g. EKS). In most other casesit will be required to provision and manage these entities and endpoints.* Provided - Cluster management entities and endpoints are provided by the infrastructure platform.* Managed - Cluster management entities and endpoints are provisioned and managed by Intersight kubernetes service.
    ManagementConfigs []KubernetesClusterProfileManagementConfigArgs
    Configuration required for provisioning and management of cluster management entities. Required if'managedMode' is set to 'Managed'. This complex property has following sub-properties:
    MasterVipLeases []KubernetesClusterProfileMasterVipLeaseArgs
    A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    NetConfigs []KubernetesClusterProfileNetConfigArgs
    A reference to a kubernetesNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    NodeGroups []KubernetesClusterProfileNodeGroupArgs
    An array of relationships to kubernetesNodeGroupProfile resources. This complex property has following sub-properties:
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations []KubernetesClusterProfileOrganizationArgs
    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)
    ParentSolutionProfiles []KubernetesClusterProfileParentSolutionProfileArgs
    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:
    Parents []KubernetesClusterProfileParentArgs
    (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 []KubernetesClusterProfilePermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    PolicyBuckets []KubernetesClusterProfilePolicyBucketArgs
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    RemovedPolicies []string
    (Array of schema.TypeString) -
    ScheduledActions []KubernetesClusterProfileScheduledActionArgs
    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 []KubernetesClusterProfileSrcTemplateArgs
    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:
    Status string
    Status of the Kubernetes cluster and its nodes.* Undeployed - The cluster is undeployed.* Configuring - The cluster is being configured.* Deploying - The cluster is being deployed.* Undeploying - The cluster is being undeployed.* DeployFailedTerminal - The Cluster Deploy failed creation and can not be recovered, only Delete or Undeploy operations are available for this Cluster.* DeployFailed - The cluster deployment failed.* Upgrading - The cluster is being upgraded.* Deleting - The cluster is being deleted.* DeleteFailed - The Cluster Delete failed and the Cluster can not be recovered, only Delete or Undeploy operations are available for this Cluster.* Ready - The cluster is ready for use.* Active - The cluster is being active.* Shutdown - All the nodes in the cluster are powered off.* Terminated - The cluster is terminated.* Deployed - The cluster is deployed. The cluster may not yet be ready for use.* UndeployFailed - The cluster undeploy action failed.* NotReady - The cluster is created and some nodes are not ready.
    SysConfigs []KubernetesClusterProfileSysConfigArgs
    A reference to a kubernetesSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    Tags []KubernetesClusterProfileTagArgs
    This complex property has following sub-properties:
    TrustedRegistries []KubernetesClusterProfileTrustedRegistryArgs
    A reference to a kubernetesTrustedRegistriesPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 []KubernetesClusterProfileVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    WaitForCompletion bool
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    WorkflowInfos []KubernetesClusterProfileWorkflowInfoArgs
    (ReadOnly) A reference to a workflowWorkflowInfo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    aciCniProfiles List<KubernetesClusterProfileAciCniProfile>
    (ReadOnly) A reference to a kubernetesAciCniProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    action String
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    actionInfos List<KubernetesClusterProfileActionInfo>
    (ReadOnly) No longer updated, to see action details such as name of the actionperformed, status, failure reason, etc. look at the ConfigContext and at details of the related workflowInfo. This complex property has following sub-properties:
    actionParams List<KubernetesClusterProfileActionParam>
    This complex property has following sub-properties:
    additionalProperties String
    ancestors List<KubernetesClusterProfileAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    associatedClusters List<KubernetesClusterProfileAssociatedCluster>
    (ReadOnly) A reference to a kubernetesCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    certConfigs List<KubernetesClusterProfileCertConfig>
    Certificates and keys that are used to configure a Kubernetescluster. If user does not specify any Certificates or Keys,system generated certificates will be used to configure the cluster. 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.
    clusterIpPools List<KubernetesClusterProfileClusterIpPool>
    An array of relationships to ippoolPool resources. This complex property has following sub-properties:
    configContexts List<KubernetesClusterProfileConfigContext>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    containerRuntimeConfigs List<KubernetesClusterProfileContainerRuntimeConfig>
    A reference to a kubernetesContainerRuntimePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    containerRuntimeProxyPolicies List<KubernetesClusterProfileContainerRuntimeProxyPolicy>
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    createTime String
    (ReadOnly) The time when this managed object was created.
    deployedPolicies List<String>
    (Array of schema.TypeString) -
    description String
    Description of the profile.
    deviceConnectorProxyPolicies List<KubernetesClusterProfileDeviceConnectorProxyPolicy>
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    essentialAddons List<KubernetesClusterProfileEssentialAddon>
    This complex property has following sub-properties:
    kubeConfigs List<KubernetesClusterProfileKubeConfig>
    Certificates and keys that are used to access a Kubernetescluster. This complex property has following sub-properties:
    kubernetesClusterProfileId String
    loadbalancerBlockIpLeases List<KubernetesClusterProfileLoadbalancerBlockIpLease>
    An array of relationships to ippoolBlockLease resources. This complex property has following sub-properties:
    loadbalancerIpLeases List<KubernetesClusterProfileLoadbalancerIpLease>
    An array of relationships to ippoolIpLease resources. This complex property has following sub-properties:
    managedMode String
    Management mode for the cluster. In some cases Intersight kubernetes service is not requiredto provision and manage the management entities and endpoints (for e.g. EKS). In most other casesit will be required to provision and manage these entities and endpoints.* Provided - Cluster management entities and endpoints are provided by the infrastructure platform.* Managed - Cluster management entities and endpoints are provisioned and managed by Intersight kubernetes service.
    managementConfigs List<KubernetesClusterProfileManagementConfig>
    Configuration required for provisioning and management of cluster management entities. Required if'managedMode' is set to 'Managed'. This complex property has following sub-properties:
    masterVipLeases List<KubernetesClusterProfileMasterVipLease>
    A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    netConfigs List<KubernetesClusterProfileNetConfig>
    A reference to a kubernetesNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    nodeGroups List<KubernetesClusterProfileNodeGroup>
    An array of relationships to kubernetesNodeGroupProfile resources. This complex property has following sub-properties:
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations List<KubernetesClusterProfileOrganization>
    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)
    parentSolutionProfiles List<KubernetesClusterProfileParentSolutionProfile>
    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:
    parents List<KubernetesClusterProfileParent>
    (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<KubernetesClusterProfilePermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policyBuckets List<KubernetesClusterProfilePolicyBucket>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies List<String>
    (Array of schema.TypeString) -
    scheduledActions List<KubernetesClusterProfileScheduledAction>
    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<KubernetesClusterProfileSrcTemplate>
    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:
    status String
    Status of the Kubernetes cluster and its nodes.* Undeployed - The cluster is undeployed.* Configuring - The cluster is being configured.* Deploying - The cluster is being deployed.* Undeploying - The cluster is being undeployed.* DeployFailedTerminal - The Cluster Deploy failed creation and can not be recovered, only Delete or Undeploy operations are available for this Cluster.* DeployFailed - The cluster deployment failed.* Upgrading - The cluster is being upgraded.* Deleting - The cluster is being deleted.* DeleteFailed - The Cluster Delete failed and the Cluster can not be recovered, only Delete or Undeploy operations are available for this Cluster.* Ready - The cluster is ready for use.* Active - The cluster is being active.* Shutdown - All the nodes in the cluster are powered off.* Terminated - The cluster is terminated.* Deployed - The cluster is deployed. The cluster may not yet be ready for use.* UndeployFailed - The cluster undeploy action failed.* NotReady - The cluster is created and some nodes are not ready.
    sysConfigs List<KubernetesClusterProfileSysConfig>
    A reference to a kubernetesSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags List<KubernetesClusterProfileTag>
    This complex property has following sub-properties:
    trustedRegistries List<KubernetesClusterProfileTrustedRegistry>
    A reference to a kubernetesTrustedRegistriesPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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<KubernetesClusterProfileVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    waitForCompletion Boolean
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    workflowInfos List<KubernetesClusterProfileWorkflowInfo>
    (ReadOnly) A reference to a workflowWorkflowInfo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    aciCniProfiles KubernetesClusterProfileAciCniProfile[]
    (ReadOnly) A reference to a kubernetesAciCniProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    action string
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    actionInfos KubernetesClusterProfileActionInfo[]
    (ReadOnly) No longer updated, to see action details such as name of the actionperformed, status, failure reason, etc. look at the ConfigContext and at details of the related workflowInfo. This complex property has following sub-properties:
    actionParams KubernetesClusterProfileActionParam[]
    This complex property has following sub-properties:
    additionalProperties string
    ancestors KubernetesClusterProfileAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    associatedClusters KubernetesClusterProfileAssociatedCluster[]
    (ReadOnly) A reference to a kubernetesCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    certConfigs KubernetesClusterProfileCertConfig[]
    Certificates and keys that are used to configure a Kubernetescluster. If user does not specify any Certificates or Keys,system generated certificates will be used to configure the cluster. 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.
    clusterIpPools KubernetesClusterProfileClusterIpPool[]
    An array of relationships to ippoolPool resources. This complex property has following sub-properties:
    configContexts KubernetesClusterProfileConfigContext[]
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    containerRuntimeConfigs KubernetesClusterProfileContainerRuntimeConfig[]
    A reference to a kubernetesContainerRuntimePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    containerRuntimeProxyPolicies KubernetesClusterProfileContainerRuntimeProxyPolicy[]
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    createTime string
    (ReadOnly) The time when this managed object was created.
    deployedPolicies string[]
    (Array of schema.TypeString) -
    description string
    Description of the profile.
    deviceConnectorProxyPolicies KubernetesClusterProfileDeviceConnectorProxyPolicy[]
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    essentialAddons KubernetesClusterProfileEssentialAddon[]
    This complex property has following sub-properties:
    kubeConfigs KubernetesClusterProfileKubeConfig[]
    Certificates and keys that are used to access a Kubernetescluster. This complex property has following sub-properties:
    kubernetesClusterProfileId string
    loadbalancerBlockIpLeases KubernetesClusterProfileLoadbalancerBlockIpLease[]
    An array of relationships to ippoolBlockLease resources. This complex property has following sub-properties:
    loadbalancerIpLeases KubernetesClusterProfileLoadbalancerIpLease[]
    An array of relationships to ippoolIpLease resources. This complex property has following sub-properties:
    managedMode string
    Management mode for the cluster. In some cases Intersight kubernetes service is not requiredto provision and manage the management entities and endpoints (for e.g. EKS). In most other casesit will be required to provision and manage these entities and endpoints.* Provided - Cluster management entities and endpoints are provided by the infrastructure platform.* Managed - Cluster management entities and endpoints are provisioned and managed by Intersight kubernetes service.
    managementConfigs KubernetesClusterProfileManagementConfig[]
    Configuration required for provisioning and management of cluster management entities. Required if'managedMode' is set to 'Managed'. This complex property has following sub-properties:
    masterVipLeases KubernetesClusterProfileMasterVipLease[]
    A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    netConfigs KubernetesClusterProfileNetConfig[]
    A reference to a kubernetesNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    nodeGroups KubernetesClusterProfileNodeGroup[]
    An array of relationships to kubernetesNodeGroupProfile resources. This complex property has following sub-properties:
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations KubernetesClusterProfileOrganization[]
    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)
    parentSolutionProfiles KubernetesClusterProfileParentSolutionProfile[]
    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:
    parents KubernetesClusterProfileParent[]
    (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 KubernetesClusterProfilePermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policyBuckets KubernetesClusterProfilePolicyBucket[]
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies string[]
    (Array of schema.TypeString) -
    scheduledActions KubernetesClusterProfileScheduledAction[]
    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 KubernetesClusterProfileSrcTemplate[]
    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:
    status string
    Status of the Kubernetes cluster and its nodes.* Undeployed - The cluster is undeployed.* Configuring - The cluster is being configured.* Deploying - The cluster is being deployed.* Undeploying - The cluster is being undeployed.* DeployFailedTerminal - The Cluster Deploy failed creation and can not be recovered, only Delete or Undeploy operations are available for this Cluster.* DeployFailed - The cluster deployment failed.* Upgrading - The cluster is being upgraded.* Deleting - The cluster is being deleted.* DeleteFailed - The Cluster Delete failed and the Cluster can not be recovered, only Delete or Undeploy operations are available for this Cluster.* Ready - The cluster is ready for use.* Active - The cluster is being active.* Shutdown - All the nodes in the cluster are powered off.* Terminated - The cluster is terminated.* Deployed - The cluster is deployed. The cluster may not yet be ready for use.* UndeployFailed - The cluster undeploy action failed.* NotReady - The cluster is created and some nodes are not ready.
    sysConfigs KubernetesClusterProfileSysConfig[]
    A reference to a kubernetesSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags KubernetesClusterProfileTag[]
    This complex property has following sub-properties:
    trustedRegistries KubernetesClusterProfileTrustedRegistry[]
    A reference to a kubernetesTrustedRegistriesPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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 KubernetesClusterProfileVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    waitForCompletion boolean
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    workflowInfos KubernetesClusterProfileWorkflowInfo[]
    (ReadOnly) A reference to a workflowWorkflowInfo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    aci_cni_profiles Sequence[KubernetesClusterProfileAciCniProfileArgs]
    (ReadOnly) A reference to a kubernetesAciCniProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    action str
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    action_infos Sequence[KubernetesClusterProfileActionInfoArgs]
    (ReadOnly) No longer updated, to see action details such as name of the actionperformed, status, failure reason, etc. look at the ConfigContext and at details of the related workflowInfo. This complex property has following sub-properties:
    action_params Sequence[KubernetesClusterProfileActionParamArgs]
    This complex property has following sub-properties:
    additional_properties str
    ancestors Sequence[KubernetesClusterProfileAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    associated_clusters Sequence[KubernetesClusterProfileAssociatedClusterArgs]
    (ReadOnly) A reference to a kubernetesCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    cert_configs Sequence[KubernetesClusterProfileCertConfigArgs]
    Certificates and keys that are used to configure a Kubernetescluster. If user does not specify any Certificates or Keys,system generated certificates will be used to configure the cluster. 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_ip_pools Sequence[KubernetesClusterProfileClusterIpPoolArgs]
    An array of relationships to ippoolPool resources. This complex property has following sub-properties:
    config_contexts Sequence[KubernetesClusterProfileConfigContextArgs]
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    container_runtime_configs Sequence[KubernetesClusterProfileContainerRuntimeConfigArgs]
    A reference to a kubernetesContainerRuntimePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    container_runtime_proxy_policies Sequence[KubernetesClusterProfileContainerRuntimeProxyPolicyArgs]
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    create_time str
    (ReadOnly) The time when this managed object was created.
    deployed_policies Sequence[str]
    (Array of schema.TypeString) -
    description str
    Description of the profile.
    device_connector_proxy_policies Sequence[KubernetesClusterProfileDeviceConnectorProxyPolicyArgs]
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    essential_addons Sequence[KubernetesClusterProfileEssentialAddonArgs]
    This complex property has following sub-properties:
    kube_configs Sequence[KubernetesClusterProfileKubeConfigArgs]
    Certificates and keys that are used to access a Kubernetescluster. This complex property has following sub-properties:
    kubernetes_cluster_profile_id str
    loadbalancer_block_ip_leases Sequence[KubernetesClusterProfileLoadbalancerBlockIpLeaseArgs]
    An array of relationships to ippoolBlockLease resources. This complex property has following sub-properties:
    loadbalancer_ip_leases Sequence[KubernetesClusterProfileLoadbalancerIpLeaseArgs]
    An array of relationships to ippoolIpLease resources. This complex property has following sub-properties:
    managed_mode str
    Management mode for the cluster. In some cases Intersight kubernetes service is not requiredto provision and manage the management entities and endpoints (for e.g. EKS). In most other casesit will be required to provision and manage these entities and endpoints.* Provided - Cluster management entities and endpoints are provided by the infrastructure platform.* Managed - Cluster management entities and endpoints are provisioned and managed by Intersight kubernetes service.
    management_configs Sequence[KubernetesClusterProfileManagementConfigArgs]
    Configuration required for provisioning and management of cluster management entities. Required if'managedMode' is set to 'Managed'. This complex property has following sub-properties:
    master_vip_leases Sequence[KubernetesClusterProfileMasterVipLeaseArgs]
    A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    mod_time str
    (ReadOnly) The time when this managed object was last modified.
    moid str
    The unique identifier of this Managed Object instance.
    name str
    Name of the profile instance or profile template.
    net_configs Sequence[KubernetesClusterProfileNetConfigArgs]
    A reference to a kubernetesNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    node_groups Sequence[KubernetesClusterProfileNodeGroupArgs]
    An array of relationships to kubernetesNodeGroupProfile resources. This complex property has following sub-properties:
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations Sequence[KubernetesClusterProfileOrganizationArgs]
    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)
    parent_solution_profiles Sequence[KubernetesClusterProfileParentSolutionProfileArgs]
    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:
    parents Sequence[KubernetesClusterProfileParentArgs]
    (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[KubernetesClusterProfilePermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    policy_buckets Sequence[KubernetesClusterProfilePolicyBucketArgs]
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removed_policies Sequence[str]
    (Array of schema.TypeString) -
    scheduled_actions Sequence[KubernetesClusterProfileScheduledActionArgs]
    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[KubernetesClusterProfileSrcTemplateArgs]
    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:
    status str
    Status of the Kubernetes cluster and its nodes.* Undeployed - The cluster is undeployed.* Configuring - The cluster is being configured.* Deploying - The cluster is being deployed.* Undeploying - The cluster is being undeployed.* DeployFailedTerminal - The Cluster Deploy failed creation and can not be recovered, only Delete or Undeploy operations are available for this Cluster.* DeployFailed - The cluster deployment failed.* Upgrading - The cluster is being upgraded.* Deleting - The cluster is being deleted.* DeleteFailed - The Cluster Delete failed and the Cluster can not be recovered, only Delete or Undeploy operations are available for this Cluster.* Ready - The cluster is ready for use.* Active - The cluster is being active.* Shutdown - All the nodes in the cluster are powered off.* Terminated - The cluster is terminated.* Deployed - The cluster is deployed. The cluster may not yet be ready for use.* UndeployFailed - The cluster undeploy action failed.* NotReady - The cluster is created and some nodes are not ready.
    sys_configs Sequence[KubernetesClusterProfileSysConfigArgs]
    A reference to a kubernetesSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags Sequence[KubernetesClusterProfileTagArgs]
    This complex property has following sub-properties:
    trusted_registries Sequence[KubernetesClusterProfileTrustedRegistryArgs]
    A reference to a kubernetesTrustedRegistriesPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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[KubernetesClusterProfileVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    wait_for_completion bool
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    workflow_infos Sequence[KubernetesClusterProfileWorkflowInfoArgs]
    (ReadOnly) A reference to a workflowWorkflowInfo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    aciCniProfiles List<Property Map>
    (ReadOnly) A reference to a kubernetesAciCniProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    action String
    User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
    actionInfos List<Property Map>
    (ReadOnly) No longer updated, to see action details such as name of the actionperformed, status, failure reason, etc. look at the ConfigContext and at details of the related workflowInfo. This complex property has following sub-properties:
    actionParams List<Property Map>
    This complex property has following sub-properties:
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    associatedClusters List<Property Map>
    (ReadOnly) A reference to a kubernetesCluster resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    certConfigs List<Property Map>
    Certificates and keys that are used to configure a Kubernetescluster. If user does not specify any Certificates or Keys,system generated certificates will be used to configure the cluster. 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.
    clusterIpPools List<Property Map>
    An array of relationships to ippoolPool resources. This complex property has following sub-properties:
    configContexts List<Property Map>
    The configuration state and results of the last configuration operation. This complex property has following sub-properties:
    containerRuntimeConfigs List<Property Map>
    A reference to a kubernetesContainerRuntimePolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    containerRuntimeProxyPolicies List<Property Map>
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    createTime String
    (ReadOnly) The time when this managed object was created.
    deployedPolicies List<String>
    (Array of schema.TypeString) -
    description String
    Description of the profile.
    deviceConnectorProxyPolicies List<Property Map>
    A reference to a kubernetesHttpProxyPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    essentialAddons List<Property Map>
    This complex property has following sub-properties:
    kubeConfigs List<Property Map>
    Certificates and keys that are used to access a Kubernetescluster. This complex property has following sub-properties:
    kubernetesClusterProfileId String
    loadbalancerBlockIpLeases List<Property Map>
    An array of relationships to ippoolBlockLease resources. This complex property has following sub-properties:
    loadbalancerIpLeases List<Property Map>
    An array of relationships to ippoolIpLease resources. This complex property has following sub-properties:
    managedMode String
    Management mode for the cluster. In some cases Intersight kubernetes service is not requiredto provision and manage the management entities and endpoints (for e.g. EKS). In most other casesit will be required to provision and manage these entities and endpoints.* Provided - Cluster management entities and endpoints are provided by the infrastructure platform.* Managed - Cluster management entities and endpoints are provisioned and managed by Intersight kubernetes service.
    managementConfigs List<Property Map>
    Configuration required for provisioning and management of cluster management entities. Required if'managedMode' is set to 'Managed'. This complex property has following sub-properties:
    masterVipLeases List<Property Map>
    A reference to a ippoolIpLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    netConfigs List<Property Map>
    A reference to a kubernetesNetworkPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    nodeGroups List<Property Map>
    An array of relationships to kubernetesNodeGroupProfile resources. This complex property has following sub-properties:
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations List<Property Map>
    A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parentSolutionProfiles List<Property Map>
    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:
    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:
    policyBuckets List<Property Map>
    An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
    removedPolicies List<String>
    (Array of schema.TypeString) -
    scheduledActions List<Property Map>
    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:
    status String
    Status of the Kubernetes cluster and its nodes.* Undeployed - The cluster is undeployed.* Configuring - The cluster is being configured.* Deploying - The cluster is being deployed.* Undeploying - The cluster is being undeployed.* DeployFailedTerminal - The Cluster Deploy failed creation and can not be recovered, only Delete or Undeploy operations are available for this Cluster.* DeployFailed - The cluster deployment failed.* Upgrading - The cluster is being upgraded.* Deleting - The cluster is being deleted.* DeleteFailed - The Cluster Delete failed and the Cluster can not be recovered, only Delete or Undeploy operations are available for this Cluster.* Ready - The cluster is ready for use.* Active - The cluster is being active.* Shutdown - All the nodes in the cluster are powered off.* Terminated - The cluster is terminated.* Deployed - The cluster is deployed. The cluster may not yet be ready for use.* UndeployFailed - The cluster undeploy action failed.* NotReady - The cluster is created and some nodes are not ready.
    sysConfigs List<Property Map>
    A reference to a kubernetesSysConfigPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    tags List<Property Map>
    This complex property has following sub-properties:
    trustedRegistries List<Property Map>
    A reference to a kubernetesTrustedRegistriesPolicy resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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:
    waitForCompletion Boolean
    This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
    workflowInfos List<Property Map>
    (ReadOnly) A reference to a workflowWorkflowInfo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:

    Supporting Types

    KubernetesClusterProfileAciCniProfile, KubernetesClusterProfileAciCniProfileArgs

    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'.

    KubernetesClusterProfileActionInfo, KubernetesClusterProfileActionInfoArgs

    AdditionalProperties string
    ClassId string
    FailureReason string
    (ReadOnly) No longer maintained and will be removed soon.
    Name string
    (ReadOnly) Name of the Action performed on a resource like VM, Disk etc.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    Status string
    No longer maintained and will be removed soon.* None - A place holder for the default value.* InProgress - Action triggered on the resource is still running.* Success - Action triggered on the resource is completed successfully.* Failure - Action triggered on the resource is failed.
    AdditionalProperties string
    ClassId string
    FailureReason string
    (ReadOnly) No longer maintained and will be removed soon.
    Name string
    (ReadOnly) Name of the Action performed on a resource like VM, Disk etc.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    Status string
    No longer maintained and will be removed soon.* None - A place holder for the default value.* InProgress - Action triggered on the resource is still running.* Success - Action triggered on the resource is completed successfully.* Failure - Action triggered on the resource is failed.
    additionalProperties String
    classId String
    failureReason String
    (ReadOnly) No longer maintained and will be removed soon.
    name String
    (ReadOnly) Name of the Action performed on a resource like VM, Disk etc.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    status String
    No longer maintained and will be removed soon.* None - A place holder for the default value.* InProgress - Action triggered on the resource is still running.* Success - Action triggered on the resource is completed successfully.* Failure - Action triggered on the resource is failed.
    additionalProperties string
    classId string
    failureReason string
    (ReadOnly) No longer maintained and will be removed soon.
    name string
    (ReadOnly) Name of the Action performed on a resource like VM, Disk etc.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    status string
    No longer maintained and will be removed soon.* None - A place holder for the default value.* InProgress - Action triggered on the resource is still running.* Success - Action triggered on the resource is completed successfully.* Failure - Action triggered on the resource is failed.
    additional_properties str
    class_id str
    failure_reason str
    (ReadOnly) No longer maintained and will be removed soon.
    name str
    (ReadOnly) Name of the Action performed on a resource like VM, Disk etc.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    status str
    No longer maintained and will be removed soon.* None - A place holder for the default value.* InProgress - Action triggered on the resource is still running.* Success - Action triggered on the resource is completed successfully.* Failure - Action triggered on the resource is failed.
    additionalProperties String
    classId String
    failureReason String
    (ReadOnly) No longer maintained and will be removed soon.
    name String
    (ReadOnly) Name of the Action performed on a resource like VM, Disk etc.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    status String
    No longer maintained and will be removed soon.* None - A place holder for the default value.* InProgress - Action triggered on the resource is still running.* Success - Action triggered on the resource is completed successfully.* Failure - Action triggered on the resource is failed.

    KubernetesClusterProfileActionParam, KubernetesClusterProfileActionParamArgs

    AdditionalProperties string
    ClassId string
    Name string
    The action parameter identifier.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    Value string
    The action parameter value.
    AdditionalProperties string
    ClassId string
    Name string
    The action parameter identifier.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    Value string
    The action parameter value.
    additionalProperties String
    classId String
    name String
    The action parameter identifier.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    value String
    The action parameter value.
    additionalProperties string
    classId string
    name string
    The action parameter identifier.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    value string
    The action parameter value.
    additional_properties str
    class_id str
    name str
    The action parameter identifier.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    value str
    The action parameter value.
    additionalProperties String
    classId String
    name String
    The action parameter identifier.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    value String
    The action parameter value.

    KubernetesClusterProfileAncestor, KubernetesClusterProfileAncestorArgs

    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'.

    KubernetesClusterProfileAssociatedCluster, KubernetesClusterProfileAssociatedClusterArgs

    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'.

    KubernetesClusterProfileCertConfig, KubernetesClusterProfileCertConfigArgs

    AdditionalProperties string
    CaCert string
    Certificate for the Kubernetes API server.
    CaKey string
    Private Key for the Kubernetes API server.
    ClassId string
    EtcdCert string
    Certificate for the etcd cluster.
    EtcdEncryptionKeys List<string>
    (Array of schema.TypeString) -
    EtcdKey string
    Private key for the etcd cluster.
    FrontProxyCert string
    Certificate for the front proxy to support Kubernetes API aggregators.
    FrontProxyKey string
    Private key for the front proxy to support Kubernetes API aggregators.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    SaPrivateKey string
    Service account private key used by Kubernetes Token Controller to sign generated service account tokens.
    SaPublicKey string
    Service account public key used by Kubernetes API Server to validate service account tokens generated by the Token Controller.
    AdditionalProperties string
    CaCert string
    Certificate for the Kubernetes API server.
    CaKey string
    Private Key for the Kubernetes API server.
    ClassId string
    EtcdCert string
    Certificate for the etcd cluster.
    EtcdEncryptionKeys []string
    (Array of schema.TypeString) -
    EtcdKey string
    Private key for the etcd cluster.
    FrontProxyCert string
    Certificate for the front proxy to support Kubernetes API aggregators.
    FrontProxyKey string
    Private key for the front proxy to support Kubernetes API aggregators.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    SaPrivateKey string
    Service account private key used by Kubernetes Token Controller to sign generated service account tokens.
    SaPublicKey string
    Service account public key used by Kubernetes API Server to validate service account tokens generated by the Token Controller.
    additionalProperties String
    caCert String
    Certificate for the Kubernetes API server.
    caKey String
    Private Key for the Kubernetes API server.
    classId String
    etcdCert String
    Certificate for the etcd cluster.
    etcdEncryptionKeys List<String>
    (Array of schema.TypeString) -
    etcdKey String
    Private key for the etcd cluster.
    frontProxyCert String
    Certificate for the front proxy to support Kubernetes API aggregators.
    frontProxyKey String
    Private key for the front proxy to support Kubernetes API aggregators.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    saPrivateKey String
    Service account private key used by Kubernetes Token Controller to sign generated service account tokens.
    saPublicKey String
    Service account public key used by Kubernetes API Server to validate service account tokens generated by the Token Controller.
    additionalProperties string
    caCert string
    Certificate for the Kubernetes API server.
    caKey string
    Private Key for the Kubernetes API server.
    classId string
    etcdCert string
    Certificate for the etcd cluster.
    etcdEncryptionKeys string[]
    (Array of schema.TypeString) -
    etcdKey string
    Private key for the etcd cluster.
    frontProxyCert string
    Certificate for the front proxy to support Kubernetes API aggregators.
    frontProxyKey string
    Private key for the front proxy to support Kubernetes API aggregators.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    saPrivateKey string
    Service account private key used by Kubernetes Token Controller to sign generated service account tokens.
    saPublicKey string
    Service account public key used by Kubernetes API Server to validate service account tokens generated by the Token Controller.
    additional_properties str
    ca_cert str
    Certificate for the Kubernetes API server.
    ca_key str
    Private Key for the Kubernetes API server.
    class_id str
    etcd_cert str
    Certificate for the etcd cluster.
    etcd_encryption_keys Sequence[str]
    (Array of schema.TypeString) -
    etcd_key str
    Private key for the etcd cluster.
    front_proxy_cert str
    Certificate for the front proxy to support Kubernetes API aggregators.
    front_proxy_key str
    Private key for the front proxy to support Kubernetes API aggregators.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    sa_private_key str
    Service account private key used by Kubernetes Token Controller to sign generated service account tokens.
    sa_public_key str
    Service account public key used by Kubernetes API Server to validate service account tokens generated by the Token Controller.
    additionalProperties String
    caCert String
    Certificate for the Kubernetes API server.
    caKey String
    Private Key for the Kubernetes API server.
    classId String
    etcdCert String
    Certificate for the etcd cluster.
    etcdEncryptionKeys List<String>
    (Array of schema.TypeString) -
    etcdKey String
    Private key for the etcd cluster.
    frontProxyCert String
    Certificate for the front proxy to support Kubernetes API aggregators.
    frontProxyKey String
    Private key for the front proxy to support Kubernetes API aggregators.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    saPrivateKey String
    Service account private key used by Kubernetes Token Controller to sign generated service account tokens.
    saPublicKey String
    Service account public key used by Kubernetes API Server to validate service account tokens generated by the Token Controller.

    KubernetesClusterProfileClusterIpPool, KubernetesClusterProfileClusterIpPoolArgs

    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'.

    KubernetesClusterProfileConfigContext, KubernetesClusterProfileConfigContextArgs

    AdditionalProperties string
    ClassId string
    ConfigState string
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
    ConfigStateSummary string
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
    ConfigType string
    (ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
    ControlAction string
    System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
    ErrorState string
    Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
    InconsistencyReasons List<string>
    (Array of schema.TypeString) -
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    OperState string
    (ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
    AdditionalProperties string
    ClassId string
    ConfigState string
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
    ConfigStateSummary string
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
    ConfigType string
    (ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
    ControlAction string
    System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
    ErrorState string
    Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
    InconsistencyReasons []string
    (Array of schema.TypeString) -
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    OperState string
    (ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
    additionalProperties String
    classId String
    configState String
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
    configStateSummary String
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
    configType String
    (ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
    controlAction String
    System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
    errorState String
    Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
    inconsistencyReasons List<String>
    (Array of schema.TypeString) -
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    operState String
    (ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
    additionalProperties string
    classId string
    configState string
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
    configStateSummary string
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
    configType string
    (ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
    controlAction string
    System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
    errorState string
    Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
    inconsistencyReasons string[]
    (Array of schema.TypeString) -
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    operState string
    (ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
    additional_properties str
    class_id str
    config_state str
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
    config_state_summary str
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
    config_type str
    (ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
    control_action str
    System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
    error_state str
    Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
    inconsistency_reasons Sequence[str]
    (Array of schema.TypeString) -
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    oper_state str
    (ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
    additionalProperties String
    classId String
    configState String
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
    configStateSummary String
    (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
    configType String
    (ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
    controlAction String
    System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
    errorState String
    Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
    inconsistencyReasons List<String>
    (Array of schema.TypeString) -
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    operState String
    (ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.

    KubernetesClusterProfileContainerRuntimeConfig, KubernetesClusterProfileContainerRuntimeConfigArgs

    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'.

    KubernetesClusterProfileContainerRuntimeProxyPolicy, KubernetesClusterProfileContainerRuntimeProxyPolicyArgs

    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'.

    KubernetesClusterProfileDeviceConnectorProxyPolicy, KubernetesClusterProfileDeviceConnectorProxyPolicyArgs

    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'.

    KubernetesClusterProfileEssentialAddon, KubernetesClusterProfileEssentialAddonArgs

    AdditionalProperties string
    AddonConfigurations List<KubernetesClusterProfileEssentialAddonAddonConfiguration>
    Addon configuration settings that are specific to a single cluster. This complex property has following sub-properties:
    AddonDefinitions List<KubernetesClusterProfileEssentialAddonAddonDefinition>
    Addon definition associated with the addon. This complex property has following sub-properties:
    ClassId string
    Name string
    Name of addon to be installed on a Kubernetes cluster.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    AdditionalProperties string
    AddonConfigurations []KubernetesClusterProfileEssentialAddonAddonConfiguration
    Addon configuration settings that are specific to a single cluster. This complex property has following sub-properties:
    AddonDefinitions []KubernetesClusterProfileEssentialAddonAddonDefinition
    Addon definition associated with the addon. This complex property has following sub-properties:
    ClassId string
    Name string
    Name of addon to be installed on a Kubernetes cluster.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    additionalProperties String
    addonConfigurations List<KubernetesClusterProfileEssentialAddonAddonConfiguration>
    Addon configuration settings that are specific to a single cluster. This complex property has following sub-properties:
    addonDefinitions List<KubernetesClusterProfileEssentialAddonAddonDefinition>
    Addon definition associated with the addon. This complex property has following sub-properties:
    classId String
    name String
    Name of addon to be installed on a Kubernetes cluster.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    additionalProperties string
    addonConfigurations KubernetesClusterProfileEssentialAddonAddonConfiguration[]
    Addon configuration settings that are specific to a single cluster. This complex property has following sub-properties:
    addonDefinitions KubernetesClusterProfileEssentialAddonAddonDefinition[]
    Addon definition associated with the addon. This complex property has following sub-properties:
    classId string
    name string
    Name of addon to be installed on a Kubernetes cluster.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    additional_properties str
    addon_configurations Sequence[KubernetesClusterProfileEssentialAddonAddonConfiguration]
    Addon configuration settings that are specific to a single cluster. This complex property has following sub-properties:
    addon_definitions Sequence[KubernetesClusterProfileEssentialAddonAddonDefinition]
    Addon definition associated with the addon. This complex property has following sub-properties:
    class_id str
    name str
    Name of addon to be installed on a Kubernetes cluster.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    additionalProperties String
    addonConfigurations List<Property Map>
    Addon configuration settings that are specific to a single cluster. This complex property has following sub-properties:
    addonDefinitions List<Property Map>
    Addon definition associated with the addon. This complex property has following sub-properties:
    classId String
    name String
    Name of addon to be installed on a Kubernetes cluster.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.

    KubernetesClusterProfileEssentialAddonAddonConfiguration, KubernetesClusterProfileEssentialAddonAddonConfigurationArgs

    AdditionalProperties string
    ClassId string
    InstallStrategy string
    Addon install strategy to determine whether an addon is installed if not present.* None - Unspecified install strategy.* NoAction - No install action performed.* InstallOnly - Only install in green field. No action in case of failure or removal.* Always - Attempt install if chart is not already installed.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    OverrideSets List<KubernetesClusterProfileEssentialAddonAddonConfigurationOverrideSet>
    This complex property has following sub-properties:
    Overrides string
    Properties that can be overridden for an addon.
    ReleaseName string
    Name for the helm release.
    ReleaseNamespace string
    Namespace for the helm release.
    UpgradeStrategy string
    Addon upgrade strategy to determine whether an addon configuration is overwritten on upgrade.* None - Unspecified upgrade strategy.* NoAction - This choice enables No upgrades to be performed.* UpgradeOnly - Attempt upgrade if chart or overrides options change, no action on upgrade failure.* ReinstallOnFailure - Attempt upgrade first. Remove and install on upgrade failure.* AlwaysReinstall - Always remove older release and reinstall.
    AdditionalProperties string
    ClassId string
    InstallStrategy string
    Addon install strategy to determine whether an addon is installed if not present.* None - Unspecified install strategy.* NoAction - No install action performed.* InstallOnly - Only install in green field. No action in case of failure or removal.* Always - Attempt install if chart is not already installed.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    OverrideSets []KubernetesClusterProfileEssentialAddonAddonConfigurationOverrideSet
    This complex property has following sub-properties:
    Overrides string
    Properties that can be overridden for an addon.
    ReleaseName string
    Name for the helm release.
    ReleaseNamespace string
    Namespace for the helm release.
    UpgradeStrategy string
    Addon upgrade strategy to determine whether an addon configuration is overwritten on upgrade.* None - Unspecified upgrade strategy.* NoAction - This choice enables No upgrades to be performed.* UpgradeOnly - Attempt upgrade if chart or overrides options change, no action on upgrade failure.* ReinstallOnFailure - Attempt upgrade first. Remove and install on upgrade failure.* AlwaysReinstall - Always remove older release and reinstall.
    additionalProperties String
    classId String
    installStrategy String
    Addon install strategy to determine whether an addon is installed if not present.* None - Unspecified install strategy.* NoAction - No install action performed.* InstallOnly - Only install in green field. No action in case of failure or removal.* Always - Attempt install if chart is not already installed.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    overrideSets List<KubernetesClusterProfileEssentialAddonAddonConfigurationOverrideSet>
    This complex property has following sub-properties:
    overrides String
    Properties that can be overridden for an addon.
    releaseName String
    Name for the helm release.
    releaseNamespace String
    Namespace for the helm release.
    upgradeStrategy String
    Addon upgrade strategy to determine whether an addon configuration is overwritten on upgrade.* None - Unspecified upgrade strategy.* NoAction - This choice enables No upgrades to be performed.* UpgradeOnly - Attempt upgrade if chart or overrides options change, no action on upgrade failure.* ReinstallOnFailure - Attempt upgrade first. Remove and install on upgrade failure.* AlwaysReinstall - Always remove older release and reinstall.
    additionalProperties string
    classId string
    installStrategy string
    Addon install strategy to determine whether an addon is installed if not present.* None - Unspecified install strategy.* NoAction - No install action performed.* InstallOnly - Only install in green field. No action in case of failure or removal.* Always - Attempt install if chart is not already installed.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    overrideSets KubernetesClusterProfileEssentialAddonAddonConfigurationOverrideSet[]
    This complex property has following sub-properties:
    overrides string
    Properties that can be overridden for an addon.
    releaseName string
    Name for the helm release.
    releaseNamespace string
    Namespace for the helm release.
    upgradeStrategy string
    Addon upgrade strategy to determine whether an addon configuration is overwritten on upgrade.* None - Unspecified upgrade strategy.* NoAction - This choice enables No upgrades to be performed.* UpgradeOnly - Attempt upgrade if chart or overrides options change, no action on upgrade failure.* ReinstallOnFailure - Attempt upgrade first. Remove and install on upgrade failure.* AlwaysReinstall - Always remove older release and reinstall.
    additional_properties str
    class_id str
    install_strategy str
    Addon install strategy to determine whether an addon is installed if not present.* None - Unspecified install strategy.* NoAction - No install action performed.* InstallOnly - Only install in green field. No action in case of failure or removal.* Always - Attempt install if chart is not already installed.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    override_sets Sequence[KubernetesClusterProfileEssentialAddonAddonConfigurationOverrideSet]
    This complex property has following sub-properties:
    overrides str
    Properties that can be overridden for an addon.
    release_name str
    Name for the helm release.
    release_namespace str
    Namespace for the helm release.
    upgrade_strategy str
    Addon upgrade strategy to determine whether an addon configuration is overwritten on upgrade.* None - Unspecified upgrade strategy.* NoAction - This choice enables No upgrades to be performed.* UpgradeOnly - Attempt upgrade if chart or overrides options change, no action on upgrade failure.* ReinstallOnFailure - Attempt upgrade first. Remove and install on upgrade failure.* AlwaysReinstall - Always remove older release and reinstall.
    additionalProperties String
    classId String
    installStrategy String
    Addon install strategy to determine whether an addon is installed if not present.* None - Unspecified install strategy.* NoAction - No install action performed.* InstallOnly - Only install in green field. No action in case of failure or removal.* Always - Attempt install if chart is not already installed.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    overrideSets List<Property Map>
    This complex property has following sub-properties:
    overrides String
    Properties that can be overridden for an addon.
    releaseName String
    Name for the helm release.
    releaseNamespace String
    Namespace for the helm release.
    upgradeStrategy String
    Addon upgrade strategy to determine whether an addon configuration is overwritten on upgrade.* None - Unspecified upgrade strategy.* NoAction - This choice enables No upgrades to be performed.* UpgradeOnly - Attempt upgrade if chart or overrides options change, no action on upgrade failure.* ReinstallOnFailure - Attempt upgrade first. Remove and install on upgrade failure.* AlwaysReinstall - Always remove older release and reinstall.

    KubernetesClusterProfileEssentialAddonAddonConfigurationOverrideSet, KubernetesClusterProfileEssentialAddonAddonConfigurationOverrideSetArgs

    AdditionalProperties string
    ClassId string
    Key string
    ObjectType string
    Value string
    AdditionalProperties string
    ClassId string
    Key string
    ObjectType string
    Value string
    additionalProperties String
    classId String
    key String
    objectType String
    value String
    additionalProperties string
    classId string
    key string
    objectType string
    value string
    additionalProperties String
    classId String
    key String
    objectType String
    value String

    KubernetesClusterProfileEssentialAddonAddonDefinition, KubernetesClusterProfileEssentialAddonAddonDefinitionArgs

    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'.

    KubernetesClusterProfileKubeConfig, KubernetesClusterProfileKubeConfigArgs

    AdditionalProperties string
    ClassId string
    KubeConfig string
    Kubernetes configuration to connect to the cluster as an system administrator.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    AdditionalProperties string
    ClassId string
    KubeConfig string
    Kubernetes configuration to connect to the cluster as an system administrator.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    additionalProperties String
    classId String
    kubeConfig String
    Kubernetes configuration to connect to the cluster as an system administrator.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    additionalProperties string
    classId string
    kubeConfig string
    Kubernetes configuration to connect to the cluster as an system administrator.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    additional_properties str
    class_id str
    kube_config str
    Kubernetes configuration to connect to the cluster as an system administrator.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    additionalProperties String
    classId String
    kubeConfig String
    Kubernetes configuration to connect to the cluster as an system administrator.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.

    KubernetesClusterProfileLoadbalancerBlockIpLease, KubernetesClusterProfileLoadbalancerBlockIpLeaseArgs

    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'.

    KubernetesClusterProfileLoadbalancerIpLease, KubernetesClusterProfileLoadbalancerIpLeaseArgs

    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'.

    KubernetesClusterProfileManagementConfig, KubernetesClusterProfileManagementConfigArgs

    AdditionalProperties string
    ClassId string
    IsTacPasswdSet bool
    (ReadOnly) Indicates whether the value of the 'tacPasswd' property has been set.
    LoadBalancerCount double
    Number of IP addresses to reserve for load balancer services.
    LoadBalancers List<string>
    (Array of schema.TypeString) -
    MasterVip string
    VIP for the cluster Kubernetes API server. If this is empty and a cluster IP pool is specified, it will be allocated from the IP pool.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    SshKeys List<string>
    (Array of schema.TypeString) -
    SshUser string
    (ReadOnly) Name of the user to SSH to nodes in a cluster.
    TacPasswd string
    Hashed password of the TAC user.
    AdditionalProperties string
    ClassId string
    IsTacPasswdSet bool
    (ReadOnly) Indicates whether the value of the 'tacPasswd' property has been set.
    LoadBalancerCount float64
    Number of IP addresses to reserve for load balancer services.
    LoadBalancers []string
    (Array of schema.TypeString) -
    MasterVip string
    VIP for the cluster Kubernetes API server. If this is empty and a cluster IP pool is specified, it will be allocated from the IP pool.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    SshKeys []string
    (Array of schema.TypeString) -
    SshUser string
    (ReadOnly) Name of the user to SSH to nodes in a cluster.
    TacPasswd string
    Hashed password of the TAC user.
    additionalProperties String
    classId String
    isTacPasswdSet Boolean
    (ReadOnly) Indicates whether the value of the 'tacPasswd' property has been set.
    loadBalancerCount Double
    Number of IP addresses to reserve for load balancer services.
    loadBalancers List<String>
    (Array of schema.TypeString) -
    masterVip String
    VIP for the cluster Kubernetes API server. If this is empty and a cluster IP pool is specified, it will be allocated from the IP pool.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    sshKeys List<String>
    (Array of schema.TypeString) -
    sshUser String
    (ReadOnly) Name of the user to SSH to nodes in a cluster.
    tacPasswd String
    Hashed password of the TAC user.
    additionalProperties string
    classId string
    isTacPasswdSet boolean
    (ReadOnly) Indicates whether the value of the 'tacPasswd' property has been set.
    loadBalancerCount number
    Number of IP addresses to reserve for load balancer services.
    loadBalancers string[]
    (Array of schema.TypeString) -
    masterVip string
    VIP for the cluster Kubernetes API server. If this is empty and a cluster IP pool is specified, it will be allocated from the IP pool.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    sshKeys string[]
    (Array of schema.TypeString) -
    sshUser string
    (ReadOnly) Name of the user to SSH to nodes in a cluster.
    tacPasswd string
    Hashed password of the TAC user.
    additional_properties str
    class_id str
    is_tac_passwd_set bool
    (ReadOnly) Indicates whether the value of the 'tacPasswd' property has been set.
    load_balancer_count float
    Number of IP addresses to reserve for load balancer services.
    load_balancers Sequence[str]
    (Array of schema.TypeString) -
    master_vip str
    VIP for the cluster Kubernetes API server. If this is empty and a cluster IP pool is specified, it will be allocated from the IP pool.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    ssh_keys Sequence[str]
    (Array of schema.TypeString) -
    ssh_user str
    (ReadOnly) Name of the user to SSH to nodes in a cluster.
    tac_passwd str
    Hashed password of the TAC user.
    additionalProperties String
    classId String
    isTacPasswdSet Boolean
    (ReadOnly) Indicates whether the value of the 'tacPasswd' property has been set.
    loadBalancerCount Number
    Number of IP addresses to reserve for load balancer services.
    loadBalancers List<String>
    (Array of schema.TypeString) -
    masterVip String
    VIP for the cluster Kubernetes API server. If this is empty and a cluster IP pool is specified, it will be allocated from the IP pool.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    sshKeys List<String>
    (Array of schema.TypeString) -
    sshUser String
    (ReadOnly) Name of the user to SSH to nodes in a cluster.
    tacPasswd String
    Hashed password of the TAC user.

    KubernetesClusterProfileMasterVipLease, KubernetesClusterProfileMasterVipLeaseArgs

    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'.

    KubernetesClusterProfileNetConfig, KubernetesClusterProfileNetConfigArgs

    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'.

    KubernetesClusterProfileNodeGroup, KubernetesClusterProfileNodeGroupArgs

    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'.

    KubernetesClusterProfileOrganization, KubernetesClusterProfileOrganizationArgs

    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'.

    KubernetesClusterProfileParent, KubernetesClusterProfileParentArgs

    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'.

    KubernetesClusterProfileParentSolutionProfile, KubernetesClusterProfileParentSolutionProfileArgs

    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'.

    KubernetesClusterProfilePermissionResource, KubernetesClusterProfilePermissionResourceArgs

    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'.

    KubernetesClusterProfilePolicyBucket, KubernetesClusterProfilePolicyBucketArgs

    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'.

    KubernetesClusterProfileScheduledAction, KubernetesClusterProfileScheduledActionArgs

    Action string
    Name of the action to be performed on the profile.
    ActionQualifiers List<KubernetesClusterProfileScheduledActionActionQualifier>
    Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
    AdditionalProperties string
    ClassId string
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    ProceedOnReboot bool
    ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
    Action string
    Name of the action to be performed on the profile.
    ActionQualifiers []KubernetesClusterProfileScheduledActionActionQualifier
    Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
    AdditionalProperties string
    ClassId string
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    ProceedOnReboot bool
    ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
    action String
    Name of the action to be performed on the profile.
    actionQualifiers List<KubernetesClusterProfileScheduledActionActionQualifier>
    Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
    additionalProperties String
    classId String
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    proceedOnReboot Boolean
    ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
    action string
    Name of the action to be performed on the profile.
    actionQualifiers KubernetesClusterProfileScheduledActionActionQualifier[]
    Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
    additionalProperties string
    classId string
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    proceedOnReboot boolean
    ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
    action str
    Name of the action to be performed on the profile.
    action_qualifiers Sequence[KubernetesClusterProfileScheduledActionActionQualifier]
    Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
    additional_properties str
    class_id str
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    proceed_on_reboot bool
    ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
    action String
    Name of the action to be performed on the profile.
    actionQualifiers List<Property Map>
    Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
    additionalProperties String
    classId String
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    proceedOnReboot Boolean
    ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.

    KubernetesClusterProfileScheduledActionActionQualifier, KubernetesClusterProfileScheduledActionActionQualifierArgs

    AdditionalProperties string
    ClassId string
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
    AdditionalProperties string
    ClassId string
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
    additionalProperties String
    classId String
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
    additionalProperties string
    classId string
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
    additional_properties str
    class_id str
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
    additionalProperties String
    classId String
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.

    KubernetesClusterProfileSrcTemplate, KubernetesClusterProfileSrcTemplateArgs

    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'.

    KubernetesClusterProfileSysConfig, KubernetesClusterProfileSysConfigArgs

    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'.

    KubernetesClusterProfileTag, KubernetesClusterProfileTagArgs

    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.

    KubernetesClusterProfileTrustedRegistry, KubernetesClusterProfileTrustedRegistryArgs

    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'.

    KubernetesClusterProfileVersionContext, KubernetesClusterProfileVersionContextArgs

    AdditionalProperties string
    ClassId string
    InterestedMos List<KubernetesClusterProfileVersionContextInterestedMo>
    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<KubernetesClusterProfileVersionContextRefMo>
    (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 []KubernetesClusterProfileVersionContextInterestedMo
    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 []KubernetesClusterProfileVersionContextRefMo
    (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<KubernetesClusterProfileVersionContextInterestedMo>
    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<KubernetesClusterProfileVersionContextRefMo>
    (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 KubernetesClusterProfileVersionContextInterestedMo[]
    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 KubernetesClusterProfileVersionContextRefMo[]
    (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[KubernetesClusterProfileVersionContextInterestedMo]
    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[KubernetesClusterProfileVersionContextRefMo]
    (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.

    KubernetesClusterProfileVersionContextInterestedMo, KubernetesClusterProfileVersionContextInterestedMoArgs

    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'.

    KubernetesClusterProfileVersionContextRefMo, KubernetesClusterProfileVersionContextRefMoArgs

    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'.

    KubernetesClusterProfileWorkflowInfo, KubernetesClusterProfileWorkflowInfoArgs

    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_cluster_profile can be imported using the Moid of the object, e.g.

    $ pulumi import intersight:index/kubernetesClusterProfile:KubernetesClusterProfile 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