マネージド クラスターのアップグレード プロファイルを取得します。
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/upgradeProfiles/default?api-version=2024-09-01
URI パラメーター
名前 |
/ |
必須 |
型 |
説明 |
resourceGroupName
|
path |
True
|
string
|
リソース グループの名前。 名前では大文字と小文字が区別されません。
|
resourceName
|
path |
True
|
string
|
マネージド クラスター リソースの名前。
正規表現パターン: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
subscriptionId
|
path |
True
|
string
uuid
|
ターゲット サブスクリプションの ID。 値は UUID である必要があります。
|
api-version
|
query |
True
|
string
|
この操作に使用する API バージョン。
|
応答
セキュリティ
azure_auth
Azure Active Directory OAuth2 フロー
型:
oauth2
フロー:
implicit
Authorization URL (承認 URL):
https://login.microsoftonline.com/common/oauth2/authorize
スコープ
名前 |
説明 |
user_impersonation
|
ユーザー アカウントを偽装する
|
例
Get Upgrade Profile for Managed Cluster
要求のサンプル
GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/managedClusters/clustername1/upgradeProfiles/default?api-version=2024-09-01
/**
* Samples for ManagedClusters GetUpgradeProfile.
*/
public final class Main {
/*
* x-ms-original-file:
* specification/containerservice/resource-manager/Microsoft.ContainerService/aks/stable/2024-09-01/examples/
* ManagedClustersGetUpgradeProfile.json
*/
/**
* Sample code: Get Upgrade Profile for Managed Cluster.
*
* @param azure The entry point for accessing resource management APIs in Azure.
*/
public static void getUpgradeProfileForManagedCluster(com.azure.resourcemanager.AzureResourceManager azure) {
azure.kubernetesClusters().manager().serviceClient().getManagedClusters().getUpgradeProfileWithResponse("rg1",
"clustername1", com.azure.core.util.Context.NONE);
}
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
from azure.identity import DefaultAzureCredential
from azure.mgmt.containerservice import ContainerServiceClient
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-containerservice
# USAGE
python managed_clusters_get_upgrade_profile.py
Before run the sample, please set the values of the client ID, tenant ID and client secret
of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID,
AZURE_CLIENT_SECRET. For more info about how to get the value, please see:
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
"""
def main():
client = ContainerServiceClient(
credential=DefaultAzureCredential(),
subscription_id="00000000-0000-0000-0000-000000000000",
)
response = client.managed_clusters.get_upgrade_profile(
resource_group_name="rg1",
resource_name="clustername1",
)
print(response)
# x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/aks/stable/2024-09-01/examples/ManagedClustersGetUpgradeProfile.json
if __name__ == "__main__":
main()
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
package armcontainerservice_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerservice/armcontainerservice/v6"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/e838027e88cca634c1545e744630de9262a6e72a/specification/containerservice/resource-manager/Microsoft.ContainerService/aks/stable/2024-09-01/examples/ManagedClustersGetUpgradeProfile.json
func ExampleManagedClustersClient_GetUpgradeProfile() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armcontainerservice.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
res, err := clientFactory.NewManagedClustersClient().GetUpgradeProfile(ctx, "rg1", "clustername1", nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
// You could use response here. We use blank identifier for just demo purposes.
_ = res
// If the HTTP response code is 200 as defined in example definition, your response structure would look as follows. Please pay attention that all the values in the output are fake values for just demo purposes.
// res.ManagedClusterUpgradeProfile = armcontainerservice.ManagedClusterUpgradeProfile{
// Name: to.Ptr("default"),
// Type: to.Ptr("Microsoft.ContainerService/managedClusters/upgradeprofiles"),
// ID: to.Ptr("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/clustername1/upgradeprofiles/default"),
// Properties: &armcontainerservice.ManagedClusterUpgradeProfileProperties{
// AgentPoolProfiles: []*armcontainerservice.ManagedClusterPoolUpgradeProfile{
// {
// Name: to.Ptr("agent"),
// KubernetesVersion: to.Ptr("1.7.7"),
// OSType: to.Ptr(armcontainerservice.OSTypeLinux),
// Upgrades: []*armcontainerservice.ManagedClusterPoolUpgradeProfileUpgradesItem{
// {
// KubernetesVersion: to.Ptr("1.7.9"),
// },
// {
// IsPreview: to.Ptr(true),
// KubernetesVersion: to.Ptr("1.7.11"),
// }},
// }},
// ControlPlaneProfile: &armcontainerservice.ManagedClusterPoolUpgradeProfile{
// Name: to.Ptr("master"),
// KubernetesVersion: to.Ptr("1.7.7"),
// OSType: to.Ptr(armcontainerservice.OSTypeLinux),
// Upgrades: []*armcontainerservice.ManagedClusterPoolUpgradeProfileUpgradesItem{
// {
// IsPreview: to.Ptr(true),
// KubernetesVersion: to.Ptr("1.7.9"),
// },
// {
// KubernetesVersion: to.Ptr("1.7.11"),
// }},
// },
// },
// }
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
const { ContainerServiceClient } = require("@azure/arm-containerservice");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Gets the upgrade profile of a managed cluster.
*
* @summary Gets the upgrade profile of a managed cluster.
* x-ms-original-file: specification/containerservice/resource-manager/Microsoft.ContainerService/aks/stable/2024-09-01/examples/ManagedClustersGetUpgradeProfile.json
*/
async function getUpgradeProfileForManagedCluster() {
const subscriptionId =
process.env["CONTAINERSERVICE_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000";
const resourceGroupName = process.env["CONTAINERSERVICE_RESOURCE_GROUP"] || "rg1";
const resourceName = "clustername1";
const credential = new DefaultAzureCredential();
const client = new ContainerServiceClient(credential, subscriptionId);
const result = await client.managedClusters.getUpgradeProfile(resourceGroupName, resourceName);
console.log(result);
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
応答のサンプル
{
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/clustername1/upgradeprofiles/default",
"name": "default",
"properties": {
"agentPoolProfiles": [
{
"kubernetesVersion": "1.7.7",
"name": "agent",
"osType": "Linux",
"upgrades": [
{
"kubernetesVersion": "1.7.9"
},
{
"kubernetesVersion": "1.7.11",
"isPreview": true
}
]
}
],
"controlPlaneProfile": {
"kubernetesVersion": "1.7.7",
"name": "master",
"osType": "Linux",
"upgrades": [
{
"kubernetesVersion": "1.7.9",
"isPreview": true
},
{
"kubernetesVersion": "1.7.11"
}
]
}
},
"type": "Microsoft.ContainerService/managedClusters/upgradeprofiles"
}
定義
CloudError
コンテナー サービスからのエラー応答。
CloudErrorBody
コンテナー サービスからのエラー応答。
名前 |
型 |
説明 |
code
|
string
|
エラーの識別子。 コードは不変であり、プログラムで使用することを目的としています。
|
details
|
CloudErrorBody[]
|
エラーに関する追加の詳細の一覧。
|
message
|
string
|
ユーザー インターフェイスでの表示に適したエラーを説明するメッセージ。
|
target
|
string
|
特定のエラーのターゲット。 たとえば、エラーが発生したプロパティの名前です。
|
ManagedClusterPoolUpgradeProfile
使用可能なアップグレード バージョンの一覧。
名前 |
型 |
規定値 |
説明 |
kubernetesVersion
|
string
|
|
Kubernetes バージョン (major.minor.patch)。
|
name
|
string
|
|
エージェント プール名。
|
osType
|
OSType
|
Linux
|
オペレーティング システムの種類。 既定値は Linux です。
|
upgrades
|
Upgrades[]
|
|
アップグレードに使用できるオーケストレーターの種類とバージョンの一覧。
|
ManagedClusterUpgradeProfile
コンピューティング プールで使用可能なアップグレードの一覧。
OSType
オペレーティング システムの種類。 既定値は Linux です。
名前 |
型 |
説明 |
Linux
|
string
|
Linux を使用します。
|
Windows
|
string
|
Windows を使用します。
|
Upgrades
アップグレードに使用できるオーケストレーターの種類とバージョンの一覧。
名前 |
型 |
説明 |
isPreview
|
boolean
|
Kubernetes バージョンが現在プレビュー段階にあるかどうか。
|
kubernetesVersion
|
string
|
Kubernetes バージョン (major.minor.patch)。
|