Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#3051)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored Mar 6, 2025
1 parent 10cb1ef commit f10c130
Show file tree
Hide file tree
Showing 73 changed files with 1,266 additions and 395 deletions.
6 changes: 3 additions & 3 deletions admin/reports/v1/admin-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
"type": "string"
},
"groupIdFilter": {
"description": "Comma separated group ids (obfuscated) on which user activities are filtered, i.e. the response will contain activities for only those users that are a part of at least one of the group ids mentioned here. Format: \"id:abc123,id:xyz456\"",
"description": "Comma separated group ids (obfuscated) on which user activities are filtered, i.e. the response will contain activities for only those users that are a part of at least one of the group ids mentioned here. Format: \"id:abc123,id:xyz456\" *Important:* To filter by groups, you must explicitly add the groups to your filtering groups allowlist. For more information about adding groups to filtering groups allowlist, see [Filter results by Google Group](https://support.google.com/a/answer/11482175)",
"location": "query",
"pattern": "(id:[a-z0-9]+(,id:[a-z0-9]+)*)",
"type": "string"
Expand Down Expand Up @@ -344,7 +344,7 @@
"type": "string"
},
"groupIdFilter": {
"description": "Comma separated group ids (obfuscated) on which user activities are filtered, i.e. the response will contain activities for only those users that are a part of at least one of the group ids mentioned here. Format: \"id:abc123,id:xyz456\"",
"description": "Comma separated group ids (obfuscated) on which user activities are filtered, i.e. the response will contain activities for only those users that are a part of at least one of the group ids mentioned here. Format: \"id:abc123,id:xyz456\" *Important:* To filter by groups, you must explicitly add the groups to your filtering groups allowlist. For more information about adding groups to filtering groups allowlist, see [Filter results by Google Group](https://support.google.com/a/answer/11482175)",
"location": "query",
"pattern": "(id:[a-z0-9]+(,id:[a-z0-9]+)*)",
"type": "string"
Expand Down Expand Up @@ -626,7 +626,7 @@
}
}
},
"revision": "20250128",
"revision": "20250304",
"rootUrl": "https://admin.googleapis.com/",
"schemas": {
"Activities": {
Expand Down
8 changes: 8 additions & 0 deletions admin/reports/v1/admin-gen.go

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

56 changes: 51 additions & 5 deletions alloydb/v1/alloydb-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1616,7 +1616,7 @@
}
}
},
"revision": "20250219",
"revision": "20250227",
"rootUrl": "https://alloydb.googleapis.com/",
"schemas": {
"AuthorizedNetwork": {
Expand Down Expand Up @@ -1645,7 +1645,7 @@
},
"encryptionConfig": {
"$ref": "EncryptionConfig",
"description": "Optional. The encryption config can be specified to encrypt the backups with a customer-managed encryption key (CMEK). When this field is not specified, the backup will then use default encryption scheme to protect the user data."
"description": "Optional. The encryption config can be specified to encrypt the backups with a customer-managed encryption key (CMEK). When this field is not specified, the backup will use the cluster's encryption config."
},
"labels": {
"additionalProperties": {
Expand Down Expand Up @@ -2789,6 +2789,10 @@
"readOnly": true,
"type": "array"
},
"observabilityConfig": {
"$ref": "ObservabilityInstanceConfig",
"description": "Configuration for observability."
},
"outboundPublicIpAddresses": {
"description": "Output only. All outbound public IP addresses configured for the instance.",
"items": {
Expand Down Expand Up @@ -3242,6 +3246,48 @@
},
"type": "object"
},
"ObservabilityInstanceConfig": {
"description": "Observability Instance specific configuration.",
"id": "ObservabilityInstanceConfig",
"properties": {
"enabled": {
"description": "Observability feature status for an instance. This flag is turned \"off\" by default.",
"type": "boolean"
},
"maxQueryStringLength": {
"description": "Query string length. The default value is 10k.",
"format": "int32",
"type": "integer"
},
"preserveComments": {
"description": "Preserve comments in query string for an instance. This flag is turned \"off\" by default.",
"type": "boolean"
},
"queryPlansPerMinute": {
"description": "Number of query execution plans captured by Insights per minute for all queries combined. The default value is 200. Any integer between 0 to 200 is considered valid.",
"format": "int32",
"type": "integer"
},
"recordApplicationTags": {
"description": "Record application tags for an instance. This flag is turned \"off\" by default.",
"type": "boolean"
},
"trackActiveQueries": {
"description": "Track actively running queries on the instance. If not set, this flag is \"off\" by default.",
"type": "boolean"
},
"trackWaitEventTypes": {
"description": "Output only. Track wait event types during query execution for an instance. This flag is turned \"on\" by default but tracking is enabled only after observability enabled flag is also turned on. This is read-only flag and only modifiable by internal API.",
"readOnly": true,
"type": "boolean"
},
"trackWaitEvents": {
"description": "Track wait events during query execution for an instance. This flag is turned \"on\" by default but tracking is enabled only after observability enabled flag is also turned on.",
"type": "boolean"
}
},
"type": "object"
},
"Operation": {
"description": "This resource represents a long-running operation that is the result of a network API call.",
"id": "Operation",
Expand Down Expand Up @@ -5100,12 +5146,12 @@
"properties": {
"cpuCount": {
"deprecated": true,
"description": "The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482, b/342346271) add proto validations again after bug fix.",
"description": "The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add proto validations again after bug fix.",
"format": "int32",
"type": "integer"
},
"memorySizeInBytes": {
"description": "Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations again after bug fix.",
"description": "Memory size in bytes. TODO(b/342344482) add proto validations again after bug fix.",
"format": "int64",
"type": "string"
},
Expand All @@ -5115,7 +5161,7 @@
"type": "integer"
},
"vcpuCount": {
"description": "Optional. The number of vCPUs. TODO(b/342344482, b/342346271) add proto validations again after bug fix.",
"description": "Optional. The number of vCPUs. TODO(b/342344482) add proto validations again after bug fix.",
"format": "double",
"type": "number"
}
Expand Down
62 changes: 55 additions & 7 deletions alloydb/v1/alloydb-gen.go

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

41 changes: 31 additions & 10 deletions alloydb/v1alpha/alloydb-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1616,7 +1616,7 @@
}
}
},
"revision": "20250219",
"revision": "20250227",
"rootUrl": "https://alloydb.googleapis.com/",
"schemas": {
"AuthorizedNetwork": {
Expand Down Expand Up @@ -1645,7 +1645,7 @@
},
"encryptionConfig": {
"$ref": "EncryptionConfig",
"description": "Optional. The encryption config can be specified to encrypt the backups with a customer-managed encryption key (CMEK). When this field is not specified, the backup will then use default encryption scheme to protect the user data."
"description": "Optional. The encryption config can be specified to encrypt the backups with a customer-managed encryption key (CMEK). When this field is not specified, the backup will use the cluster's encryption config."
},
"labels": {
"additionalProperties": {
Expand Down Expand Up @@ -2541,6 +2541,26 @@
},
"type": "object"
},
"GCAInstanceConfig": {
"description": "Instance level configuration parameters related to the Gemini Cloud Assist product.",
"id": "GCAInstanceConfig",
"properties": {
"gcaEntitlement": {
"description": "Output only. Represents the GCA entitlement state of the instance.",
"enum": [
"GCA_ENTITLEMENT_TYPE_UNSPECIFIED",
"GCA_STANDARD"
],
"enumDescriptions": [
"No GCA entitlement is assigned.",
"The resource is entitled to the GCA Standard Tier."
],
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GcsDestination": {
"description": "Destination for Export. Export will be done to cloud storage.",
"id": "GcsDestination",
Expand Down Expand Up @@ -2765,6 +2785,11 @@
"description": "For Resource freshness validation (https://google.aip.dev/154)",
"type": "string"
},
"gcaConfig": {
"$ref": "GCAInstanceConfig",
"description": "Output only. Configuration parameters related to Gemini Cloud Assist.",
"readOnly": true
},
"gceZone": {
"description": "The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.",
"type": "string"
Expand Down Expand Up @@ -3318,12 +3343,8 @@
"description": "Track actively running queries on the instance. If not set, this flag is \"off\" by default.",
"type": "boolean"
},
"trackClientAddress": {
"description": "Track client address for an instance. If not set, default value is \"off\".",
"type": "boolean"
},
"trackWaitEventTypes": {
"description": "Output only. Track wait event types during query execution for an instance. This flag is turned \"on\" by default but tracking is enabled only after observability enabled flag is also turned on. This is read-only flag and only modifiable by producer API.",
"description": "Output only. Track wait event types during query execution for an instance. This flag is turned \"on\" by default but tracking is enabled only after observability enabled flag is also turned on. This is read-only flag and only modifiable by internal API.",
"readOnly": true,
"type": "boolean"
},
Expand Down Expand Up @@ -5192,12 +5213,12 @@
"properties": {
"cpuCount": {
"deprecated": true,
"description": "The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482, b/342346271) add proto validations again after bug fix.",
"description": "The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add proto validations again after bug fix.",
"format": "int32",
"type": "integer"
},
"memorySizeInBytes": {
"description": "Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations again after bug fix.",
"description": "Memory size in bytes. TODO(b/342344482) add proto validations again after bug fix.",
"format": "int64",
"type": "string"
},
Expand All @@ -5207,7 +5228,7 @@
"type": "integer"
},
"vcpuCount": {
"description": "Optional. The number of vCPUs. TODO(b/342344482, b/342346271) add proto validations again after bug fix.",
"description": "Optional. The number of vCPUs. TODO(b/342344482) add proto validations again after bug fix.",
"format": "double",
"type": "number"
}
Expand Down
Loading

0 comments on commit f10c130

Please sign in to comment.