Skip to content

Commit 79b251a

Browse files
feat(all): auto-regenerate discovery clients (#3302)
1 parent 6db0561 commit 79b251a

Some content is hidden

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

47 files changed

+2565
-175
lines changed

analyticshub/v1/analyticshub-api.json

Lines changed: 63 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1247,7 +1247,7 @@
12471247
}
12481248
}
12491249
},
1250-
"revision": "20250807",
1250+
"revision": "20250901",
12511251
"rootUrl": "https://analyticshub.googleapis.com/",
12521252
"schemas": {
12531253
"ApproveQueryTemplateRequest": {
@@ -1358,6 +1358,21 @@
13581358
"description": "Optional. Resource name of the dataset source for this listing. e.g. `projects/myproject/datasets/123`",
13591359
"type": "string"
13601360
},
1361+
"effectiveReplicas": {
1362+
"description": "Output only. Server-owned effective state of replicas. Contains both primary and secondary replicas. Each replica includes a system-computed (output-only) state and primary designation.",
1363+
"items": {
1364+
"$ref": "Replica"
1365+
},
1366+
"readOnly": true,
1367+
"type": "array"
1368+
},
1369+
"replicaLocations": {
1370+
"description": "Optional. A list of regions where the publisher has created shared dataset replicas.",
1371+
"items": {
1372+
"type": "string"
1373+
},
1374+
"type": "array"
1375+
},
13611376
"restrictedExportPolicy": {
13621377
"$ref": "RestrictedExportPolicy",
13631378
"description": "Optional. If set, restricted export policy will be propagated and enforced on the linked dataset."
@@ -1585,6 +1600,13 @@
15851600
"location": {
15861601
"description": "Required. The geographic location where the dataset should reside. See https://cloud.google.com/bigquery/docs/locations for supported locations.",
15871602
"type": "string"
1603+
},
1604+
"replicaLocations": {
1605+
"description": "Optional. The geographic locations where the dataset should be replicated. See [BigQuery locations](https://cloud.google.com/bigquery/docs/locations) for supported locations.",
1606+
"items": {
1607+
"type": "string"
1608+
},
1609+
"type": "array"
15881610
}
15891611
},
15901612
"type": "object"
@@ -2438,6 +2460,46 @@
24382460
},
24392461
"type": "object"
24402462
},
2463+
"Replica": {
2464+
"description": "Represents the state of a replica of a shared dataset. It includes the geographic location of the replica and system-computed, output-only fields indicating its replication state and whether it is the primary replica.",
2465+
"id": "Replica",
2466+
"properties": {
2467+
"location": {
2468+
"description": "Output only. The geographic location where the replica resides. See [BigQuery locations](https://cloud.google.com/bigquery/docs/locations) for supported locations. Eg. \"us-central1\".",
2469+
"readOnly": true,
2470+
"type": "string"
2471+
},
2472+
"primaryState": {
2473+
"description": "Output only. Indicates that this replica is the primary replica.",
2474+
"enum": [
2475+
"PRIMARY_STATE_UNSPECIFIED",
2476+
"PRIMARY_REPLICA"
2477+
],
2478+
"enumDescriptions": [
2479+
"Default value. This value is unused.",
2480+
"The replica is the primary replica."
2481+
],
2482+
"readOnly": true,
2483+
"type": "string"
2484+
},
2485+
"replicaState": {
2486+
"description": "Output only. Assigned by Analytics Hub based on real BigQuery replication state.",
2487+
"enum": [
2488+
"REPLICA_STATE_UNSPECIFIED",
2489+
"READY_TO_USE",
2490+
"UNAVAILABLE"
2491+
],
2492+
"enumDescriptions": [
2493+
"Default value. This value is unused.",
2494+
"The replica is backfilled and ready to use.",
2495+
"The replica is unavailable, does not exist, or has not been backfilled yet."
2496+
],
2497+
"readOnly": true,
2498+
"type": "string"
2499+
}
2500+
},
2501+
"type": "object"
2502+
},
24412503
"RestrictedExportConfig": {
24422504
"description": "Restricted export config, used to configure restricted export on linked dataset.",
24432505
"id": "RestrictedExportConfig",

analyticshub/v1/analyticshub-gen.go

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

androidpublisher/v3/androidpublisher-api.json

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5555,7 +5555,7 @@
55555555
}
55565556
}
55575557
},
5558-
"revision": "20250903",
5558+
"revision": "20250904",
55595559
"rootUrl": "https://androidpublisher.googleapis.com/",
55605560
"schemas": {
55615561
"Abi": {
@@ -6208,6 +6208,10 @@
62086208
"$ref": "SubscriptionItemPriceChangeDetails",
62096209
"description": "The information of the last price change for the item since subscription signup."
62106210
},
6211+
"priceStepUpConsentDetails": {
6212+
"$ref": "PriceStepUpConsentDetails",
6213+
"description": "The information of the latest price step-up consent."
6214+
},
62116215
"recurringPrice": {
62126216
"$ref": "Money",
62136217
"description": "The current recurring price of the auto renewing plan. Note that the price does not take into account discounts and does not include taxes for tax-exclusive pricing, please call orders.get API instead if transaction details are needed."
@@ -9903,6 +9907,39 @@
99039907
},
99049908
"type": "object"
99059909
},
9910+
"PriceStepUpConsentDetails": {
9911+
"description": "Information related to a price step-up that requires user consent.",
9912+
"id": "PriceStepUpConsentDetails",
9913+
"properties": {
9914+
"consentDeadlineTime": {
9915+
"description": "The deadline by which the user must provide consent. If consent is not provided by this time, the subscription will be canceled.",
9916+
"format": "google-datetime",
9917+
"type": "string"
9918+
},
9919+
"newPrice": {
9920+
"$ref": "Money",
9921+
"description": "The new price which requires user consent."
9922+
},
9923+
"state": {
9924+
"description": "Output only. The state of the price step-up consent.",
9925+
"enum": [
9926+
"CONSENT_STATE_UNSPECIFIED",
9927+
"PENDING",
9928+
"CONFIRMED",
9929+
"COMPLETED"
9930+
],
9931+
"enumDescriptions": [
9932+
"Unspecified consent state.",
9933+
"The user has not yet provided consent.",
9934+
"The user has consented, and the new price is waiting to take effect.",
9935+
"The user has consented, and the new price has taken effect."
9936+
],
9937+
"readOnly": true,
9938+
"type": "string"
9939+
}
9940+
},
9941+
"type": "object"
9942+
},
99069943
"ProcessedEvent": {
99079944
"description": "Details of when the order was processed.",
99089945
"id": "ProcessedEvent",

androidpublisher/v3/androidpublisher-gen.go

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

backupdr/v1/backupdr-api.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2117,7 +2117,7 @@
21172117
}
21182118
}
21192119
},
2120-
"revision": "20250825",
2120+
"revision": "20250830",
21212121
"rootUrl": "https://backupdr.googleapis.com/",
21222122
"schemas": {
21232123
"AbandonBackupRequest": {
@@ -5030,9 +5030,11 @@
50305030
"enum": [
50315031
"FEATURE_UNSPECIFIED",
50325032
"MANAGEMENT_SERVER",
5033-
"COMPUTE_INSTANCE"
5033+
"COMPUTE_INSTANCE",
5034+
"PROTECTION_SUMMARY"
50345035
],
50355036
"enumDescriptions": [
5037+
"",
50365038
"",
50375039
"",
50385040
""
@@ -5583,12 +5585,16 @@
55835585
"enum": [
55845586
"RESOURCE_TYPE_UNSPECIFIED",
55855587
"CLOUD_SQL_INSTANCE",
5586-
"COMPUTE_ENGINE_VM"
5588+
"COMPUTE_ENGINE_VM",
5589+
"COMPUTE_ENGINE_DISK",
5590+
"COMPUTE_ENGINE_REGIONAL_DISK"
55875591
],
55885592
"enumDescriptions": [
55895593
"Resource type not set.",
55905594
"Cloud SQL instance.",
5591-
"Compute Engine VM."
5595+
"Compute Engine VM.",
5596+
"Compute Engine Disk.",
5597+
"Compute Engine Regional Disk."
55925598
],
55935599
"readOnly": true,
55945600
"type": "string"

backupdr/v1/backupdr-gen.go

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

cloudbuild/v1/cloudbuild-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2573,7 +2573,7 @@
25732573
}
25742574
}
25752575
},
2576-
"revision": "20250801",
2576+
"revision": "20250903",
25772577
"rootUrl": "https://cloudbuild.googleapis.com/",
25782578
"schemas": {
25792579
"ApprovalConfig": {
@@ -4911,7 +4911,7 @@
49114911
"id": "NpmPackage",
49124912
"properties": {
49134913
"packagePath": {
4914-
"description": "Path to the package.json. e.g. workspace/path/to/package",
4914+
"description": "Optional. Path to the package.json. e.g. workspace/path/to/package Only one of `archive` or `package_path` can be specified.",
49154915
"type": "string"
49164916
},
49174917
"repository": {

cloudbuild/v1/cloudbuild-gen.go

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

cloudbuild/v2/cloudbuild-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@
371371
],
372372
"parameters": {
373373
"extraLocationTypes": {
374-
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
374+
"description": "Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.",
375375
"location": "query",
376376
"repeated": true,
377377
"type": "string"
@@ -1087,7 +1087,7 @@
10871087
}
10881088
}
10891089
},
1090-
"revision": "20250814",
1090+
"revision": "20250903",
10911091
"rootUrl": "https://cloudbuild.googleapis.com/",
10921092
"schemas": {
10931093
"AuditConfig": {

cloudbuild/v2/cloudbuild-gen.go

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

0 commit comments

Comments
 (0)