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

Add missing properties from list tenants API #8384

Merged
merged 1 commit into from
Feb 14, 2020
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 @@ -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