Skip to content

Commit

Permalink
Add missing properties from list tenants API (#8384)
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony-c-martin authored Feb 14, 2020
1 parent 74cf8e9 commit 9ab9076
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,16 @@
"type": "string",
"description": "The tenant ID. For example, 00000000-0000-0000-0000-000000000000."
},
"country": {
"readOnly": true,
"type": "string",
"description": "Country/region name of the address for the tenant."
},
"countryCode": {
"readOnly": true,
"type": "string",
"description": "Country/region abbreviation for the tenant."
},
"displayName": {
"readOnly": true,
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,44 @@
"readOnly": true,
"type": "string",
"description": "The tenant ID. For example, 00000000-0000-0000-0000-000000000000."
},
"tenantCategory": {
"readOnly": true,
"type": "string",
"description": "The tenant category.",
"enum": [
"Home",
"ProjectedBy",
"ManagedBy"
],
"x-ms-enum": {
"name": "TenantCategory",
"modelAsString": false
}
},
"country": {
"readOnly": true,
"type": "string",
"description": "Country/region name of the address for the tenant."
},
"countryCode": {
"readOnly": true,
"type": "string",
"description": "Country/region abbreviation for the tenant."
},
"displayName": {
"readOnly": true,
"type": "string",
"description": "The display name of the tenant."
},
"domains": {
"readOnly": true,
"type": "array",
"items": {
"type": "string",
"description": "The domain name for a tenant."
},
"description": "The list of domains for the tenant."
}
},
"description": "Tenant Id information."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,44 @@
"readOnly": true,
"type": "string",
"description": "The tenant ID. For example, 00000000-0000-0000-0000-000000000000."
},
"tenantCategory": {
"readOnly": true,
"type": "string",
"description": "Category of the tenant.",
"enum": [
"Home",
"ProjectedBy",
"ManagedBy"
],
"x-ms-enum": {
"name": "TenantCategory",
"modelAsString": false
}
},
"country": {
"readOnly": true,
"type": "string",
"description": "Country/region name of the address for the tenant."
},
"countryCode": {
"readOnly": true,
"type": "string",
"description": "Country/region abbreviation for the tenant."
},
"displayName": {
"readOnly": true,
"type": "string",
"description": "The display name of the tenant."
},
"domains": {
"readOnly": true,
"type": "array",
"items": {
"type": "string",
"description": "The domain name for a tenant."
},
"description": "The list of domains for the tenant."
}
},
"description": "Tenant Id information."
Expand Down

0 comments on commit 9ab9076

Please sign in to comment.