Skip to content

feat(all): auto-regenerate discovery clients #2979

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

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion androidenterprise/v1/androidenterprise-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1811,8 +1811,10 @@
}
},
"serviceaccountkeys": {
"deprecated": true,
"methods": {
"delete": {
"deprecated": true,
"description": "Removes and invalidates the specified credentials for the service account associated with this enterprise. The calling service account must have been retrieved by calling Enterprises.GetServiceAccount and must have been set as the enterprise service account by calling Enterprises.SetAccount.",
"flatPath": "androidenterprise/v1/enterprises/{enterpriseId}/serviceAccountKeys/{keyId}",
"httpMethod": "DELETE",
Expand Down Expand Up @@ -1841,6 +1843,7 @@
]
},
"insert": {
"deprecated": true,
"description": "Generates new credentials for the service account associated with this enterprise. The calling service account must have been retrieved by calling Enterprises.GetServiceAccount and must have been set as the enterprise service account by calling Enterprises.SetAccount. Only the type of the key should be populated in the resource to be inserted.",
"flatPath": "androidenterprise/v1/enterprises/{enterpriseId}/serviceAccountKeys",
"httpMethod": "POST",
Expand Down Expand Up @@ -1868,6 +1871,7 @@
]
},
"list": {
"deprecated": true,
"description": "Lists all active credentials for the service account associated with this enterprise. Only the ID and key type are returned. The calling service account must have been retrieved by calling Enterprises.GetServiceAccount and must have been set as the enterprise service account by calling Enterprises.SetAccount.",
"flatPath": "androidenterprise/v1/enterprises/{enterpriseId}/serviceAccountKeys",
"httpMethod": "GET",
Expand Down Expand Up @@ -2652,7 +2656,7 @@
}
}
},
"revision": "20250115",
"revision": "20250122",
"rootUrl": "https://androidenterprise.googleapis.com/",
"schemas": {
"Administrator": {
Expand Down Expand Up @@ -4639,6 +4643,7 @@
"type": "object"
},
"ServiceAccountKeysListResponse": {
"deprecated": true,
"id": "ServiceAccountKeysListResponse",
"properties": {
"serviceAccountKey": {
Expand Down
39 changes: 37 additions & 2 deletions bigquery/v2/bigquery-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2009,7 +2009,7 @@
}
}
},
"revision": "20241222",
"revision": "20250112",
"rootUrl": "https://bigquery.googleapis.com/",
"schemas": {
"AggregateClassificationMetrics": {
Expand Down Expand Up @@ -6369,7 +6369,7 @@
"id": "MaterializedViewDefinition",
"properties": {
"allowNonIncrementalDefinition": {
"description": "Optional. This option declares the intention to construct a materialized view that isn't refreshed incrementally.",
"description": "Optional. This option declares the intention to construct a materialized view that isn't refreshed incrementally. Non-incremental materialized views support an expanded range of SQL queries. The `allow_non_incremental_definition` option can't be changed after the materialized view is created.",
"type": "boolean"
},
"enableRefresh": {
Expand Down Expand Up @@ -7281,11 +7281,23 @@
"description": "Whether the query result was fetched from the query cache.",
"type": "boolean"
},
"creationTime": {
"description": "Output only. Creation time of this query, in milliseconds since the epoch. This field will be present on all queries.",
"format": "int64",
"readOnly": true,
"type": "string"
},
"dmlStats": {
"$ref": "DmlStatistics",
"description": "Output only. Detailed statistics for DML statements INSERT, UPDATE, DELETE, MERGE or TRUNCATE.",
"readOnly": true
},
"endTime": {
"description": "Output only. End time of this query, in milliseconds since the epoch. This field will be present whenever a query job is in the DONE state.",
"format": "int64",
"readOnly": true,
"type": "string"
},
"errors": {
"description": "Output only. The first errors or warnings encountered during the running of the job. The final message includes the number of errors that caused the process to stop. Errors here do not necessarily mean that the job has completed or was unsuccessful. For more information about error messages, see [Error messages](https://cloud.google.com/bigquery/docs/error-messages).",
"items": {
Expand All @@ -7311,6 +7323,11 @@
"description": "The resource type.",
"type": "string"
},
"location": {
"description": "Output only. The geographic location of the query. For more information about BigQuery locations, see: https://cloud.google.com/bigquery/docs/locations",
"readOnly": true,
"type": "string"
},
"numDmlAffectedRows": {
"description": "Output only. The number of rows affected by a DML statement. Present only for DML statements INSERT, UPDATE or DELETE.",
"format": "int64",
Expand Down Expand Up @@ -7341,6 +7358,18 @@
"description": "Output only. Information of the session if this job is part of one.",
"readOnly": true
},
"startTime": {
"description": "Output only. Start time of this query, in milliseconds since the epoch. This field will be present when the query job transitions from the PENDING state to either RUNNING or DONE.",
"format": "int64",
"readOnly": true,
"type": "string"
},
"totalBytesBilled": {
"description": "Output only. If the project is configured to use on-demand pricing, then this field contains the total bytes billed for the job. If the project is configured to use flat-rate pricing, then you are not billed for bytes and this field is informational only.",
"format": "int64",
"readOnly": true,
"type": "string"
},
"totalBytesProcessed": {
"description": "The total number of bytes processed for this query. If this query was a dry run, this is the number of bytes that would be processed if the query were run.",
"format": "int64",
Expand All @@ -7350,6 +7379,12 @@
"description": "The total number of rows in the complete query result set, which can be more than the number of rows in this single page of results.",
"format": "uint64",
"type": "string"
},
"totalSlotMs": {
"description": "Output only. Number of slot ms the user is actually billed for.",
"format": "int64",
"readOnly": true,
"type": "string"
}
},
"type": "object"
Expand Down
24 changes: 24 additions & 0 deletions bigquery/v2/bigquery-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cloudidentity/v1/cloudidentity-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2057,7 +2057,7 @@
"parameterOrder": [],
"parameters": {
"filter": {
"description": "Optional. A CEL expression for filtering the results. Policies can be filtered by application with this expression: setting.name = 'settings/gmail.*' Policies can be filtered by setting type with this expression: setting.name = '*.service_status' A maximum of one of the above setting.name clauses can be used. Policies can be filtered by customer with this expression: customer = \"customers/{customer}\" Where `customer` is the `id` from the [Admin SDK `Customer` resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer` to specify your own organization. When no customer is mentioned it will be default to customers/my_customer. A maximum of one customer clause can be used. The above clauses can only be combined together in a single filter expression with the `\u0026\u0026` operator.",
"description": "Optional. A CEL expression for filtering the results. Policies can be filtered by application with this expression: setting.type.matches('^settings/gmail\\\\..*$') Policies can be filtered by setting type with this expression: setting.type.matches('^.*\\\\.service_status$') A maximum of one of the above setting.type clauses can be used. Policies can be filtered by customer with this expression: customer == \"customers/{customer}\" Where `customer` is the `id` from the [Admin SDK `Customer` resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer` to specify your own organization. When no customer is mentioned it will be default to customers/my_customer. A maximum of one customer clause can be used. The above clauses can only be combined together in a single filter expression with the `\u0026\u0026` operator.",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -2085,7 +2085,7 @@
}
}
},
"revision": "20241208",
"revision": "20250121",
"rootUrl": "https://cloudidentity.googleapis.com/",
"schemas": {
"AddIdpCredentialOperationMetadata": {
Expand Down
11 changes: 6 additions & 5 deletions cloudidentity/v1/cloudidentity-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 17 additions & 4 deletions cloudidentity/v1beta1/cloudidentity-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
"https://www.googleapis.com/auth/cloud-identity.inboundsso.readonly": {
"description": "See all of the Inbound SSO profiles and their assignments to any Org Units or Google Groups in your Cloud Identity Organization."
},
"https://www.googleapis.com/auth/cloud-identity.orgunits": {
"description": "List, Move orgmembers of an OrgUnit in your Cloud Identity Organization."
},
"https://www.googleapis.com/auth/cloud-identity.orgunits.readonly": {
"description": "List org members of an OrgUnit in your Cloud Identity Organization."
},
"https://www.googleapis.com/auth/cloud-identity.policies": {
"description": "See and edit policies in your Cloud Identity Organization."
},
Expand Down Expand Up @@ -2015,7 +2021,11 @@
"path": "v1beta1/{+parent}/memberships",
"response": {
"$ref": "ListOrgMembershipsResponse"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-identity.orgunits",
"https://www.googleapis.com/auth/cloud-identity.orgunits.readonly"
]
},
"move": {
"description": "Move an OrgMembership to a new OrgUnit. NOTE: This is an atomic copy-and-delete. The resource will have a new copy under the destination OrgUnit and be deleted from the source OrgUnit. The resource can only be searched under the destination OrgUnit afterwards.",
Expand All @@ -2040,7 +2050,10 @@
},
"response": {
"$ref": "Operation"
}
},
"scopes": [
"https://www.googleapis.com/auth/cloud-identity.orgunits"
]
}
}
}
Expand Down Expand Up @@ -2082,7 +2095,7 @@
"parameterOrder": [],
"parameters": {
"filter": {
"description": "Optional. A CEL expression for filtering the results. Policies can be filtered by application with this expression: setting.name = 'settings/gmail.*' Policies can be filtered by setting type with this expression: setting.name = '*.service_status' A maximum of one of the above setting.name clauses can be used. Policies can be filtered by customer with this expression: customer = \"customers/{customer}\" Where `customer` is the `id` from the [Admin SDK `Customer` resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer` to specify your own organization. When no customer is mentioned it will be default to customers/my_customer. A maximum of one customer clause can be used. The above clauses can only be combined together in a single filter expression with the `\u0026\u0026` operator.",
"description": "Optional. A CEL expression for filtering the results. Policies can be filtered by application with this expression: setting.type.matches('^settings/gmail\\\\..*$') Policies can be filtered by setting type with this expression: setting.type.matches('^.*\\\\.service_status$') A maximum of one of the above setting.type clauses can be used. Policies can be filtered by customer with this expression: customer == \"customers/{customer}\" Where `customer` is the `id` from the [Admin SDK `Customer` resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer` to specify your own organization. When no customer is mentioned it will be default to customers/my_customer. A maximum of one customer clause can be used. The above clauses can only be combined together in a single filter expression with the `\u0026\u0026` operator.",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -2110,7 +2123,7 @@
}
}
},
"revision": "20250107",
"revision": "20250121",
"rootUrl": "https://cloudidentity.googleapis.com/",
"schemas": {
"AddIdpCredentialOperationMetadata": {
Expand Down
Loading