mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-23 15:49:49 +01:00
Update all json files; make some fixes to make it work at all
This commit is contained in:
@@ -112,7 +112,7 @@
|
||||
"type": "integer"
|
||||
},
|
||||
"pageToken": {
|
||||
"description": "A token specifying which result page to return.",
|
||||
"description": "A token specifying which result page to return. This field has custom validations in ListCustomersRequestValidator",
|
||||
"location": "query",
|
||||
"type": "string"
|
||||
}
|
||||
@@ -136,7 +136,7 @@
|
||||
],
|
||||
"parameters": {
|
||||
"parent": {
|
||||
"description": "Required. The customer that manages the configuration. An API resource name in the format `customers/[CUSTOMER_ID]`.",
|
||||
"description": "Required. The customer that manages the configuration. An API resource name in the format `customers/[CUSTOMER_ID]`. This field has custom validation in CreateConfigurationRequestValidator",
|
||||
"location": "path",
|
||||
"pattern": "^customers/[^/]+$",
|
||||
"required": true,
|
||||
@@ -825,7 +825,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"revision": "20210331",
|
||||
"revision": "20220305",
|
||||
"rootUrl": "https://androiddeviceprovisioning.googleapis.com/",
|
||||
"schemas": {
|
||||
"ClaimDeviceRequest": {
|
||||
@@ -913,18 +913,26 @@
|
||||
"description": "Required. The name of the company. For example _XYZ Corp_. Displayed to the company's employees in the zero-touch enrollment portal.",
|
||||
"type": "string"
|
||||
},
|
||||
"languageCode": {
|
||||
"description": "Input only. The preferred locale of the customer represented as a BCP47 language code. This field is validated on input and requests containing unsupported language codes will be rejected. Supported language codes: Arabic (ar) Chinese (Hong Kong) (zh-HK) Chinese (Simplified) (zh-CN) Chinese (Traditional) (zh-TW) Czech (cs) Danish (da) Dutch (nl) English (UK) (en-GB) English (US) (en-US) Filipino (fil) Finnish (fi) French (fr) German (de) Hebrew (iw) Hindi (hi) Hungarian (hu) Indonesian (id) Italian (it) Japanese (ja) Korean (ko) Norwegian (Bokmal) (no) Polish (pl) Portuguese (Brazil) (pt-BR) Portuguese (Portugal) (pt-PT) Russian (ru) Spanish (es) Spanish (Latin America) (es-419) Swedish (sv) Thai (th) Turkish (tr) Ukrainian (uk) Vietnamese (vi)",
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"description": "Output only. The API resource name of the company. The resource name is one of the following formats: * `partners/[PARTNER_ID]/customers/[CUSTOMER_ID]` * `partners/[PARTNER_ID]/vendors/[VENDOR_ID]` * `partners/[PARTNER_ID]/vendors/[VENDOR_ID]/customers/[CUSTOMER_ID]` Assigned by the server.",
|
||||
"readOnly": true,
|
||||
"type": "string"
|
||||
},
|
||||
"ownerEmails": {
|
||||
"description": "Required. Input only. Email address of customer's users in the owner role. At least one `owner_email` is required. Each email address must be associated with a Google Account. Owners share the same access as admins but can also add, delete, and edit your organization's portal users.",
|
||||
"description": "Required. Input only. Email address of customer's users in the owner role. At least one `owner_email` is required. Owners share the same access as admins but can also add, delete, and edit your organization's portal users.",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"skipWelcomeEmail": {
|
||||
"description": "Input only. If set to true, welcome email will not be sent to the customer. It is recommended to skip the welcome email if devices will be claimed with additional DEVICE_PROTECTION service, as the customer will receive separate emails at device claim time. This field is ignored if this is not a Zero-touch customer.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"termsStatus": {
|
||||
"description": "Output only. Whether any user from the company has accepted the latest Terms of Service (ToS). See TermsStatus.",
|
||||
"enum": [
|
||||
@@ -1016,7 +1024,7 @@
|
||||
},
|
||||
"device": {
|
||||
"$ref": "DeviceReference",
|
||||
"description": "Required. The device the configuration is applied to."
|
||||
"description": "Required. The device the configuration is applied to. There are custom validations in ApplyConfigurationRequestValidator"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@@ -1091,7 +1099,7 @@
|
||||
"properties": {
|
||||
"device": {
|
||||
"$ref": "DeviceReference",
|
||||
"description": "Required. The device to remove the configuration from."
|
||||
"description": "Required. The device to remove the configuration from. There are custom validations in RemoveConfigurationRequestValidator"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@@ -1102,7 +1110,7 @@
|
||||
"properties": {
|
||||
"device": {
|
||||
"$ref": "DeviceReference",
|
||||
"description": "Required. The device to unclaim."
|
||||
"description": "Required. The device to unclaim. There are custom validations in UnclaimDeviceRequestValidator."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@@ -1149,6 +1157,18 @@
|
||||
"description": "A record of a device claimed by a reseller for a customer. Devices claimed for zero-touch enrollment have a claim with the type `SECTION_TYPE_ZERO_TOUCH`. To learn more, read [Claim devices for customers](/zero-touch/guides/how-it-works#claim).",
|
||||
"id": "DeviceClaim",
|
||||
"properties": {
|
||||
"additionalService": {
|
||||
"description": "The Additional service registered for the device.",
|
||||
"enum": [
|
||||
"ADDITIONAL_SERVICE_UNSPECIFIED",
|
||||
"DEVICE_PROTECTION"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"No additional service.",
|
||||
"Device protection service, also known as Android Enterprise Essentials. To claim a device with the device protection service you must enroll with the partnership team."
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"ownerCompanyId": {
|
||||
"description": "The ID of the Customer that purchased the device.",
|
||||
"format": "int64",
|
||||
|
||||
Reference in New Issue
Block a user