Skip to content

Commit 786dca6

Browse files
feat(all): auto-regenerate discovery clients (#2265)
1 parent 3e83ea6 commit 786dca6

File tree

60 files changed

+5738
-1347
lines changed

Some content is hidden

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

60 files changed

+5738
-1347
lines changed

admin/directory/v1/admin-api.json

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4643,7 +4643,7 @@
46434643
}
46444644
}
46454645
},
4646-
"revision": "20231005",
4646+
"revision": "20231113",
46474647
"rootUrl": "https://admin.googleapis.com/",
46484648
"schemas": {
46494649
"Alias": {
@@ -7589,7 +7589,7 @@
75897589
"type": "string"
75907590
},
75917591
"emails": {
7592-
"description": "The list of the user's email addresses. The maximum allowed data size for this field is 10KB.",
7592+
"description": "The list of the user's email addresses. The maximum allowed data size for this field is 10KB. This excludes `publicKeyEncryptionCertificates`.",
75937593
"type": "any"
75947594
},
75957595
"etag": {
@@ -7896,6 +7896,24 @@
78967896
"description": "If this is user's primary email. Only one entry could be marked as primary.",
78977897
"type": "boolean"
78987898
},
7899+
"public_key_encryption_certificates": {
7900+
"description": "Public Key Encryption Certificates. Current limit: 1 per email address, and 5 per user.",
7901+
"properties": {
7902+
"certificate": {
7903+
"description": "X.509 encryption certificate in `PEM` format. Must only be an end-entity (leaf) certificate.",
7904+
"type": "string"
7905+
},
7906+
"is_default": {
7907+
"description": "Whether this is the default certificate for the given email address.",
7908+
"type": "boolean"
7909+
},
7910+
"state": {
7911+
"description": "Denotes the certificate's state in its lifecycle. Possible values are `not_yet_validated`, `valid`, `invalid`, `expired`, and `revoked`.",
7912+
"type": "string"
7913+
}
7914+
},
7915+
"type": "object"
7916+
},
78997917
"type": {
79007918
"description": "Each entry can have a type which indicates standard types of that entry. For example email could be of home, work etc. In addition to the standard type, an entry can have a custom type and can take any value Such types should have the CUSTOM value as type and also have a customType value.",
79017919
"type": "string"

admin/directory/v1/admin-gen.go

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

alloydb/v1alpha/alloydb-api.json

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1489,7 +1489,7 @@
14891489
}
14901490
}
14911491
},
1492-
"revision": "20231025",
1492+
"revision": "20231109",
14931493
"rootUrl": "https://alloydb.googleapis.com/",
14941494
"schemas": {
14951495
"AutomatedBackupPolicy": {
@@ -1896,6 +1896,10 @@
18961896
"description": "Output only. Cross Region replication config specific to PRIMARY cluster.",
18971897
"readOnly": true
18981898
},
1899+
"pscConfig": {
1900+
"$ref": "PscConfig",
1901+
"description": "Optional. The configuration for Private Service Connect (PSC) for the cluster."
1902+
},
18991903
"reconciling": {
19001904
"description": "Output only. Reconciling (https://google.aip.dev/128#reconciliation). Set to true if the current state of Cluster does not match the user's intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance.",
19011905
"readOnly": true,
@@ -2675,7 +2679,7 @@
26752679
"type": "string"
26762680
},
26772681
"network": {
2678-
"description": "Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project_number}/global/networks/{network_id}\". This is required to create a cluster.",
2682+
"description": "Optional. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project_number}/global/networks/{network_id}\". This is required to create a cluster.",
26792683
"type": "string"
26802684
}
26812685
},
@@ -2817,6 +2821,17 @@
28172821
},
28182822
"type": "object"
28192823
},
2824+
"PscConfig": {
2825+
"description": "PscConfig contains PSC related configuration at a cluster level. NEXT ID: 2",
2826+
"id": "PscConfig",
2827+
"properties": {
2828+
"pscEnabled": {
2829+
"description": "Optional. Create an instance that allows connections from Private Service Connect endpoints to the instance.",
2830+
"type": "boolean"
2831+
}
2832+
},
2833+
"type": "object"
2834+
},
28202835
"QuantityBasedExpiry": {
28212836
"description": "A backup's position in a quantity-based retention queue, of backups with the same source cluster and type, with length, retention, specified by the backup's retention policy. Once the position is greater than the retention, the backup is eligible to be garbage collected. Example: 5 backups from the same source cluster and type with a quantity-based retention of 3 and denoted by backup_id (position, retention). Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3)",
28222837
"id": "QuantityBasedExpiry",

alloydb/v1alpha/alloydb-gen.go

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

alloydb/v1beta/alloydb-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1486,7 +1486,7 @@
14861486
}
14871487
}
14881488
},
1489-
"revision": "20231025",
1489+
"revision": "20231109",
14901490
"rootUrl": "https://alloydb.googleapis.com/",
14911491
"schemas": {
14921492
"AutomatedBackupPolicy": {
@@ -2651,7 +2651,7 @@
26512651
"type": "string"
26522652
},
26532653
"network": {
2654-
"description": "Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project_number}/global/networks/{network_id}\". This is required to create a cluster.",
2654+
"description": "Optional. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project_number}/global/networks/{network_id}\". This is required to create a cluster.",
26552655
"type": "string"
26562656
}
26572657
},

alloydb/v1beta/alloydb-gen.go

Lines changed: 1 addition & 1 deletion
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: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4081,7 +4081,7 @@
40814081
}
40824082
}
40834083
},
4084-
"revision": "20231111",
4084+
"revision": "20231115",
40854085
"rootUrl": "https://androidpublisher.googleapis.com/",
40864086
"schemas": {
40874087
"Abi": {
@@ -5195,6 +5195,10 @@
51955195
"description": "User's address for the external transaction.",
51965196
"id": "ExternalTransactionAddress",
51975197
"properties": {
5198+
"administrativeArea": {
5199+
"description": "Optional. Top-level administrative subdivision of the country/region. Only required for transactions in India. Valid values are \"ANDAMAN AND NICOBAR ISLANDS\", \"ANDHRA PRADESH\", \"ARUNACHAL PRADESH\", \"ASSAM\", \"BIHAR\", \"CHANDIGARH\", \"CHHATTISGARH\", \"DADRA AND NAGAR HAVELI\", \"DADRA AND NAGAR HAVELI AND DAMAN AND DIU\", \"DAMAN AND DIU\", \"DELHI\", \"GOA\", \"GUJARAT\", \"HARYANA\", \"HIMACHAL PRADESH\", \"JAMMU AND KASHMIR\", \"JHARKHAND\", \"KARNATAKA\", \"KERALA\", \"LADAKH\", \"LAKSHADWEEP\", \"MADHYA PRADESH\", \"MAHARASHTRA\", \"MANIPUR\", \"MEGHALAYA\", \"MIZORAM\", \"NAGALAND\", \"ODISHA\", \"PUDUCHERRY\", \"PUNJAB\", \"RAJASTHAN\", \"SIKKIM\", \"TAMIL NADU\", \"TELANGANA\", \"TRIPURA\", \"UTTAR PRADESH\", \"UTTARAKHAND\", and \"WEST BENGAL\".",
5200+
"type": "string"
5201+
},
51985202
"regionCode": {
51995203
"description": "Required. Two letter region code based on ISO-3166-1 Alpha-2 (UN region codes).",
52005204
"type": "string"
@@ -6378,6 +6382,20 @@
63786382
"initialExternalTransactionId": {
63796383
"description": "The external transaction id of the first transaction of this recurring series of transactions. For example, for a subscription this would be the transaction id of the first payment. Required when creating recurring external transactions.",
63806384
"type": "string"
6385+
},
6386+
"migratedTransactionProgram": {
6387+
"description": "Input only. Provided during the call to Create. Must only be used when migrating a subscription from manual monthly reporting to automated reporting.",
6388+
"enum": [
6389+
"EXTERNAL_TRANSACTION_PROGRAM_UNSPECIFIED",
6390+
"USER_CHOICE_BILLING",
6391+
"ALTERTNATIVE_BILLING_ONLY"
6392+
],
6393+
"enumDescriptions": [
6394+
"Unspecified transaction program. Not used.",
6395+
"User choice billing, where a user may choose between Google Play Billing developer-managed billing.",
6396+
"Alternatively billing only, where users may only use developer-manager billing."
6397+
],
6398+
"type": "string"
63816399
}
63826400
},
63836401
"type": "object"

androidpublisher/v3/androidpublisher-gen.go

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

0 commit comments

Comments
 (0)