Skip to content

Commit 27530dd

Browse files
feat(all): auto-regenerate discovery clients (#3286)
1 parent bcde943 commit 27530dd

22 files changed

+1147
-319
lines changed

contactcenterinsights/v1/contactcenterinsights-api.json

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4811,6 +4811,22 @@
48114811
"pattern": "^projects/[^/]+/locations/[^/]+$",
48124812
"required": true,
48134813
"type": "string"
4814+
},
4815+
"qaScorecardSources": {
4816+
"description": "Optional. The source of scorecards are based on how those Scorecards were created, e.g., a customer-defined scorecard, a predefined scorecard, etc. This field is used to retrieve Scorecards of one or more sources.",
4817+
"enum": [
4818+
"QA_SCORECARD_SOURCE_UNSPECIFIED",
4819+
"QA_SCORECARD_SOURCE_CUSTOMER_DEFINED",
4820+
"QA_SCORECARD_SOURCE_DISCOVERY_ENGINE"
4821+
],
4822+
"enumDescriptions": [
4823+
"The source of the scorecard is unspecified. Default to QA_SCORECARD_SOURCE_CUSTOMER_DEFINED.",
4824+
"The scorecard is a custom scorecard created by the user.",
4825+
"The scorecard is a scorecard created through discovery engine deployment."
4826+
],
4827+
"location": "query",
4828+
"repeated": true,
4829+
"type": "string"
48144830
}
48154831
},
48164832
"path": "v1/{+parent}/qaScorecards",
@@ -5006,6 +5022,22 @@
50065022
"pattern": "^projects/[^/]+/locations/[^/]+/qaScorecards/[^/]+$",
50075023
"required": true,
50085024
"type": "string"
5025+
},
5026+
"qaScorecardSources": {
5027+
"description": "Optional. The source of scorecards are based on how those Scorecards were created, e.g., a customer-defined scorecard, a predefined scorecard, etc. This field is used to retrieve Scorecards Revisions from Scorecards of one or more sources.",
5028+
"enum": [
5029+
"QA_SCORECARD_SOURCE_UNSPECIFIED",
5030+
"QA_SCORECARD_SOURCE_CUSTOMER_DEFINED",
5031+
"QA_SCORECARD_SOURCE_DISCOVERY_ENGINE"
5032+
],
5033+
"enumDescriptions": [
5034+
"The source of the scorecard is unspecified. Default to QA_SCORECARD_SOURCE_CUSTOMER_DEFINED.",
5035+
"The scorecard is a custom scorecard created by the user.",
5036+
"The scorecard is a scorecard created through discovery engine deployment."
5037+
],
5038+
"location": "query",
5039+
"repeated": true,
5040+
"type": "string"
50095041
}
50105042
},
50115043
"path": "v1/{+parent}/revisions",
@@ -5392,7 +5424,7 @@
53925424
}
53935425
}
53945426
},
5395-
"revision": "20250818",
5427+
"revision": "20250821",
53965428
"rootUrl": "https://contactcenterinsights.googleapis.com/",
53975429
"schemas": {
53985430
"GoogleCloudContactcenterinsightsV1Analysis": {
@@ -9298,6 +9330,21 @@
92989330
"description": "Identifier. The scorecard name. Format: projects/{project}/locations/{location}/qaScorecards/{qa_scorecard}",
92999331
"type": "string"
93009332
},
9333+
"source": {
9334+
"description": "Output only. The source of the scorecard.",
9335+
"enum": [
9336+
"QA_SCORECARD_SOURCE_UNSPECIFIED",
9337+
"QA_SCORECARD_SOURCE_CUSTOMER_DEFINED",
9338+
"QA_SCORECARD_SOURCE_DISCOVERY_ENGINE"
9339+
],
9340+
"enumDescriptions": [
9341+
"The source of the scorecard is unspecified. Default to QA_SCORECARD_SOURCE_CUSTOMER_DEFINED.",
9342+
"The scorecard is a custom scorecard created by the user.",
9343+
"The scorecard is a scorecard created through discovery engine deployment."
9344+
],
9345+
"readOnly": true,
9346+
"type": "string"
9347+
},
93019348
"updateTime": {
93029349
"description": "Output only. The most recent time at which the scorecard was updated.",
93039350
"format": "google-datetime",

contactcenterinsights/v1/contactcenterinsights-gen.go

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

container/v1/container-api.json

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2660,7 +2660,7 @@
26602660
}
26612661
}
26622662
},
2663-
"revision": "20250807",
2663+
"revision": "20250812",
26642664
"rootUrl": "https://container.googleapis.com/",
26652665
"schemas": {
26662666
"AcceleratorConfig": {
@@ -4036,6 +4036,10 @@
40364036
"$ref": "ClusterNetworkPerformanceConfig",
40374037
"description": "The desired network performance config."
40384038
},
4039+
"desiredNetworkTierConfig": {
4040+
"$ref": "NetworkTierConfig",
4041+
"description": "The desired network tier configuration for the cluster."
4042+
},
40394043
"desiredNodeKubeletConfig": {
40404044
"$ref": "NodeKubeletConfig",
40414045
"description": "The desired node kubelet config for the cluster."
@@ -5276,6 +5280,10 @@
52765280
],
52775281
"type": "string"
52785282
},
5283+
"networkTierConfig": {
5284+
"$ref": "NetworkTierConfig",
5285+
"description": "Cluster-level network tier configuration is used to determine the default network tier for external IP addresses on cluster resources, such as node pools and load balancers."
5286+
},
52795287
"nodeIpv4Cidr": {
52805288
"deprecated": true,
52815289
"description": "This field is deprecated, use node_ipv4_cidr_block.",
@@ -6159,6 +6167,29 @@
61596167
},
61606168
"type": "object"
61616169
},
6170+
"NetworkTierConfig": {
6171+
"description": "NetworkTierConfig contains network tier information.",
6172+
"id": "NetworkTierConfig",
6173+
"properties": {
6174+
"networkTier": {
6175+
"description": "Network tier configuration.",
6176+
"enum": [
6177+
"NETWORK_TIER_UNSPECIFIED",
6178+
"NETWORK_TIER_DEFAULT",
6179+
"NETWORK_TIER_PREMIUM",
6180+
"NETWORK_TIER_STANDARD"
6181+
],
6182+
"enumDescriptions": [
6183+
"By default, use project-level configuration. When unspecified, the behavior defaults to NETWORK_TIER_DEFAULT. For cluster updates, this implies no action (no-op).",
6184+
"Default network tier. Use project-level configuration. User can specify this value, meaning they want to keep the same behaviour as before cluster level network tier configuration is introduced. This field ensures backward compatibility for the network tier of cluster resources, such as node pools and load balancers, for their external IP addresses.",
6185+
"Premium network tier.",
6186+
"Standard network tier."
6187+
],
6188+
"type": "string"
6189+
}
6190+
},
6191+
"type": "object"
6192+
},
61626193
"NodeAffinity": {
61636194
"description": "Specifies the NodeAffinity key, values, and affinity operator according to [shared sole tenant node group affinities](https://{$universe.dns_names.final_documentation_domain}/compute/docs/nodes/sole-tenant-nodes#node_affinity_and_anti-affinity).",
61646195
"id": "NodeAffinity",
@@ -6611,6 +6642,11 @@
66116642
"$ref": "NetworkPerformanceConfig",
66126643
"description": "Network bandwidth tier configuration."
66136644
},
6645+
"networkTierConfig": {
6646+
"$ref": "NetworkTierConfig",
6647+
"description": "Output only. The network tier configuration for the node pool inherits from the cluster-level configuration and remains immutable throughout the node pool's lifecycle, including during upgrades.",
6648+
"readOnly": true
6649+
},
66146650
"podCidrOverprovisionConfig": {
66156651
"$ref": "PodCIDROverprovisionConfig",
66166652
"description": "[PRIVATE FIELD] Pod CIDR size overprovisioning config for the nodepool. Pod CIDR size per node depends on max_pods_per_node. By default, the value of max_pods_per_node is rounded off to next power of 2 and we then double that to get the size of pod CIDR block per node. Example: max_pods_per_node of 30 would result in 64 IPs (/26). This config can disable the doubling of IPs (we still round off to next power of 2) Example: max_pods_per_node of 30 will result in 32 IPs (/27) when overprovisioning is disabled."

container/v1/container-gen.go

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

dataplex/v1/dataplex-api.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@
771771
],
772772
"parameters": {
773773
"extraLocationTypes": {
774-
"description": "Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.",
774+
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
775775
"location": "query",
776776
"repeated": true,
777777
"type": "string"
@@ -886,7 +886,7 @@
886886
"type": "string"
887887
},
888888
"orderBy": {
889-
"description": "Optional. Specifies the ordering of results. Supported values are: relevance (default) last_modified_timestamp last_modified_timestamp asc",
889+
"description": "Optional. Specifies the ordering of results. Supported values are: relevance last_modified_timestamp last_modified_timestamp asc",
890890
"location": "query",
891891
"type": "string"
892892
},
@@ -7211,7 +7211,7 @@
72117211
}
72127212
}
72137213
},
7214-
"revision": "20250808",
7214+
"revision": "20250820",
72157215
"rootUrl": "https://dataplex.googleapis.com/",
72167216
"schemas": {
72177217
"Empty": {

dataplex/v1/dataplex-gen.go

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

0 commit comments

Comments
 (0)