Skip to content

Commit 25f8d4a

Browse files
feat(all): auto-regenerate discovery clients (#3135)
1 parent f5cbc80 commit 25f8d4a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+37968
-21090
lines changed

androidmanagement/v1/androidmanagement-api.json

Lines changed: 107 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1202,7 +1202,7 @@
12021202
}
12031203
}
12041204
},
1205-
"revision": "20250428",
1205+
"revision": "20250501",
12061206
"rootUrl": "https://androidmanagement.googleapis.com/",
12071207
"schemas": {
12081208
"AdbShellCommandEvent": {
@@ -2208,7 +2208,7 @@
22082208
"type": "string"
22092209
},
22102210
"errorCode": {
2211-
"description": "If the command failed, an error code explaining the failure. This is not set when the command is cancelled by the caller.",
2211+
"description": "If the command failed, an error code explaining the failure. This is not set when the command is cancelled by the caller. For reasoning about command errors, prefer fields in the following order (most preferred first): 1. Command-specific fields like clearAppsDataStatus, startLostModeStatus, or similar, if they exist. 2. This field, if set. 3. The generic error field in the Operation that wraps the command.",
22122212
"enum": [
22132213
"COMMAND_ERROR_CODE_UNSPECIFIED",
22142214
"UNKNOWN",
@@ -2231,6 +2231,15 @@
22312231
"description": "For commands of type RESET_PASSWORD, optionally specifies the new password. Note: The new password must be at least 6 characters long if it is numeric in case of Android 14 devices. Else the command will fail with INVALID_VALUE.",
22322232
"type": "string"
22332233
},
2234+
"requestDeviceInfoParams": {
2235+
"$ref": "RequestDeviceInfoParams",
2236+
"description": "Optional. Parameters for the REQUEST_DEVICE_INFO command to get device related information. If this is set, then it is suggested that type should not be set. In this case, the server automatically sets it to REQUEST_DEVICE_INFO . It is also acceptable to explicitly set type to REQUEST_DEVICE_INFO."
2237+
},
2238+
"requestDeviceInfoStatus": {
2239+
"$ref": "RequestDeviceInfoStatus",
2240+
"description": "Output only. Status of the REQUEST_DEVICE_INFO command.",
2241+
"readOnly": true
2242+
},
22342243
"resetPasswordFlags": {
22352244
"description": "For commands of type RESET_PASSWORD, optionally specifies flags.",
22362245
"items": {
@@ -3133,6 +3142,33 @@
31333142
},
31343143
"type": "object"
31353144
},
3145+
"Eid": {
3146+
"description": "EID information for each eUICC chip.",
3147+
"id": "Eid",
3148+
"properties": {
3149+
"eid": {
3150+
"description": "Output only. The EID",
3151+
"readOnly": true,
3152+
"type": "string"
3153+
}
3154+
},
3155+
"type": "object"
3156+
},
3157+
"EidInfo": {
3158+
"description": "Information related to the EIDs of the device.",
3159+
"id": "EidInfo",
3160+
"properties": {
3161+
"eids": {
3162+
"description": "Output only. EID information for each eUICC chip.",
3163+
"items": {
3164+
"$ref": "Eid"
3165+
},
3166+
"readOnly": true,
3167+
"type": "array"
3168+
}
3169+
},
3170+
"type": "object"
3171+
},
31363172
"Empty": {
31373173
"description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } ",
31383174
"id": "Empty",
@@ -3365,6 +3401,18 @@
33653401
},
33663402
"type": "object"
33673403
},
3404+
"EuiccChipInfo": {
3405+
"description": "Information related to the eUICC chip.",
3406+
"id": "EuiccChipInfo",
3407+
"properties": {
3408+
"eid": {
3409+
"description": "Output only. The Embedded Identity Document (EID) that identifies the eUICC chip for each eUICC chip on the device. This is available on company owned devices running Android 13 and above.",
3410+
"readOnly": true,
3411+
"type": "string"
3412+
}
3413+
},
3414+
"type": "object"
3415+
},
33683416
"ExtensionConfig": {
33693417
"description": "Configuration to enable an app as an extension app, with the capability of interacting with Android Device Policy offline. For Android versions 11 and above, extension apps are exempt from battery restrictions so will not be placed into the restricted App Standby Bucket (https://developer.android.com/topic/performance/appstandby#restricted-bucket). Extensions apps are also protected against users clearing their data or force-closing the application, although admins can continue to use the clear app data command on extension apps if needed for Android 11 and above.",
33703418
"id": "ExtensionConfig",
@@ -3535,6 +3583,14 @@
35353583
"readOnly": true,
35363584
"type": "string"
35373585
},
3586+
"euiccChipInfo": {
3587+
"description": "Output only. Information related to the eUICC chip.",
3588+
"items": {
3589+
"$ref": "EuiccChipInfo"
3590+
},
3591+
"readOnly": true,
3592+
"type": "array"
3593+
},
35383594
"gpuShutdownTemperatures": {
35393595
"description": "GPU shutdown temperature thresholds in Celsius for each GPU on the device.",
35403596
"items": {
@@ -5888,6 +5944,55 @@
58885944
},
58895945
"type": "object"
58905946
},
5947+
"RequestDeviceInfoParams": {
5948+
"description": "Parameters associated with the REQUEST_DEVICE_INFO command to get device related information.",
5949+
"id": "RequestDeviceInfoParams",
5950+
"properties": {
5951+
"deviceInfo": {
5952+
"description": "Required. Type of device information to be requested.",
5953+
"enum": [
5954+
"DEVICE_INFO_UNSPECIFIED",
5955+
"EID"
5956+
],
5957+
"enumDescriptions": [
5958+
"This value is disallowed.",
5959+
"Request the identifier for eSIM. The user will be asked to approve the disclosure of the information before the result can be returned. If the user doesn't approve the disclosure, USER_DECLINED will be returned. This is supported only for personally owned devices with work profiles and Android versions 13 and above."
5960+
],
5961+
"type": "string"
5962+
}
5963+
},
5964+
"type": "object"
5965+
},
5966+
"RequestDeviceInfoStatus": {
5967+
"description": "Status of the REQUEST_DEVICE_INFO command.",
5968+
"id": "RequestDeviceInfoStatus",
5969+
"properties": {
5970+
"eidInfo": {
5971+
"$ref": "EidInfo",
5972+
"description": "Information related to the EIDs of the device."
5973+
},
5974+
"status": {
5975+
"description": "Output only. Status of a REQUEST_DEVICE_INFO command.",
5976+
"enum": [
5977+
"STATUS_UNSPECIFIED",
5978+
"SUCCEEDED",
5979+
"PENDING_USER_ACTION",
5980+
"USER_DECLINED",
5981+
"UNSUPPORTED"
5982+
],
5983+
"enumDescriptions": [
5984+
"Unspecified. This value is not used.",
5985+
"Device information has been successfully delivered.",
5986+
"The user has not completed the actions required to share device information.",
5987+
"The user declined sharing device information.",
5988+
"The requested device info is not supported on this device, e.g. eSIM is not supported on the device."
5989+
],
5990+
"readOnly": true,
5991+
"type": "string"
5992+
}
5993+
},
5994+
"type": "object"
5995+
},
58915996
"ScreenBrightnessSettings": {
58925997
"description": "Controls for the screen brightness settings.",
58935998
"id": "ScreenBrightnessSettings",

androidmanagement/v1/androidmanagement-gen.go

Lines changed: 148 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

certificatemanager/v1/certificatemanager-api.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,12 @@
143143
"name"
144144
],
145145
"parameters": {
146+
"extraLocationTypes": {
147+
"description": "Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.",
148+
"location": "query",
149+
"repeated": true,
150+
"type": "string"
151+
},
146152
"filter": {
147153
"description": "A filter to narrow down results to a preferred subset. The filtering language accepts strings like `\"displayName=tokyo\"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).",
148154
"location": "query",
@@ -1314,7 +1320,7 @@
13141320
}
13151321
}
13161322
},
1317-
"revision": "20250211",
1323+
"revision": "20250423",
13181324
"rootUrl": "https://certificatemanager.googleapis.com/",
13191325
"schemas": {
13201326
"AllowlistedCertificate": {

certificatemanager/v1/certificatemanager-gen.go

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)