1. Packages
  2. Azure Native
  3. API Docs
  4. kubernetesconfiguration
  5. Extension
Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi

azure-native.kubernetesconfiguration.Extension

Explore with Pulumi AI

azure-native logo
Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi

    The Extension Instance object. API Version: 2020-07-01-preview.

    Example Usage

    Create Extension

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var extension = new AzureNative.KubernetesConfiguration.Extension("extension", new()
        {
            AutoUpgradeMinorVersion = true,
            ClusterName = "clusterName1",
            ClusterResourceName = "connectedClusters",
            ClusterRp = "Microsoft.Kubernetes",
            ConfigurationProtectedSettings = 
            {
                { "omsagent.secret.key", "secretKeyValue01" },
            },
            ConfigurationSettings = 
            {
                { "omsagent.env.clusterName", "clusterName1" },
                { "omsagent.secret.wsid", "a38cef99-5a89-52ed-b6db-22095c23664b" },
            },
            ExtensionInstanceName = "ClusterMonitor",
            ExtensionType = "azuremonitor-containers",
            ReleaseTrain = "Preview",
            ResourceGroupName = "rg1",
            Scope = new AzureNative.KubernetesConfiguration.Inputs.ScopeArgs
            {
                Cluster = new AzureNative.KubernetesConfiguration.Inputs.ScopeClusterArgs
                {
                    ReleaseNamespace = "kube-system",
                },
            },
        });
    
    });
    
    package main
    
    import (
    	kubernetesconfiguration "github.com/pulumi/pulumi-azure-native-sdk/kubernetesconfiguration"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := kubernetesconfiguration.NewExtension(ctx, "extension", &kubernetesconfiguration.ExtensionArgs{
    			AutoUpgradeMinorVersion: pulumi.Bool(true),
    			ClusterName:             pulumi.String("clusterName1"),
    			ClusterResourceName:     pulumi.String("connectedClusters"),
    			ClusterRp:               pulumi.String("Microsoft.Kubernetes"),
    			ConfigurationProtectedSettings: pulumi.StringMap{
    				"omsagent.secret.key": pulumi.String("secretKeyValue01"),
    			},
    			ConfigurationSettings: pulumi.StringMap{
    				"omsagent.env.clusterName": pulumi.String("clusterName1"),
    				"omsagent.secret.wsid":     pulumi.String("a38cef99-5a89-52ed-b6db-22095c23664b"),
    			},
    			ExtensionInstanceName: pulumi.String("ClusterMonitor"),
    			ExtensionType:         pulumi.String("azuremonitor-containers"),
    			ReleaseTrain:          pulumi.String("Preview"),
    			ResourceGroupName:     pulumi.String("rg1"),
    			Scope: kubernetesconfiguration.ScopeResponse{
    				Cluster: &kubernetesconfiguration.ScopeClusterArgs{
    					ReleaseNamespace: pulumi.String("kube-system"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.kubernetesconfiguration.Extension;
    import com.pulumi.azurenative.kubernetesconfiguration.ExtensionArgs;
    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) {
            var extension = new Extension("extension", ExtensionArgs.builder()        
                .autoUpgradeMinorVersion(true)
                .clusterName("clusterName1")
                .clusterResourceName("connectedClusters")
                .clusterRp("Microsoft.Kubernetes")
                .configurationProtectedSettings(Map.of("omsagent.secret.key", "secretKeyValue01"))
                .configurationSettings(Map.ofEntries(
                    Map.entry("omsagent.env.clusterName", "clusterName1"),
                    Map.entry("omsagent.secret.wsid", "a38cef99-5a89-52ed-b6db-22095c23664b")
                ))
                .extensionInstanceName("ClusterMonitor")
                .extensionType("azuremonitor-containers")
                .releaseTrain("Preview")
                .resourceGroupName("rg1")
                .scope(Map.of("cluster", Map.of("releaseNamespace", "kube-system")))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    extension = azure_native.kubernetesconfiguration.Extension("extension",
        auto_upgrade_minor_version=True,
        cluster_name="clusterName1",
        cluster_resource_name="connectedClusters",
        cluster_rp="Microsoft.Kubernetes",
        configuration_protected_settings={
            "omsagent.secret.key": "secretKeyValue01",
        },
        configuration_settings={
            "omsagent.env.clusterName": "clusterName1",
            "omsagent.secret.wsid": "a38cef99-5a89-52ed-b6db-22095c23664b",
        },
        extension_instance_name="ClusterMonitor",
        extension_type="azuremonitor-containers",
        release_train="Preview",
        resource_group_name="rg1",
        scope=azure_native.kubernetesconfiguration.ScopeResponseArgs(
            cluster=azure_native.kubernetesconfiguration.ScopeClusterArgs(
                release_namespace="kube-system",
            ),
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const extension = new azure_native.kubernetesconfiguration.Extension("extension", {
        autoUpgradeMinorVersion: true,
        clusterName: "clusterName1",
        clusterResourceName: "connectedClusters",
        clusterRp: "Microsoft.Kubernetes",
        configurationProtectedSettings: {
            "omsagent.secret.key": "secretKeyValue01",
        },
        configurationSettings: {
            "omsagent.env.clusterName": "clusterName1",
            "omsagent.secret.wsid": "a38cef99-5a89-52ed-b6db-22095c23664b",
        },
        extensionInstanceName: "ClusterMonitor",
        extensionType: "azuremonitor-containers",
        releaseTrain: "Preview",
        resourceGroupName: "rg1",
        scope: {
            cluster: {
                releaseNamespace: "kube-system",
            },
        },
    });
    
    resources:
      extension:
        type: azure-native:kubernetesconfiguration:Extension
        properties:
          autoUpgradeMinorVersion: true
          clusterName: clusterName1
          clusterResourceName: connectedClusters
          clusterRp: Microsoft.Kubernetes
          configurationProtectedSettings:
            omsagent.secret.key: secretKeyValue01
          configurationSettings:
            omsagent.env.clusterName: clusterName1
            omsagent.secret.wsid: a38cef99-5a89-52ed-b6db-22095c23664b
          extensionInstanceName: ClusterMonitor
          extensionType: azuremonitor-containers
          releaseTrain: Preview
          resourceGroupName: rg1
          scope:
            cluster:
              releaseNamespace: kube-system
    

    Create Extension Resource

    new Extension(name: string, args: ExtensionArgs, opts?: CustomResourceOptions);
    @overload
    def Extension(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  auto_upgrade_minor_version: Optional[bool] = None,
                  cluster_name: Optional[str] = None,
                  cluster_resource_name: Optional[str] = None,
                  cluster_rp: Optional[str] = None,
                  configuration_protected_settings: Optional[Mapping[str, str]] = None,
                  configuration_settings: Optional[Mapping[str, str]] = None,
                  extension_instance_name: Optional[str] = None,
                  extension_type: Optional[str] = None,
                  identity: Optional[ConfigurationIdentityArgs] = None,
                  release_train: Optional[str] = None,
                  resource_group_name: Optional[str] = None,
                  scope: Optional[ScopeArgs] = None,
                  statuses: Optional[Sequence[ExtensionStatusArgs]] = None,
                  version: Optional[str] = None)
    @overload
    def Extension(resource_name: str,
                  args: ExtensionArgs,
                  opts: Optional[ResourceOptions] = None)
    func NewExtension(ctx *Context, name string, args ExtensionArgs, opts ...ResourceOption) (*Extension, error)
    public Extension(string name, ExtensionArgs args, CustomResourceOptions? opts = null)
    public Extension(String name, ExtensionArgs args)
    public Extension(String name, ExtensionArgs args, CustomResourceOptions options)
    
    type: azure-native:kubernetesconfiguration:Extension
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ExtensionArgs
    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 ExtensionArgs
    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 ExtensionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ExtensionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ExtensionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Extension Resource Properties

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

    Inputs

    The Extension resource accepts the following input properties:

    ClusterName string

    The name of the kubernetes cluster.

    ClusterResourceName string

    The Kubernetes cluster resource name - either managedClusters (for AKS clusters) or connectedClusters (for OnPrem K8S clusters).

    ClusterRp string

    The Kubernetes cluster RP - either Microsoft.ContainerService (for AKS clusters) or Microsoft.Kubernetes (for OnPrem K8S clusters).

    ResourceGroupName string

    The name of the resource group.

    AutoUpgradeMinorVersion bool

    Flag to note if this instance participates in auto upgrade of minor version, or not.

    ConfigurationProtectedSettings Dictionary<string, string>

    Configuration settings that are sensitive, as name-value pairs for configuring this instance of the extension.

    ConfigurationSettings Dictionary<string, string>

    Configuration settings, as name-value pairs for configuring this instance of the extension.

    ExtensionInstanceName string

    Name of an instance of the Extension.

    ExtensionType string

    Type of the Extension, of which this resource is an instance of. It must be one of the Extension Types registered with Microsoft.KubernetesConfiguration by the Extension publisher.

    Identity Pulumi.AzureNative.KubernetesConfiguration.Inputs.ConfigurationIdentityArgs

    The identity of the configuration.

    ReleaseTrain string

    ReleaseTrain this extension instance participates in for auto-upgrade (e.g. Stable, Preview, etc.) - only if autoUpgradeMinorVersion is 'true'.

    Scope Pulumi.AzureNative.KubernetesConfiguration.Inputs.ScopeArgs

    Scope at which the extension instance is installed.

    Statuses List<Pulumi.AzureNative.KubernetesConfiguration.Inputs.ExtensionStatusArgs>

    Status from this instance of the extension.

    Version string

    Version of the extension for this extension instance, if it is 'pinned' to a specific version. autoUpgradeMinorVersion must be 'false'.

    ClusterName string

    The name of the kubernetes cluster.

    ClusterResourceName string

    The Kubernetes cluster resource name - either managedClusters (for AKS clusters) or connectedClusters (for OnPrem K8S clusters).

    ClusterRp string

    The Kubernetes cluster RP - either Microsoft.ContainerService (for AKS clusters) or Microsoft.Kubernetes (for OnPrem K8S clusters).

    ResourceGroupName string

    The name of the resource group.

    AutoUpgradeMinorVersion bool

    Flag to note if this instance participates in auto upgrade of minor version, or not.

    ConfigurationProtectedSettings map[string]string

    Configuration settings that are sensitive, as name-value pairs for configuring this instance of the extension.

    ConfigurationSettings map[string]string

    Configuration settings, as name-value pairs for configuring this instance of the extension.

    ExtensionInstanceName string

    Name of an instance of the Extension.

    ExtensionType string

    Type of the Extension, of which this resource is an instance of. It must be one of the Extension Types registered with Microsoft.KubernetesConfiguration by the Extension publisher.

    Identity ConfigurationIdentityArgs

    The identity of the configuration.

    ReleaseTrain string

    ReleaseTrain this extension instance participates in for auto-upgrade (e.g. Stable, Preview, etc.) - only if autoUpgradeMinorVersion is 'true'.

    Scope ScopeArgs

    Scope at which the extension instance is installed.

    Statuses []ExtensionStatusArgs

    Status from this instance of the extension.

    Version string

    Version of the extension for this extension instance, if it is 'pinned' to a specific version. autoUpgradeMinorVersion must be 'false'.

    clusterName String

    The name of the kubernetes cluster.

    clusterResourceName String

    The Kubernetes cluster resource name - either managedClusters (for AKS clusters) or connectedClusters (for OnPrem K8S clusters).

    clusterRp String

    The Kubernetes cluster RP - either Microsoft.ContainerService (for AKS clusters) or Microsoft.Kubernetes (for OnPrem K8S clusters).

    resourceGroupName String

    The name of the resource group.

    autoUpgradeMinorVersion Boolean

    Flag to note if this instance participates in auto upgrade of minor version, or not.

    configurationProtectedSettings Map<String,String>

    Configuration settings that are sensitive, as name-value pairs for configuring this instance of the extension.

    configurationSettings Map<String,String>

    Configuration settings, as name-value pairs for configuring this instance of the extension.

    extensionInstanceName String

    Name of an instance of the Extension.

    extensionType String

    Type of the Extension, of which this resource is an instance of. It must be one of the Extension Types registered with Microsoft.KubernetesConfiguration by the Extension publisher.

    identity ConfigurationIdentityArgs

    The identity of the configuration.

    releaseTrain String

    ReleaseTrain this extension instance participates in for auto-upgrade (e.g. Stable, Preview, etc.) - only if autoUpgradeMinorVersion is 'true'.

    scope ScopeArgs

    Scope at which the extension instance is installed.

    statuses List<ExtensionStatusArgs>

    Status from this instance of the extension.

    version String

    Version of the extension for this extension instance, if it is 'pinned' to a specific version. autoUpgradeMinorVersion must be 'false'.

    clusterName string

    The name of the kubernetes cluster.

    clusterResourceName string

    The Kubernetes cluster resource name - either managedClusters (for AKS clusters) or connectedClusters (for OnPrem K8S clusters).

    clusterRp string

    The Kubernetes cluster RP - either Microsoft.ContainerService (for AKS clusters) or Microsoft.Kubernetes (for OnPrem K8S clusters).

    resourceGroupName string

    The name of the resource group.

    autoUpgradeMinorVersion boolean

    Flag to note if this instance participates in auto upgrade of minor version, or not.

    configurationProtectedSettings {[key: string]: string}

    Configuration settings that are sensitive, as name-value pairs for configuring this instance of the extension.

    configurationSettings {[key: string]: string}

    Configuration settings, as name-value pairs for configuring this instance of the extension.

    extensionInstanceName string

    Name of an instance of the Extension.

    extensionType string

    Type of the Extension, of which this resource is an instance of. It must be one of the Extension Types registered with Microsoft.KubernetesConfiguration by the Extension publisher.

    identity ConfigurationIdentityArgs

    The identity of the configuration.

    releaseTrain string

    ReleaseTrain this extension instance participates in for auto-upgrade (e.g. Stable, Preview, etc.) - only if autoUpgradeMinorVersion is 'true'.

    scope ScopeArgs

    Scope at which the extension instance is installed.

    statuses ExtensionStatusArgs[]

    Status from this instance of the extension.

    version string

    Version of the extension for this extension instance, if it is 'pinned' to a specific version. autoUpgradeMinorVersion must be 'false'.

    cluster_name str

    The name of the kubernetes cluster.

    cluster_resource_name str

    The Kubernetes cluster resource name - either managedClusters (for AKS clusters) or connectedClusters (for OnPrem K8S clusters).

    cluster_rp str

    The Kubernetes cluster RP - either Microsoft.ContainerService (for AKS clusters) or Microsoft.Kubernetes (for OnPrem K8S clusters).

    resource_group_name str

    The name of the resource group.

    auto_upgrade_minor_version bool

    Flag to note if this instance participates in auto upgrade of minor version, or not.

    configuration_protected_settings Mapping[str, str]

    Configuration settings that are sensitive, as name-value pairs for configuring this instance of the extension.

    configuration_settings Mapping[str, str]

    Configuration settings, as name-value pairs for configuring this instance of the extension.

    extension_instance_name str

    Name of an instance of the Extension.

    extension_type str

    Type of the Extension, of which this resource is an instance of. It must be one of the Extension Types registered with Microsoft.KubernetesConfiguration by the Extension publisher.

    identity ConfigurationIdentityArgs

    The identity of the configuration.

    release_train str

    ReleaseTrain this extension instance participates in for auto-upgrade (e.g. Stable, Preview, etc.) - only if autoUpgradeMinorVersion is 'true'.

    scope ScopeArgs

    Scope at which the extension instance is installed.

    statuses Sequence[ExtensionStatusArgs]

    Status from this instance of the extension.

    version str

    Version of the extension for this extension instance, if it is 'pinned' to a specific version. autoUpgradeMinorVersion must be 'false'.

    clusterName String

    The name of the kubernetes cluster.

    clusterResourceName String

    The Kubernetes cluster resource name - either managedClusters (for AKS clusters) or connectedClusters (for OnPrem K8S clusters).

    clusterRp String

    The Kubernetes cluster RP - either Microsoft.ContainerService (for AKS clusters) or Microsoft.Kubernetes (for OnPrem K8S clusters).

    resourceGroupName String

    The name of the resource group.

    autoUpgradeMinorVersion Boolean

    Flag to note if this instance participates in auto upgrade of minor version, or not.

    configurationProtectedSettings Map<String>

    Configuration settings that are sensitive, as name-value pairs for configuring this instance of the extension.

    configurationSettings Map<String>

    Configuration settings, as name-value pairs for configuring this instance of the extension.

    extensionInstanceName String

    Name of an instance of the Extension.

    extensionType String

    Type of the Extension, of which this resource is an instance of. It must be one of the Extension Types registered with Microsoft.KubernetesConfiguration by the Extension publisher.

    identity Property Map

    The identity of the configuration.

    releaseTrain String

    ReleaseTrain this extension instance participates in for auto-upgrade (e.g. Stable, Preview, etc.) - only if autoUpgradeMinorVersion is 'true'.

    scope Property Map

    Scope at which the extension instance is installed.

    statuses List<Property Map>

    Status from this instance of the extension.

    version String

    Version of the extension for this extension instance, if it is 'pinned' to a specific version. autoUpgradeMinorVersion must be 'false'.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Extension resource produces the following output properties:

    CreationTime string

    DateLiteral (per ISO8601) noting the time the resource was created by the client (user).

    ErrorInfo Pulumi.AzureNative.KubernetesConfiguration.Outputs.ErrorDefinitionResponse

    Error information from the Agent - e.g. errors during installation.

    Id string

    The provider-assigned unique ID for this managed resource.

    InstallState string

    Status of installation of this instance of the extension.

    LastModifiedTime string

    DateLiteral (per ISO8601) noting the time the resource was modified by the client (user).

    LastStatusTime string

    DateLiteral (per ISO8601) noting the time of last status from the agent.

    Name string

    Resource name

    Type string

    Resource type

    SystemData Pulumi.AzureNative.KubernetesConfiguration.Outputs.SystemDataResponse

    Top level metadata https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/common-api-contracts.md#system-metadata-for-all-azure-resources

    CreationTime string

    DateLiteral (per ISO8601) noting the time the resource was created by the client (user).

    ErrorInfo ErrorDefinitionResponse

    Error information from the Agent - e.g. errors during installation.

    Id string

    The provider-assigned unique ID for this managed resource.

    InstallState string

    Status of installation of this instance of the extension.

    LastModifiedTime string

    DateLiteral (per ISO8601) noting the time the resource was modified by the client (user).

    LastStatusTime string

    DateLiteral (per ISO8601) noting the time of last status from the agent.

    Name string

    Resource name

    Type string

    Resource type

    SystemData SystemDataResponse

    Top level metadata https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/common-api-contracts.md#system-metadata-for-all-azure-resources

    creationTime String

    DateLiteral (per ISO8601) noting the time the resource was created by the client (user).

    errorInfo ErrorDefinitionResponse

    Error information from the Agent - e.g. errors during installation.

    id String

    The provider-assigned unique ID for this managed resource.

    installState String

    Status of installation of this instance of the extension.

    lastModifiedTime String

    DateLiteral (per ISO8601) noting the time the resource was modified by the client (user).

    lastStatusTime String

    DateLiteral (per ISO8601) noting the time of last status from the agent.

    name String

    Resource name

    type String

    Resource type

    systemData SystemDataResponse

    Top level metadata https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/common-api-contracts.md#system-metadata-for-all-azure-resources

    creationTime string

    DateLiteral (per ISO8601) noting the time the resource was created by the client (user).

    errorInfo ErrorDefinitionResponse

    Error information from the Agent - e.g. errors during installation.

    id string

    The provider-assigned unique ID for this managed resource.

    installState string

    Status of installation of this instance of the extension.

    lastModifiedTime string

    DateLiteral (per ISO8601) noting the time the resource was modified by the client (user).

    lastStatusTime string

    DateLiteral (per ISO8601) noting the time of last status from the agent.

    name string

    Resource name

    type string

    Resource type

    systemData SystemDataResponse

    Top level metadata https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/common-api-contracts.md#system-metadata-for-all-azure-resources

    creation_time str

    DateLiteral (per ISO8601) noting the time the resource was created by the client (user).

    error_info ErrorDefinitionResponse

    Error information from the Agent - e.g. errors during installation.

    id str

    The provider-assigned unique ID for this managed resource.

    install_state str

    Status of installation of this instance of the extension.

    last_modified_time str

    DateLiteral (per ISO8601) noting the time the resource was modified by the client (user).

    last_status_time str

    DateLiteral (per ISO8601) noting the time of last status from the agent.

    name str

    Resource name

    type str

    Resource type

    system_data SystemDataResponse

    Top level metadata https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/common-api-contracts.md#system-metadata-for-all-azure-resources

    creationTime String

    DateLiteral (per ISO8601) noting the time the resource was created by the client (user).

    errorInfo Property Map

    Error information from the Agent - e.g. errors during installation.

    id String

    The provider-assigned unique ID for this managed resource.

    installState String

    Status of installation of this instance of the extension.

    lastModifiedTime String

    DateLiteral (per ISO8601) noting the time the resource was modified by the client (user).

    lastStatusTime String

    DateLiteral (per ISO8601) noting the time of last status from the agent.

    name String

    Resource name

    type String

    Resource type

    systemData Property Map

    Top level metadata https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/common-api-contracts.md#system-metadata-for-all-azure-resources

    Supporting Types

    ConfigurationIdentity

    Type Pulumi.AzureNative.KubernetesConfiguration.ResourceIdentityType

    The type of identity used for the configuration. Type 'SystemAssigned' will use an implicitly created identity. Type 'None' will not use Managed Identity for the configuration.

    Type ResourceIdentityType

    The type of identity used for the configuration. Type 'SystemAssigned' will use an implicitly created identity. Type 'None' will not use Managed Identity for the configuration.

    type ResourceIdentityType

    The type of identity used for the configuration. Type 'SystemAssigned' will use an implicitly created identity. Type 'None' will not use Managed Identity for the configuration.

    type ResourceIdentityType

    The type of identity used for the configuration. Type 'SystemAssigned' will use an implicitly created identity. Type 'None' will not use Managed Identity for the configuration.

    type ResourceIdentityType

    The type of identity used for the configuration. Type 'SystemAssigned' will use an implicitly created identity. Type 'None' will not use Managed Identity for the configuration.

    type "SystemAssigned" | "None"

    The type of identity used for the configuration. Type 'SystemAssigned' will use an implicitly created identity. Type 'None' will not use Managed Identity for the configuration.

    ConfigurationIdentityResponse

    PrincipalId string

    The principal id of the system assigned identity which is used by the configuration.

    TenantId string

    The tenant id of the system assigned identity which is used by the configuration.

    Type string

    The type of identity used for the configuration. Type 'SystemAssigned' will use an implicitly created identity. Type 'None' will not use Managed Identity for the configuration.

    PrincipalId string

    The principal id of the system assigned identity which is used by the configuration.

    TenantId string

    The tenant id of the system assigned identity which is used by the configuration.

    Type string

    The type of identity used for the configuration. Type 'SystemAssigned' will use an implicitly created identity. Type 'None' will not use Managed Identity for the configuration.

    principalId String

    The principal id of the system assigned identity which is used by the configuration.

    tenantId String

    The tenant id of the system assigned identity which is used by the configuration.

    type String

    The type of identity used for the configuration. Type 'SystemAssigned' will use an implicitly created identity. Type 'None' will not use Managed Identity for the configuration.

    principalId string

    The principal id of the system assigned identity which is used by the configuration.

    tenantId string

    The tenant id of the system assigned identity which is used by the configuration.

    type string

    The type of identity used for the configuration. Type 'SystemAssigned' will use an implicitly created identity. Type 'None' will not use Managed Identity for the configuration.

    principal_id str

    The principal id of the system assigned identity which is used by the configuration.

    tenant_id str

    The tenant id of the system assigned identity which is used by the configuration.

    type str

    The type of identity used for the configuration. Type 'SystemAssigned' will use an implicitly created identity. Type 'None' will not use Managed Identity for the configuration.

    principalId String

    The principal id of the system assigned identity which is used by the configuration.

    tenantId String

    The tenant id of the system assigned identity which is used by the configuration.

    type String

    The type of identity used for the configuration. Type 'SystemAssigned' will use an implicitly created identity. Type 'None' will not use Managed Identity for the configuration.

    ErrorDefinitionResponse

    Code string

    Service specific error code which serves as the substatus for the HTTP error code.

    Message string

    Description of the error.

    Code string

    Service specific error code which serves as the substatus for the HTTP error code.

    Message string

    Description of the error.

    code String

    Service specific error code which serves as the substatus for the HTTP error code.

    message String

    Description of the error.

    code string

    Service specific error code which serves as the substatus for the HTTP error code.

    message string

    Description of the error.

    code str

    Service specific error code which serves as the substatus for the HTTP error code.

    message str

    Description of the error.

    code String

    Service specific error code which serves as the substatus for the HTTP error code.

    message String

    Description of the error.

    ExtensionStatus

    Code string

    Status code provided by the Extension

    DisplayStatus string

    Short description of status of this instance of the extension.

    Level string | Pulumi.AzureNative.KubernetesConfiguration.LevelType

    Level of the status.

    Message string

    Detailed message of the status from the Extension instance.

    Time string

    DateLiteral (per ISO8601) noting the time of installation status.

    Code string

    Status code provided by the Extension

    DisplayStatus string

    Short description of status of this instance of the extension.

    Level string | LevelType

    Level of the status.

    Message string

    Detailed message of the status from the Extension instance.

    Time string

    DateLiteral (per ISO8601) noting the time of installation status.

    code String

    Status code provided by the Extension

    displayStatus String

    Short description of status of this instance of the extension.

    level String | LevelType

    Level of the status.

    message String

    Detailed message of the status from the Extension instance.

    time String

    DateLiteral (per ISO8601) noting the time of installation status.

    code string

    Status code provided by the Extension

    displayStatus string

    Short description of status of this instance of the extension.

    level string | LevelType

    Level of the status.

    message string

    Detailed message of the status from the Extension instance.

    time string

    DateLiteral (per ISO8601) noting the time of installation status.

    code str

    Status code provided by the Extension

    display_status str

    Short description of status of this instance of the extension.

    level str | LevelType

    Level of the status.

    message str

    Detailed message of the status from the Extension instance.

    time str

    DateLiteral (per ISO8601) noting the time of installation status.

    code String

    Status code provided by the Extension

    displayStatus String

    Short description of status of this instance of the extension.

    level String | "Error" | "Warning" | "Information"

    Level of the status.

    message String

    Detailed message of the status from the Extension instance.

    time String

    DateLiteral (per ISO8601) noting the time of installation status.

    ExtensionStatusResponse

    Code string

    Status code provided by the Extension

    DisplayStatus string

    Short description of status of this instance of the extension.

    Level string

    Level of the status.

    Message string

    Detailed message of the status from the Extension instance.

    Time string

    DateLiteral (per ISO8601) noting the time of installation status.

    Code string

    Status code provided by the Extension

    DisplayStatus string

    Short description of status of this instance of the extension.

    Level string

    Level of the status.

    Message string

    Detailed message of the status from the Extension instance.

    Time string

    DateLiteral (per ISO8601) noting the time of installation status.

    code String

    Status code provided by the Extension

    displayStatus String

    Short description of status of this instance of the extension.

    level String

    Level of the status.

    message String

    Detailed message of the status from the Extension instance.

    time String

    DateLiteral (per ISO8601) noting the time of installation status.

    code string

    Status code provided by the Extension

    displayStatus string

    Short description of status of this instance of the extension.

    level string

    Level of the status.

    message string

    Detailed message of the status from the Extension instance.

    time string

    DateLiteral (per ISO8601) noting the time of installation status.

    code str

    Status code provided by the Extension

    display_status str

    Short description of status of this instance of the extension.

    level str

    Level of the status.

    message str

    Detailed message of the status from the Extension instance.

    time str

    DateLiteral (per ISO8601) noting the time of installation status.

    code String

    Status code provided by the Extension

    displayStatus String

    Short description of status of this instance of the extension.

    level String

    Level of the status.

    message String

    Detailed message of the status from the Extension instance.

    time String

    DateLiteral (per ISO8601) noting the time of installation status.

    LevelType

    Error
    Error
    Warning
    Warning
    Information
    Information
    LevelTypeError
    Error
    LevelTypeWarning
    Warning
    LevelTypeInformation
    Information
    Error
    Error
    Warning
    Warning
    Information
    Information
    Error
    Error
    Warning
    Warning
    Information
    Information
    ERROR
    Error
    WARNING
    Warning
    INFORMATION
    Information
    "Error"
    Error
    "Warning"
    Warning
    "Information"
    Information

    ResourceIdentityType

    SystemAssigned
    SystemAssigned
    None
    None
    ResourceIdentityTypeSystemAssigned
    SystemAssigned
    ResourceIdentityTypeNone
    None
    SystemAssigned
    SystemAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    None
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    NONE
    None
    "SystemAssigned"
    SystemAssigned
    "None"
    None

    Scope

    Cluster Pulumi.AzureNative.KubernetesConfiguration.Inputs.ScopeCluster

    Specifies that the scope of the extensionInstance is Cluster

    Namespace Pulumi.AzureNative.KubernetesConfiguration.Inputs.ScopeNamespace

    Specifies that the scope of the extensionInstance is Namespace

    Cluster ScopeCluster

    Specifies that the scope of the extensionInstance is Cluster

    Namespace ScopeNamespace

    Specifies that the scope of the extensionInstance is Namespace

    cluster ScopeCluster

    Specifies that the scope of the extensionInstance is Cluster

    namespace ScopeNamespace

    Specifies that the scope of the extensionInstance is Namespace

    cluster ScopeCluster

    Specifies that the scope of the extensionInstance is Cluster

    namespace ScopeNamespace

    Specifies that the scope of the extensionInstance is Namespace

    cluster ScopeCluster

    Specifies that the scope of the extensionInstance is Cluster

    namespace ScopeNamespace

    Specifies that the scope of the extensionInstance is Namespace

    cluster Property Map

    Specifies that the scope of the extensionInstance is Cluster

    namespace Property Map

    Specifies that the scope of the extensionInstance is Namespace

    ScopeCluster

    ReleaseNamespace string

    Namespace where the extension Release must be placed, for a Cluster scoped extensionInstance. If this namespace does not exist, it will be created

    ReleaseNamespace string

    Namespace where the extension Release must be placed, for a Cluster scoped extensionInstance. If this namespace does not exist, it will be created

    releaseNamespace String

    Namespace where the extension Release must be placed, for a Cluster scoped extensionInstance. If this namespace does not exist, it will be created

    releaseNamespace string

    Namespace where the extension Release must be placed, for a Cluster scoped extensionInstance. If this namespace does not exist, it will be created

    release_namespace str

    Namespace where the extension Release must be placed, for a Cluster scoped extensionInstance. If this namespace does not exist, it will be created

    releaseNamespace String

    Namespace where the extension Release must be placed, for a Cluster scoped extensionInstance. If this namespace does not exist, it will be created

    ScopeClusterResponse

    ReleaseNamespace string

    Namespace where the extension Release must be placed, for a Cluster scoped extensionInstance. If this namespace does not exist, it will be created

    ReleaseNamespace string

    Namespace where the extension Release must be placed, for a Cluster scoped extensionInstance. If this namespace does not exist, it will be created

    releaseNamespace String

    Namespace where the extension Release must be placed, for a Cluster scoped extensionInstance. If this namespace does not exist, it will be created

    releaseNamespace string

    Namespace where the extension Release must be placed, for a Cluster scoped extensionInstance. If this namespace does not exist, it will be created

    release_namespace str

    Namespace where the extension Release must be placed, for a Cluster scoped extensionInstance. If this namespace does not exist, it will be created

    releaseNamespace String

    Namespace where the extension Release must be placed, for a Cluster scoped extensionInstance. If this namespace does not exist, it will be created

    ScopeNamespace

    TargetNamespace string

    Namespace where the extensionInstance will be created for an Namespace scoped extensionInstance. If this namespace does not exist, it will be created

    TargetNamespace string

    Namespace where the extensionInstance will be created for an Namespace scoped extensionInstance. If this namespace does not exist, it will be created

    targetNamespace String

    Namespace where the extensionInstance will be created for an Namespace scoped extensionInstance. If this namespace does not exist, it will be created

    targetNamespace string

    Namespace where the extensionInstance will be created for an Namespace scoped extensionInstance. If this namespace does not exist, it will be created

    target_namespace str

    Namespace where the extensionInstance will be created for an Namespace scoped extensionInstance. If this namespace does not exist, it will be created

    targetNamespace String

    Namespace where the extensionInstance will be created for an Namespace scoped extensionInstance. If this namespace does not exist, it will be created

    ScopeNamespaceResponse

    TargetNamespace string

    Namespace where the extensionInstance will be created for an Namespace scoped extensionInstance. If this namespace does not exist, it will be created

    TargetNamespace string

    Namespace where the extensionInstance will be created for an Namespace scoped extensionInstance. If this namespace does not exist, it will be created

    targetNamespace String

    Namespace where the extensionInstance will be created for an Namespace scoped extensionInstance. If this namespace does not exist, it will be created

    targetNamespace string

    Namespace where the extensionInstance will be created for an Namespace scoped extensionInstance. If this namespace does not exist, it will be created

    target_namespace str

    Namespace where the extensionInstance will be created for an Namespace scoped extensionInstance. If this namespace does not exist, it will be created

    targetNamespace String

    Namespace where the extensionInstance will be created for an Namespace scoped extensionInstance. If this namespace does not exist, it will be created

    ScopeResponse

    Cluster Pulumi.AzureNative.KubernetesConfiguration.Inputs.ScopeClusterResponse

    Specifies that the scope of the extensionInstance is Cluster

    Namespace Pulumi.AzureNative.KubernetesConfiguration.Inputs.ScopeNamespaceResponse

    Specifies that the scope of the extensionInstance is Namespace

    Cluster ScopeClusterResponse

    Specifies that the scope of the extensionInstance is Cluster

    Namespace ScopeNamespaceResponse

    Specifies that the scope of the extensionInstance is Namespace

    cluster ScopeClusterResponse

    Specifies that the scope of the extensionInstance is Cluster

    namespace ScopeNamespaceResponse

    Specifies that the scope of the extensionInstance is Namespace

    cluster ScopeClusterResponse

    Specifies that the scope of the extensionInstance is Cluster

    namespace ScopeNamespaceResponse

    Specifies that the scope of the extensionInstance is Namespace

    cluster ScopeClusterResponse

    Specifies that the scope of the extensionInstance is Cluster

    namespace ScopeNamespaceResponse

    Specifies that the scope of the extensionInstance is Namespace

    cluster Property Map

    Specifies that the scope of the extensionInstance is Cluster

    namespace Property Map

    Specifies that the scope of the extensionInstance is Namespace

    SystemDataResponse

    CreatedAt string

    The timestamp of resource creation (UTC).

    CreatedBy string

    The identity that created the resource.

    CreatedByType string

    The type of identity that created the resource.

    LastModifiedAt string

    The timestamp of resource last modification (UTC)

    LastModifiedBy string

    The identity that last modified the resource.

    LastModifiedByType string

    The type of identity that last modified the resource.

    CreatedAt string

    The timestamp of resource creation (UTC).

    CreatedBy string

    The identity that created the resource.

    CreatedByType string

    The type of identity that created the resource.

    LastModifiedAt string

    The timestamp of resource last modification (UTC)

    LastModifiedBy string

    The identity that last modified the resource.

    LastModifiedByType string

    The type of identity that last modified the resource.

    createdAt String

    The timestamp of resource creation (UTC).

    createdBy String

    The identity that created the resource.

    createdByType String

    The type of identity that created the resource.

    lastModifiedAt String

    The timestamp of resource last modification (UTC)

    lastModifiedBy String

    The identity that last modified the resource.

    lastModifiedByType String

    The type of identity that last modified the resource.

    createdAt string

    The timestamp of resource creation (UTC).

    createdBy string

    The identity that created the resource.

    createdByType string

    The type of identity that created the resource.

    lastModifiedAt string

    The timestamp of resource last modification (UTC)

    lastModifiedBy string

    The identity that last modified the resource.

    lastModifiedByType string

    The type of identity that last modified the resource.

    created_at str

    The timestamp of resource creation (UTC).

    created_by str

    The identity that created the resource.

    created_by_type str

    The type of identity that created the resource.

    last_modified_at str

    The timestamp of resource last modification (UTC)

    last_modified_by str

    The identity that last modified the resource.

    last_modified_by_type str

    The type of identity that last modified the resource.

    createdAt String

    The timestamp of resource creation (UTC).

    createdBy String

    The identity that created the resource.

    createdByType String

    The type of identity that created the resource.

    lastModifiedAt String

    The timestamp of resource last modification (UTC)

    lastModifiedBy String

    The identity that last modified the resource.

    lastModifiedByType String

    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:kubernetesconfiguration:Extension ClusterMonitor /subscriptions/subId1/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/clusterName1/providers/Microsoft.KubernetesConfiguration/extensions/ClusterMonitor 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi