Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove osOptions from AKS 2024-05-01 API #29422

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,6 @@
"name": "Microsoft.ContainerService/locations/orchestrators/read",
"origin": "user,system"
},
{
"display": {
"description": "Gets OS options",
"operation": "Get OS Options",
"provider": "Microsoft Container Service",
"resource": "OSOptions"
},
"name": "Microsoft.ContainerService/locations/osOptions/read",
"origin": "user,system"
},
{
"display": {
"description": "Lists operations available on Microsoft.ContainerService resource provider",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,48 +70,6 @@
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/osOptions/default": {
"get": {
"tags": [
"ManagedClusters"
],
"operationId": "ManagedClusters_GetOSOptions",
"summary": "Gets supported OS options in the specified subscription.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/LocationParameter"
},
{
"$ref": "#/parameters/ResourceTypeParameter"
}
],
"responses": {
"default": {
"description": "Error response describing why the operation failed",
"schema": {
"$ref": "#/definitions/CloudError"
}
},
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/OSOptionProfile"
}
}
},
"x-ms-examples": {
"Get Container Service OS Options": {
"$ref": "./examples/ContainerServiceGetOSOptions.json"
}
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/kubernetesVersions": {
"get": {
"tags": [
Expand Down Expand Up @@ -6377,70 +6335,6 @@
}
}
},
"OSOptionProperty": {
"type": "object",
"properties": {
"os-type": {
"type": "string",
"description": "The OS type."
},
"enable-fips-image": {
"type": "boolean",
"description": "Whether the image is FIPS-enabled."
}
},
"required": [
"os-type",
"enable-fips-image"
],
"description": "OS option property."
},
"OSOptionPropertyList": {
"type": "object",
"properties": {
"osOptionPropertyList": {
"type": "array",
"items": {
"$ref": "#/definitions/OSOptionProperty"
},
"x-ms-identifiers": [],
"description": "The list of OS options."
}
},
"required": [
"osOptionPropertyList"
],
"description": "The list of OS option properties."
},
"OSOptionProfile": {
"type": "object",
"properties": {
"id": {
"readOnly": true,
"type": "string",
"description": "The ID of the OS option resource."
},
"name": {
"readOnly": true,
"type": "string",
"description": "The name of the OS option resource."
},
"type": {
"readOnly": true,
"type": "string",
"description": "The type of the OS option resource."
},
"properties": {
"$ref": "#/definitions/OSOptionPropertyList",
"description": "The list of OS options.",
"x-ms-client-flatten": true
}
},
"required": [
"properties"
],
"description": "The OS option profile."
},
"EndpointDependency": {
"description": "A domain name that AKS agent nodes are reaching at.",
"type": "object",
Expand Down