1. Packages
  2. Azure Native
  3. API Docs
  4. hybridcontainerservice
  5. KubernetesVersions
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi

    The supported kubernetes versions.

    Uses Azure REST API version 2025-02-01-preview.

    Other available API versions: 2023-11-15-preview, 2024-01-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native hybridcontainerservice [ApiVersion]. See the version guide for details.

    Example Usage

    PutKubernetesVersions

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var kubernetesVersions = new AzureNative.HybridContainerService.KubernetesVersions("kubernetesVersions", new()
        {
            CustomLocationResourceUri = "subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourceGroups/test-arcappliance-resgrp/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation",
            ExtendedLocation = new AzureNative.HybridContainerService.Inputs.ExtendedLocationArgs
            {
                Name = "/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation",
                Type = AzureNative.HybridContainerService.ExtendedLocationTypes.CustomLocation,
            },
        });
    
    });
    
    package main
    
    import (
    	hybridcontainerservice "github.com/pulumi/pulumi-azure-native-sdk/hybridcontainerservice/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := hybridcontainerservice.NewKubernetesVersions(ctx, "kubernetesVersions", &hybridcontainerservice.KubernetesVersionsArgs{
    			CustomLocationResourceUri: pulumi.String("subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourceGroups/test-arcappliance-resgrp/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation"),
    			ExtendedLocation: &hybridcontainerservice.ExtendedLocationArgs{
    				Name: pulumi.String("/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation"),
    				Type: pulumi.String(hybridcontainerservice.ExtendedLocationTypesCustomLocation),
    			},
    		})
    		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.hybridcontainerservice.KubernetesVersions;
    import com.pulumi.azurenative.hybridcontainerservice.KubernetesVersionsArgs;
    import com.pulumi.azurenative.hybridcontainerservice.inputs.ExtendedLocationArgs;
    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 kubernetesVersions = new KubernetesVersions("kubernetesVersions", KubernetesVersionsArgs.builder()
                .customLocationResourceUri("subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourceGroups/test-arcappliance-resgrp/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation")
                .extendedLocation(ExtendedLocationArgs.builder()
                    .name("/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation")
                    .type("CustomLocation")
                    .build())
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const kubernetesVersions = new azure_native.hybridcontainerservice.KubernetesVersions("kubernetesVersions", {
        customLocationResourceUri: "subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourceGroups/test-arcappliance-resgrp/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation",
        extendedLocation: {
            name: "/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation",
            type: azure_native.hybridcontainerservice.ExtendedLocationTypes.CustomLocation,
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    kubernetes_versions = azure_native.hybridcontainerservice.KubernetesVersions("kubernetesVersions",
        custom_location_resource_uri="subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourceGroups/test-arcappliance-resgrp/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation",
        extended_location={
            "name": "/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation",
            "type": azure_native.hybridcontainerservice.ExtendedLocationTypes.CUSTOM_LOCATION,
        })
    
    resources:
      kubernetesVersions:
        type: azure-native:hybridcontainerservice:KubernetesVersions
        properties:
          customLocationResourceUri: subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourceGroups/test-arcappliance-resgrp/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation
          extendedLocation:
            name: /subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation
            type: CustomLocation
    

    Create KubernetesVersions Resource

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

    Constructor syntax

    new KubernetesVersions(name: string, args: KubernetesVersionsArgs, opts?: CustomResourceOptions);
    @overload
    def KubernetesVersions(resource_name: str,
                           args: KubernetesVersionsArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def KubernetesVersions(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           custom_location_resource_uri: Optional[str] = None,
                           extended_location: Optional[ExtendedLocationArgs] = None)
    func NewKubernetesVersions(ctx *Context, name string, args KubernetesVersionsArgs, opts ...ResourceOption) (*KubernetesVersions, error)
    public KubernetesVersions(string name, KubernetesVersionsArgs args, CustomResourceOptions? opts = null)
    public KubernetesVersions(String name, KubernetesVersionsArgs args)
    public KubernetesVersions(String name, KubernetesVersionsArgs args, CustomResourceOptions options)
    
    type: azure-native:hybridcontainerservice:KubernetesVersions
    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 KubernetesVersionsArgs
    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 KubernetesVersionsArgs
    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 KubernetesVersionsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KubernetesVersionsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KubernetesVersionsArgs
    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 kubernetesVersionsResource = new AzureNative.HybridContainerService.KubernetesVersions("kubernetesVersionsResource", new()
    {
        CustomLocationResourceUri = "string",
        ExtendedLocation = new AzureNative.HybridContainerService.Inputs.ExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
    });
    
    example, err := hybridcontainerservice.NewKubernetesVersions(ctx, "kubernetesVersionsResource", &hybridcontainerservice.KubernetesVersionsArgs{
    	CustomLocationResourceUri: pulumi.String("string"),
    	ExtendedLocation: &hybridcontainerservice.ExtendedLocationArgs{
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    })
    
    var kubernetesVersionsResource = new KubernetesVersions("kubernetesVersionsResource", KubernetesVersionsArgs.builder()
        .customLocationResourceUri("string")
        .extendedLocation(ExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .build());
    
    kubernetes_versions_resource = azure_native.hybridcontainerservice.KubernetesVersions("kubernetesVersionsResource",
        custom_location_resource_uri="string",
        extended_location={
            "name": "string",
            "type": "string",
        })
    
    const kubernetesVersionsResource = new azure_native.hybridcontainerservice.KubernetesVersions("kubernetesVersionsResource", {
        customLocationResourceUri: "string",
        extendedLocation: {
            name: "string",
            type: "string",
        },
    });
    
    type: azure-native:hybridcontainerservice:KubernetesVersions
    properties:
        customLocationResourceUri: string
        extendedLocation:
            name: string
            type: string
    

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

    CustomLocationResourceUri string
    The fully qualified Azure Resource Manager identifier of the custom location resource.
    ExtendedLocation Pulumi.AzureNative.HybridContainerService.Inputs.ExtendedLocation
    Extended location pointing to the underlying infrastructure
    CustomLocationResourceUri string
    The fully qualified Azure Resource Manager identifier of the custom location resource.
    ExtendedLocation ExtendedLocationArgs
    Extended location pointing to the underlying infrastructure
    customLocationResourceUri String
    The fully qualified Azure Resource Manager identifier of the custom location resource.
    extendedLocation ExtendedLocation
    Extended location pointing to the underlying infrastructure
    customLocationResourceUri string
    The fully qualified Azure Resource Manager identifier of the custom location resource.
    extendedLocation ExtendedLocation
    Extended location pointing to the underlying infrastructure
    custom_location_resource_uri str
    The fully qualified Azure Resource Manager identifier of the custom location resource.
    extended_location ExtendedLocationArgs
    Extended location pointing to the underlying infrastructure
    customLocationResourceUri String
    The fully qualified Azure Resource Manager identifier of the custom location resource.
    extendedLocation Property Map
    Extended location pointing to the underlying infrastructure

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    Properties Pulumi.AzureNative.HybridContainerService.Outputs.KubernetesVersionProfileResponseProperties
    SystemData Pulumi.AzureNative.HybridContainerService.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    Properties KubernetesVersionProfileResponseProperties
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    properties KubernetesVersionProfileResponseProperties
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    properties KubernetesVersionProfileResponseProperties
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    properties KubernetesVersionProfileResponseProperties
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    properties Property Map
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ExtendedLocation, ExtendedLocationArgs

    Extended location pointing to the underlying infrastructure
    Name string
    ARM Id of the extended location.
    Type string | Pulumi.AzureNative.HybridContainerService.ExtendedLocationTypes
    The extended location type. Allowed value: 'CustomLocation'
    Name string
    ARM Id of the extended location.
    Type string | ExtendedLocationTypes
    The extended location type. Allowed value: 'CustomLocation'
    name String
    ARM Id of the extended location.
    type String | ExtendedLocationTypes
    The extended location type. Allowed value: 'CustomLocation'
    name string
    ARM Id of the extended location.
    type string | ExtendedLocationTypes
    The extended location type. Allowed value: 'CustomLocation'
    name str
    ARM Id of the extended location.
    type str | ExtendedLocationTypes
    The extended location type. Allowed value: 'CustomLocation'
    name String
    ARM Id of the extended location.
    type String | "CustomLocation"
    The extended location type. Allowed value: 'CustomLocation'

    ExtendedLocationResponse, ExtendedLocationResponseArgs

    Extended location pointing to the underlying infrastructure
    Name string
    ARM Id of the extended location.
    Type string
    The extended location type. Allowed value: 'CustomLocation'
    Name string
    ARM Id of the extended location.
    Type string
    The extended location type. Allowed value: 'CustomLocation'
    name String
    ARM Id of the extended location.
    type String
    The extended location type. Allowed value: 'CustomLocation'
    name string
    ARM Id of the extended location.
    type string
    The extended location type. Allowed value: 'CustomLocation'
    name str
    ARM Id of the extended location.
    type str
    The extended location type. Allowed value: 'CustomLocation'
    name String
    ARM Id of the extended location.
    type String
    The extended location type. Allowed value: 'CustomLocation'

    ExtendedLocationTypes, ExtendedLocationTypesArgs

    CustomLocation
    CustomLocation
    ExtendedLocationTypesCustomLocation
    CustomLocation
    CustomLocation
    CustomLocation
    CustomLocation
    CustomLocation
    CUSTOM_LOCATION
    CustomLocation
    "CustomLocation"
    CustomLocation

    KubernetesPatchVersionsResponse, KubernetesPatchVersionsResponseArgs

    Kubernetes Patch Version profile
    Readiness List<Pulumi.AzureNative.HybridContainerService.Inputs.KubernetesVersionReadinessResponse>
    Indicates whether the kubernetes version image is ready or not
    Upgrades List<string>
    Possible upgrade paths for given patch version
    Readiness []KubernetesVersionReadinessResponse
    Indicates whether the kubernetes version image is ready or not
    Upgrades []string
    Possible upgrade paths for given patch version
    readiness List<KubernetesVersionReadinessResponse>
    Indicates whether the kubernetes version image is ready or not
    upgrades List<String>
    Possible upgrade paths for given patch version
    readiness KubernetesVersionReadinessResponse[]
    Indicates whether the kubernetes version image is ready or not
    upgrades string[]
    Possible upgrade paths for given patch version
    readiness Sequence[KubernetesVersionReadinessResponse]
    Indicates whether the kubernetes version image is ready or not
    upgrades Sequence[str]
    Possible upgrade paths for given patch version
    readiness List<Property Map>
    Indicates whether the kubernetes version image is ready or not
    upgrades List<String>
    Possible upgrade paths for given patch version

    KubernetesVersionProfileResponseProperties, KubernetesVersionProfileResponsePropertiesArgs

    ProvisioningState string
    Provisioning state of the resource
    Values List<Pulumi.AzureNative.HybridContainerService.Inputs.KubernetesVersionPropertiesResponse>
    List of supported Kubernetes versions
    ProvisioningState string
    Provisioning state of the resource
    Values []KubernetesVersionPropertiesResponse
    List of supported Kubernetes versions
    provisioningState String
    Provisioning state of the resource
    values List<KubernetesVersionPropertiesResponse>
    List of supported Kubernetes versions
    provisioningState string
    Provisioning state of the resource
    values KubernetesVersionPropertiesResponse[]
    List of supported Kubernetes versions
    provisioning_state str
    Provisioning state of the resource
    values Sequence[KubernetesVersionPropertiesResponse]
    List of supported Kubernetes versions
    provisioningState String
    Provisioning state of the resource
    values List<Property Map>
    List of supported Kubernetes versions

    KubernetesVersionPropertiesResponse, KubernetesVersionPropertiesResponseArgs

    Kubernetes version profile for given major.minor release
    IsPreview bool
    Whether this version is in preview mode.
    PatchVersions Dictionary<string, Pulumi.AzureNative.HybridContainerService.Inputs.KubernetesPatchVersionsResponse>
    Patch versions of a Kubernetes release
    Version string
    major.minor version of Kubernetes release
    IsPreview bool
    Whether this version is in preview mode.
    PatchVersions map[string]KubernetesPatchVersionsResponse
    Patch versions of a Kubernetes release
    Version string
    major.minor version of Kubernetes release
    isPreview Boolean
    Whether this version is in preview mode.
    patchVersions Map<String,KubernetesPatchVersionsResponse>
    Patch versions of a Kubernetes release
    version String
    major.minor version of Kubernetes release
    isPreview boolean
    Whether this version is in preview mode.
    patchVersions {[key: string]: KubernetesPatchVersionsResponse}
    Patch versions of a Kubernetes release
    version string
    major.minor version of Kubernetes release
    is_preview bool
    Whether this version is in preview mode.
    patch_versions Mapping[str, KubernetesPatchVersionsResponse]
    Patch versions of a Kubernetes release
    version str
    major.minor version of Kubernetes release
    isPreview Boolean
    Whether this version is in preview mode.
    patchVersions Map<Property Map>
    Patch versions of a Kubernetes release
    version String
    major.minor version of Kubernetes release

    KubernetesVersionReadinessResponse, KubernetesVersionReadinessResponseArgs

    Indicates whether the kubernetes version image is ready or not
    ErrorMessage string
    The error message for version not being ready
    OsType string
    The particular KubernetesVersion Image OS Type (Linux, Windows)
    Ready bool
    Whether the kubernetes version image is ready or not
    OsSku string
    Specifies the OS SKU used by the agent pool. The default is CBLMariner if OSType is Linux. The default is Windows2019 when OSType is Windows.
    ErrorMessage string
    The error message for version not being ready
    OsType string
    The particular KubernetesVersion Image OS Type (Linux, Windows)
    Ready bool
    Whether the kubernetes version image is ready or not
    OsSku string
    Specifies the OS SKU used by the agent pool. The default is CBLMariner if OSType is Linux. The default is Windows2019 when OSType is Windows.
    errorMessage String
    The error message for version not being ready
    osType String
    The particular KubernetesVersion Image OS Type (Linux, Windows)
    ready Boolean
    Whether the kubernetes version image is ready or not
    osSku String
    Specifies the OS SKU used by the agent pool. The default is CBLMariner if OSType is Linux. The default is Windows2019 when OSType is Windows.
    errorMessage string
    The error message for version not being ready
    osType string
    The particular KubernetesVersion Image OS Type (Linux, Windows)
    ready boolean
    Whether the kubernetes version image is ready or not
    osSku string
    Specifies the OS SKU used by the agent pool. The default is CBLMariner if OSType is Linux. The default is Windows2019 when OSType is Windows.
    error_message str
    The error message for version not being ready
    os_type str
    The particular KubernetesVersion Image OS Type (Linux, Windows)
    ready bool
    Whether the kubernetes version image is ready or not
    os_sku str
    Specifies the OS SKU used by the agent pool. The default is CBLMariner if OSType is Linux. The default is Windows2019 when OSType is Windows.
    errorMessage String
    The error message for version not being ready
    osType String
    The particular KubernetesVersion Image OS Type (Linux, Windows)
    ready Boolean
    Whether the kubernetes version image is ready or not
    osSku String
    Specifies the OS SKU used by the agent pool. The default is CBLMariner if OSType is Linux. The default is Windows2019 when OSType is Windows.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of 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.
    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:hybridcontainerservice:KubernetesVersions default /{customLocationResourceUri}/providers/Microsoft.HybridContainerService/kubernetesVersions/default 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate