Skip to content
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

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

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 26 additions & 3 deletions analyticshub/v1/analyticshub-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@
],
"parameters": {
"filter": {
"description": "The filter expression may be used to filter by Data Exchange or Listing.",
"description": "An expression for filtering the results of the request. Eligible fields for filtering are: + `listing` + `data_exchange` Alternatively, a literal wrapped in double quotes may be provided. This will be checked for an exact match against both fields above. In all cases, the full Data Exchange or Listing resource name must be provided. Some example of using filters: + data_exchange=\"projects/myproject/locations/us/dataExchanges/123\" + listing=\"projects/123/locations/us/dataExchanges/456/listings/789\" + \"projects/myproject/locations/us/dataExchanges/123\"",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -1022,7 +1022,7 @@
}
}
},
"revision": "20240307",
"revision": "20240408",
"rootUrl": "https://analyticshub.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -1081,6 +1081,10 @@
"description": "Resource name of the dataset source for this listing. e.g. `projects/myproject/datasets/123`",
"type": "string"
},
"restrictedExportPolicy": {
"$ref": "RestrictedExportPolicy",
"description": "Optional. If set, restricted export policy will be propagated and enforced on the linked dataset."
},
"selectedResources": {
"description": "Optional. Resources in this dataset that are selectively shared. If this field is empty, then the entire dataset (all resources) are shared. This field is only valid for data clean room exchanges.",
"items": {
Expand Down Expand Up @@ -1672,6 +1676,25 @@
},
"type": "object"
},
"RestrictedExportPolicy": {
"description": "Restricted export policy used to configure restricted export on linked dataset.",
"id": "RestrictedExportPolicy",
"properties": {
"enabled": {
"description": "Optional. If true, enable restricted export.",
"type": "boolean"
},
"restrictDirectTableAccess": {
"description": "Optional. If true, restrict direct table access (read api/tabledata.list) on linked table.",
"type": "boolean"
},
"restrictQueryResult": {
"description": "Optional. If true, restrict export of query result derived from restricted linked dataset table.",
"type": "boolean"
}
},
"type": "object"
},
"RevokeSubscriptionRequest": {
"description": "Message for revoking a subscription.",
"id": "RevokeSubscriptionRequest",
Expand Down Expand Up @@ -1789,7 +1812,7 @@
"properties": {
"destinationDataset": {
"$ref": "DestinationDataset",
"description": "BigQuery destination dataset to create for the subscriber."
"description": "Input only. BigQuery destination dataset to create for the subscriber."
}
},
"type": "object"
Expand Down
59 changes: 54 additions & 5 deletions analyticshub/v1/analyticshub-gen.go

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

14 changes: 13 additions & 1 deletion androidmanagement/v1/androidmanagement-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@
}
}
},
"revision": "20240408",
"revision": "20240416",
"rootUrl": "https://androidmanagement.googleapis.com/",
"schemas": {
"AdbShellCommandEvent": {
Expand Down Expand Up @@ -5451,6 +5451,10 @@
"description": "The name of the enterprise in the form enterprises/{enterprise}.",
"type": "string"
},
"imei": {
"description": "IMEI number of the GSM device. For example, A1000031212.",
"type": "string"
},
"managementMode": {
"description": "The management mode of the device or profile.",
"enum": [
Expand All @@ -5465,6 +5469,10 @@
],
"type": "string"
},
"meid": {
"description": "MEID number of the CDMA device. For example, A00000292788E1.",
"type": "string"
},
"model": {
"description": "The model of the device. For example, Asus Nexus 7.",
"type": "string"
Expand All @@ -5486,6 +5494,10 @@
"Device is personally-owned."
],
"type": "string"
},
"serialNumber": {
"description": "The device serial number.",
"type": "string"
}
},
"type": "object"
Expand Down
9 changes: 9 additions & 0 deletions androidmanagement/v1/androidmanagement-gen.go

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

12 changes: 11 additions & 1 deletion androidpublisher/v3/androidpublisher-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4731,7 +4731,7 @@
}
}
},
"revision": "20240415",
"revision": "20240417",
"rootUrl": "https://androidpublisher.googleapis.com/",
"schemas": {
"Abi": {
Expand Down Expand Up @@ -7862,6 +7862,10 @@
"$ref": "Money",
"description": "The absolute amount of money subtracted from the base plan price prorated over the phase duration that the user pays for this offer phase. For example, if the base plan price for this region is $12 for a period of 1 year, then a $1 absolute discount for a phase of a duration of 3 months would correspond to a price of $2. The resulting price may not be smaller than the minimum price allowed for this region."
},
"free": {
"$ref": "RegionalSubscriptionOfferPhaseFreePriceOverride",
"description": "Set to specify this offer is free to obtain."
},
"price": {
"$ref": "Money",
"description": "The absolute price the user pays for this offer phase. The price must not be smaller than the minimum price allowed for this region."
Expand All @@ -7878,6 +7882,12 @@
},
"type": "object"
},
"RegionalSubscriptionOfferPhaseFreePriceOverride": {
"description": "Represents the free price override configuration for a single phase of a subscription offer",
"id": "RegionalSubscriptionOfferPhaseFreePriceOverride",
"properties": {},
"type": "object"
},
"RegionalTaxRateInfo": {
"description": "Specified details about taxation in a given geographical region.",
"id": "RegionalTaxRateInfo",
Expand Down
9 changes: 9 additions & 0 deletions androidpublisher/v3/androidpublisher-gen.go

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

Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,11 @@
"parent"
],
"parameters": {
"filter": {
"description": "Optional. Optional query string using the [Cloud API list filtering syntax](https://developers.google.com/authorized-buyers/apis/guides/list-filters) Only supported when parent is bidder. Supported columns for filtering are: * displayName * createTime * updateTime * eligibleSeatIds",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "Requested page size. The server may return fewer results than requested. Max allowed page size is 500.",
"format": "int32",
Expand Down Expand Up @@ -1307,7 +1312,7 @@
}
}
},
"revision": "20240304",
"revision": "20240417",
"rootUrl": "https://authorizedbuyersmarketplace.googleapis.com/",
"schemas": {
"AcceptProposalRequest": {
Expand Down

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

Loading