Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,10 @@
"properties": {
"$ref": "#/definitions/ClusterCreateProperties",
"description": "The cluster create parameters."
},
"identity": {
"$ref": "#/definitions/ClusterIdentity",
"description": "The identity of the cluster, if configured."
}
},
"description": "The CreateCluster request parameters."
Expand Down Expand Up @@ -860,6 +864,10 @@
"properties": {
"$ref": "#/definitions/ClusterGetProperties",
"description": "The properties of the cluster."
},
"identity": {
"$ref": "#/definitions/ClusterIdentity",
"description": "The identity of the cluster, if configured."
}
},
"description": "The HDInsight cluster."
Expand Down Expand Up @@ -1018,6 +1026,54 @@
},
"description": "The list runtime script action detail response."
},
"ClusterIdentity": {
"properties": {
"principalId": {
"readOnly": true,
"type": "string",
"description": "The principal id of cluster identity. This property will only be provided for a system assigned identity."
},
"tenantId": {
"readOnly": true,
"type": "string",
"description": "The tenant id associated with the cluster. This property will only be provided for a system assigned identity."
},
"type": {
"type": "string",
"description": "The type of identity used for the cluster. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities.",
"enum": [
"SystemAssigned",
"UserAssigned",
"SystemAssigned, UserAssigned",
"None"
],
"x-ms-enum": {
"name": "ResourceIdentityType",
"modelAsString": false
}
},
"userAssignedIdentities": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"principalId": {
"readOnly": true,
"type": "string",
"description": "The principal id of user assigned identity."
},
"clientId": {
"readOnly": true,
"type": "string",
"description": "The client id of user assigned identity."
}
}
},
"description": "The list of user identities associated with the cluster. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'."
}
},
"description": "Identity for the cluster."
},
"ClusterListResult": {
"properties": {
"value": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,10 @@
"properties": {
"$ref": "#/definitions/ClusterCreateProperties",
"description": "The cluster create parameters."
},
"identity": {
"$ref": "#/definitions/ClusterIdentity",
"description": "The identity of the cluster, if configured."
}
},
"description": "The CreateCluster request parameters."
Expand Down Expand Up @@ -860,6 +864,10 @@
"properties": {
"$ref": "#/definitions/ClusterGetProperties",
"description": "The properties of the cluster."
},
"identity": {
"$ref": "#/definitions/ClusterIdentity",
"description": "The identity of the cluster, if configured."
}
},
"description": "The HDInsight cluster."
Expand Down Expand Up @@ -1018,6 +1026,54 @@
},
"description": "The list runtime script action detail response."
},
"ClusterIdentity": {
"properties": {
"principalId": {
"readOnly": true,
"type": "string",
"description": "The principal id of cluster identity. This property will only be provided for a system assigned identity."
},
"tenantId": {
"readOnly": true,
"type": "string",
"description": "The tenant id associated with the cluster. This property will only be provided for a system assigned identity."
},
"type": {
"type": "string",
"description": "The type of identity used for the cluster. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities.",
"enum": [
"SystemAssigned",
"UserAssigned",
"SystemAssigned, UserAssigned",
"None"
],
"x-ms-enum": {
"name": "ResourceIdentityType",
"modelAsString": false
}
},
"userAssignedIdentities": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"principalId": {
"readOnly": true,
"type": "string",
"description": "The principal id of user assigned identity."
},
"clientId": {
"readOnly": true,
"type": "string",
"description": "The client id of user assigned identity."
}
}
},
"description": "The list of user identities associated with the cluster. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'."
}
},
"description": "Identity for the cluster."
},
"ClusterListResult": {
"properties": {
"value": {
Expand Down