Returns the specified Azure location
GET/v1/users/assets/locations/azure/:uid
Returns the specified Azure location
Request
Path Parameters
Specify the Azure location uid
Responses
- 200
(empty)
- application/json
- Schema
- Example (from schema)
Schema
metadata
object
ObjectMeta input entity for object creation
annotations
object
Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations
labels
object
Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels
Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names
spec
object
Azure location specification
config
object
required
Azure storage config object
Azure container name
credentials
object
required
Azure cloud account credentials
Possible values: [azure-china
, azure-government
, public
]
Default value: public
Contains configuration for Azure cloud
Azure resource group name, to which the storage account is mapped
Azure sku
Azure storage name
Set to 'true', if location has to be set as default
Azure location type [azure]
{
"metadata": {
"annotations": {},
"labels": {},
"name": "string"
},
"spec": {
"config": {
"containerName": "string",
"credentials": {
"clientCloud": "public",
"clientId": "string",
"clientSecret": "string",
"subscriptionId": "string",
"tenantId": "string"
},
"resourceGroup": "string",
"sku": "string",
"storageName": "string"
},
"isDefault": true,
"type": "string"
}
}