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
109 changes: 107 additions & 2 deletions discovery/androidmanagement-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@
}
}
},
"revision": "20250428",
"revision": "20250501",
"rootUrl": "https://androidmanagement.googleapis.com/",
"schemas": {
"AdbShellCommandEvent": {
Expand Down Expand Up @@ -2208,7 +2208,7 @@
"type": "string"
},
"errorCode": {
"description": "If the command failed, an error code explaining the failure. This is not set when the command is cancelled by the caller.",
"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.",
"enum": [
"COMMAND_ERROR_CODE_UNSPECIFIED",
"UNKNOWN",
Expand All @@ -2231,6 +2231,15 @@
"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.",
"type": "string"
},
"requestDeviceInfoParams": {
"$ref": "RequestDeviceInfoParams",
"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."
},
"requestDeviceInfoStatus": {
"$ref": "RequestDeviceInfoStatus",
"description": "Output only. Status of the REQUEST_DEVICE_INFO command.",
"readOnly": true
},
"resetPasswordFlags": {
"description": "For commands of type RESET_PASSWORD, optionally specifies flags.",
"items": {
Expand Down Expand Up @@ -3133,6 +3142,33 @@
},
"type": "object"
},
"Eid": {
"description": "EID information for each eUICC chip.",
"id": "Eid",
"properties": {
"eid": {
"description": "Output only. The EID",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"EidInfo": {
"description": "Information related to the EIDs of the device.",
"id": "EidInfo",
"properties": {
"eids": {
"description": "Output only. EID information for each eUICC chip.",
"items": {
"$ref": "Eid"
},
"readOnly": true,
"type": "array"
}
},
"type": "object"
},
"Empty": {
"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); } ",
"id": "Empty",
Expand Down Expand Up @@ -3365,6 +3401,18 @@
},
"type": "object"
},
"EuiccChipInfo": {
"description": "Information related to the eUICC chip.",
"id": "EuiccChipInfo",
"properties": {
"eid": {
"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.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"ExtensionConfig": {
"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.",
"id": "ExtensionConfig",
Expand Down Expand Up @@ -3535,6 +3583,14 @@
"readOnly": true,
"type": "string"
},
"euiccChipInfo": {
"description": "Output only. Information related to the eUICC chip.",
"items": {
"$ref": "EuiccChipInfo"
},
"readOnly": true,
"type": "array"
},
"gpuShutdownTemperatures": {
"description": "GPU shutdown temperature thresholds in Celsius for each GPU on the device.",
"items": {
Expand Down Expand Up @@ -5888,6 +5944,55 @@
},
"type": "object"
},
"RequestDeviceInfoParams": {
"description": "Parameters associated with the REQUEST_DEVICE_INFO command to get device related information.",
"id": "RequestDeviceInfoParams",
"properties": {
"deviceInfo": {
"description": "Required. Type of device information to be requested.",
"enum": [
"DEVICE_INFO_UNSPECIFIED",
"EID"
],
"enumDescriptions": [
"This value is disallowed.",
"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."
],
"type": "string"
}
},
"type": "object"
},
"RequestDeviceInfoStatus": {
"description": "Status of the REQUEST_DEVICE_INFO command.",
"id": "RequestDeviceInfoStatus",
"properties": {
"eidInfo": {
"$ref": "EidInfo",
"description": "Information related to the EIDs of the device."
},
"status": {
"description": "Output only. Status of a REQUEST_DEVICE_INFO command.",
"enum": [
"STATUS_UNSPECIFIED",
"SUCCEEDED",
"PENDING_USER_ACTION",
"USER_DECLINED",
"UNSUPPORTED"
],
"enumDescriptions": [
"Unspecified. This value is not used.",
"Device information has been successfully delivered.",
"The user has not completed the actions required to share device information.",
"The user declined sharing device information.",
"The requested device info is not supported on this device, e.g. eSIM is not supported on the device."
],
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"ScreenBrightnessSettings": {
"description": "Controls for the screen brightness settings.",
"id": "ScreenBrightnessSettings",
Expand Down
8 changes: 4 additions & 4 deletions discovery/artifactregistry-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -2455,7 +2455,7 @@
}
}
},
"revision": "20250423",
"revision": "20250425",
"rootUrl": "https://artifactregistry.googleapis.com/",
"schemas": {
"AptArtifact": {
Expand Down Expand Up @@ -4171,12 +4171,12 @@
"description": "Configuration specific for a Remote Repository."
},
"satisfiesPzi": {
"description": "Output only. If set, the repository satisfies physical zone isolation.",
"description": "Output only. Whether or not this repository satisfies PZI.",
"readOnly": true,
"type": "boolean"
},
"satisfiesPzs": {
"description": "Output only. If set, the repository satisfies physical zone separation.",
"description": "Output only. Whether or not this repository satisfies PZS.",
"readOnly": true,
"type": "boolean"
},
Expand Down Expand Up @@ -4373,7 +4373,7 @@
"type": "string"
},
"versionId": {
"description": "The ID of the version of the generic artifact. If the version does not exist, a new version will be created. The version_id must start and end with a letter or number, can only contain lowercase letters, numbers, hyphens and periods, i.e. [a-z0-9-.] and cannot exceed a total of 128 characters. Creating a version called `latest` is not allowed.",
"description": "The ID of the version of the generic artifact. If the version does not exist, a new version will be created. The version_id must start and end with a letter or number, can only contain lowercase letters, numbers, the following characters [-.+~:], i.e.[a-z0-9-.+~:] and cannot exceed a total of 128 characters. Creating a version called `latest` is not allowed.",
"type": "string"
}
},
Expand Down
6 changes: 3 additions & 3 deletions discovery/artifactregistry-v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@
}
}
},
"revision": "20250423",
"revision": "20250425",
"rootUrl": "https://artifactregistry.googleapis.com/",
"schemas": {
"Binding": {
Expand Down Expand Up @@ -1571,12 +1571,12 @@
"type": "string"
},
"satisfiesPzi": {
"description": "Output only. If set, the repository satisfies physical zone isolation.",
"description": "Output only. Whether or not this repository satisfies PZI.",
"readOnly": true,
"type": "boolean"
},
"satisfiesPzs": {
"description": "Output only. If set, the repository satisfies physical zone separation.",
"description": "Output only. Whether or not this repository satisfies PZS.",
"readOnly": true,
"type": "boolean"
},
Expand Down
6 changes: 3 additions & 3 deletions discovery/artifactregistry-v1beta2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1440,7 +1440,7 @@
}
}
},
"revision": "20250415",
"revision": "20250425",
"rootUrl": "https://artifactregistry.googleapis.com/",
"schemas": {
"AptArtifact": {
Expand Down Expand Up @@ -2121,12 +2121,12 @@
"type": "string"
},
"satisfiesPzi": {
"description": "Output only. If set, the repository satisfies physical zone isolation.",
"description": "Output only. Whether or not this repository satisfies PZI.",
"readOnly": true,
"type": "boolean"
},
"satisfiesPzs": {
"description": "Output only. If set, the repository satisfies physical zone separation.",
"description": "Output only. Whether or not this repository satisfies PZS.",
"readOnly": true,
"type": "boolean"
},
Expand Down
51 changes: 45 additions & 6 deletions discovery/bigquery-v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,9 @@
],
"enumDescriptions": [
"The default value. Default to the FULL view.",
"Includes metadata information for the dataset, such as location, etag, lastModifiedTime, etc.",
"Includes ACL information for the dataset, which defines dataset access for one or more entities.",
"Includes both dataset metadata and ACL information."
"Updates metadata information for the dataset, such as friendlyName, description, labels, etc.",
"Updates ACL information for the dataset, which defines dataset access for one or more entities.",
"Updates both dataset metadata and ACL information."
],
"location": "query",
"type": "string"
Expand Down Expand Up @@ -413,6 +413,23 @@
"pattern": "^[^/]+$",
"required": true,
"type": "string"
},
"updateMode": {
"description": "Optional. Specifies the fields of dataset that update/patch operation is targeting By default, both metadata and ACL fields are updated.",
"enum": [
"UPDATE_MODE_UNSPECIFIED",
"UPDATE_METADATA",
"UPDATE_ACL",
"UPDATE_FULL"
],
"enumDescriptions": [
"The default value. Default to the UPDATE_FULL.",
"Includes metadata information for the dataset, such as friendlyName, description, labels, etc.",
"Includes ACL information for the dataset, which defines dataset access for one or more entities.",
"Includes both dataset metadata and ACL information."
],
"location": "query",
"type": "string"
}
},
"path": "projects/{+projectId}/datasets/{+datasetId}",
Expand Down Expand Up @@ -493,6 +510,23 @@
"pattern": "^[^/]+$",
"required": true,
"type": "string"
},
"updateMode": {
"description": "Optional. Specifies the fields of dataset that update/patch operation is targeting By default, both metadata and ACL fields are updated.",
"enum": [
"UPDATE_MODE_UNSPECIFIED",
"UPDATE_METADATA",
"UPDATE_ACL",
"UPDATE_FULL"
],
"enumDescriptions": [
"The default value. Default to the UPDATE_FULL.",
"Includes metadata information for the dataset, such as friendlyName, description, labels, etc.",
"Includes ACL information for the dataset, which defines dataset access for one or more entities.",
"Includes both dataset metadata and ACL information."
],
"location": "query",
"type": "string"
}
},
"path": "projects/{+projectId}/datasets/{+datasetId}",
Expand Down Expand Up @@ -2256,7 +2290,7 @@
}
}
},
"revision": "20250404",
"revision": "20250427",
"rootUrl": "https://bigquery.googleapis.com/",
"schemas": {
"AggregateClassificationMetrics": {
Expand Down Expand Up @@ -5577,7 +5611,7 @@
"description": "Time-based partitioning specification for the destination table. Only one of timePartitioning and rangePartitioning should be specified."
},
"timeZone": {
"description": "Optional. [Experimental] Default time zone that will apply when parsing timestamp values that have no specific time zone.",
"description": "Optional. Default time zone that will apply when parsing timestamp values that have no specific time zone.",
"type": "string"
},
"timestampFormat": {
Expand Down Expand Up @@ -6235,7 +6269,7 @@
"type": "array"
},
"referencedTables": {
"description": "Output only. Referenced tables for the job. Queries that reference more than 50 tables will not have a complete list.",
"description": "Output only. Referenced tables for the job.",
"items": {
"$ref": "TableReference"
},
Expand Down Expand Up @@ -7780,6 +7814,11 @@
"format": "int64",
"type": "string"
},
"shuffleRamUsageRatio": {
"description": "Total shuffle usage ratio in shuffle RAM per reservation of this query. This will be provided for reservation customers only.",
"format": "double",
"type": "number"
},
"totalSlotMs": {
"description": "Cumulative slot-ms consumed by the query.",
"format": "int64",
Expand Down
8 changes: 7 additions & 1 deletion discovery/certificatemanager-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,12 @@
"name"
],
"parameters": {
"extraLocationTypes": {
"description": "Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.",
"location": "query",
"repeated": true,
"type": "string"
},
"filter": {
"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).",
"location": "query",
Expand Down Expand Up @@ -1314,7 +1320,7 @@
}
}
},
"revision": "20250211",
"revision": "20250423",
"rootUrl": "https://certificatemanager.googleapis.com/",
"schemas": {
"AllowlistedCertificate": {
Expand Down
Loading
Loading