Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2848)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored Oct 30, 2024
1 parent 9d5f008 commit 5bc448d
Show file tree
Hide file tree
Showing 34 changed files with 10,153 additions and 272 deletions.
4 changes: 2 additions & 2 deletions androidenterprise/v1/androidenterprise-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2654,7 +2654,7 @@
}
}
},
"revision": "20241021",
"revision": "20241028",
"rootUrl": "https://androidenterprise.googleapis.com/",
"schemas": {
"Administrator": {
Expand Down Expand Up @@ -4015,7 +4015,7 @@
"properties": {
"autoUpdatePolicy": {
"deprecated": true,
"description": "Controls when automatic app updates on the device can be applied. Recommended alternative: autoUpdateMode which is set per app, provides greater flexibility around update frequency. When autoUpdateMode is set to AUTO_UPDATE_POSTPONED or AUTO_UPDATE_HIGH_PRIORITY, autoUpdatePolicy has no effect. \"choiceToTheUser\" allows the device's user to configure the app update policy. \"always\" enables auto updates. \"never\" disables auto updates. \"wifiOnly\" enables auto updates only when the device is connected to wifi.",
"description": "Controls when automatic app updates on the device can be applied. Recommended alternative: autoUpdateMode which is set per app, provides greater flexibility around update frequency. When autoUpdateMode is set to AUTO_UPDATE_POSTPONED or AUTO_UPDATE_HIGH_PRIORITY, autoUpdatePolicy has no effect. - choiceToTheUser allows the device's user to configure the app update policy. - always enables auto updates. - never disables auto updates. - wifiOnly enables auto updates only when the device is connected to wifi. *Important:* Changes to app update policies don't affect updates that are in progress. Any policy changes will apply to subsequent app updates. ",
"enum": [
"autoUpdatePolicyUnspecified",
"choiceToTheUser",
Expand Down
10 changes: 6 additions & 4 deletions androidenterprise/v1/androidenterprise-gen.go

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

25 changes: 24 additions & 1 deletion cloudbuild/v1/cloudbuild-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2346,7 +2346,7 @@
}
}
},
"revision": "20240923",
"revision": "20241025",
"rootUrl": "https://cloudbuild.googleapis.com/",
"schemas": {
"ApprovalConfig": {
Expand Down Expand Up @@ -4631,13 +4631,36 @@
"$ref": "NetworkConfig",
"description": "Network configuration for the pool."
},
"privateServiceConnect": {
"$ref": "PrivateServiceConnect",
"description": "Immutable. Private Service Connect(PSC) Network configuration for the pool."
},
"workerConfig": {
"$ref": "WorkerConfig",
"description": "Machine configuration for the workers in the pool."
}
},
"type": "object"
},
"PrivateServiceConnect": {
"description": "Defines the Private Service Connect network configuration for the pool.",
"id": "PrivateServiceConnect",
"properties": {
"networkAttachment": {
"description": "Required. Immutable. The network attachment that the worker network interface is peered to. Must be in the format `projects/{project}/regions/{region}/networkAttachments/{networkAttachment}`. The region of network attachment must be the same as the worker pool. See [Network Attachments](https://cloud.google.com/vpc/docs/about-network-attachments)",
"type": "string"
},
"publicIpAddressDisabled": {
"description": "Required. Immutable. Disable public IP on the primary network interface. If true, workers are created without any public address, which prevents network egress to public IPs unless a network proxy is configured. If false, workers are created with a public address which allows for public internet egress. The public address only applies to traffic through the primary network interface. If `route_all_traffic` is set to true, all traffic will go through the non-primary network interface, this boolean has no effect.",
"type": "boolean"
},
"routeAllTraffic": {
"description": "Immutable. Route all traffic through PSC interface. Enable this if you want full control of traffic in the private pool. Configure Cloud NAT for the subnet of network attachment if you need to access public Internet. If false, Only route private IPs, e.g. 10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16 through PSC interface.",
"type": "boolean"
}
},
"type": "object"
},
"ProcessAppManifestCallbackOperationMetadata": {
"description": "Metadata for `ProcessAppManifestCallback` operation.",
"id": "ProcessAppManifestCallbackOperationMetadata",
Expand Down
46 changes: 46 additions & 0 deletions cloudbuild/v1/cloudbuild-gen.go

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

Loading

0 comments on commit 5bc448d

Please sign in to comment.