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 #1513

Merged
merged 1 commit into from Apr 15, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions cloudbuild/v1/cloudbuild-api.json
Expand Up @@ -745,7 +745,7 @@
]
},
"removeBitbucketServerConnectedRepository": {
"description": "Remove a Bitbucket Server repository from an given BitbucketServerConfigs connected repositories. This API is experimental.",
"description": "Remove a Bitbucket Server repository from a given BitbucketServerConfig's connected repositories. This API is experimental.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/bitbucketServerConfigs/{bitbucketServerConfigsId}:removeBitbucketServerConnectedRepository",
"httpMethod": "POST",
"id": "cloudbuild.projects.locations.bitbucketServerConfigs.removeBitbucketServerConnectedRepository",
Expand Down Expand Up @@ -2011,7 +2011,7 @@
}
}
},
"revision": "20220322",
"revision": "20220407",
"rootUrl": "https://cloudbuild.googleapis.com/",
"schemas": {
"ApprovalConfig": {
Expand Down
4 changes: 2 additions & 2 deletions cloudbuild/v1/cloudbuild-gen.go

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

90 changes: 54 additions & 36 deletions compute/v0.alpha/compute-api.json

Large diffs are not rendered by default.

245 changes: 133 additions & 112 deletions compute/v0.alpha/compute-gen.go

Large diffs are not rendered by default.

56 changes: 28 additions & 28 deletions compute/v1/compute-api.json

Large diffs are not rendered by default.

170 changes: 88 additions & 82 deletions compute/v1/compute-gen.go

Large diffs are not rendered by default.

51 changes: 48 additions & 3 deletions container/v1/container-api.json
Expand Up @@ -2459,7 +2459,7 @@
}
}
},
"revision": "20220312",
"revision": "20220328",
"rootUrl": "https://container.googleapis.com/",
"schemas": {
"AcceleratorConfig": {
Expand Down Expand Up @@ -3430,7 +3430,7 @@
"type": "object"
},
"Empty": {
"description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.",
"description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }",
"id": "Empty",
"properties": {},
"type": "object"
Expand Down Expand Up @@ -3773,7 +3773,7 @@
"additionalProperties": {
"type": "string"
},
"description": "The Linux kernel parameters to be applied to the nodes and all pods running on the nodes. The following parameters are supported. net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse",
"description": "The Linux kernel parameters to be applied to the nodes and all pods running on the nodes. The following parameters are supported. net.core.busy_poll net.core.busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse",
"type": "object"
}
},
Expand Down Expand Up @@ -4346,6 +4346,25 @@
"cpuManagerPolicy": {
"description": "Control the CPU management policy on the node. See https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/ The following values are allowed. * \"none\": the default, which represents the existing scheduling behavior. * \"static\": allows pods with certain resource characteristics to be granted increased CPU affinity and exclusivity on the node. The default value is 'none' if unspecified.",
"type": "string"
},
"podPidsLimit": {
"description": "Set the Pod PID limits. See https://kubernetes.io/docs/concepts/policy/pid-limiting/#pod-pid-limits Controls the maximum number of processes allowed to run in a pod. The value must be greater than or equal to 1024 and less than 4194304.",
"format": "int64",
"type": "string"
}
},
"type": "object"
},
"NodeLabels": {
"description": "Collection of node-level [Kubernetes labels](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels).",
"id": "NodeLabels",
"properties": {
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of node label keys and node label values.",
"type": "object"
}
},
"type": "object"
Expand Down Expand Up @@ -4566,6 +4585,20 @@
},
"type": "object"
},
"NodeTaints": {
"description": "Collection of Kubernetes [node taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration).",
"id": "NodeTaints",
"properties": {
"taints": {
"description": "List of node taints.",
"items": {
"$ref": "NodeTaint"
},
"type": "array"
}
},
"type": "object"
},
"NotificationConfig": {
"description": "NotificationConfig is the configuration of notifications.",
"id": "NotificationConfig",
Expand Down Expand Up @@ -5731,6 +5764,10 @@
"$ref": "NodeKubeletConfig",
"description": "Node kubelet configs."
},
"labels": {
"$ref": "NodeLabels",
"description": "The desired node labels to be applied to all nodes in the node pool. If this field is not present, the labels will not be changed. Otherwise, the existing node labels will be *replaced* with the provided labels."
},
"linuxNodeConfig": {
"$ref": "LinuxNodeConfig",
"description": "Parameters that can be configured on Linux nodes."
Expand Down Expand Up @@ -5758,6 +5795,14 @@
"description": "Deprecated. The Google Developers Console [project ID or project number](https://support.google.com/cloud/answer/6158840). This field has been deprecated and replaced by the name field.",
"type": "string"
},
"tags": {
"$ref": "NetworkTags",
"description": "The desired network tags to be applied to all nodes in the node pool. If this field is not present, the tags will not be changed. Otherwise, the existing network tags will be *replaced* with the provided tags."
},
"taints": {
"$ref": "NodeTaints",
"description": "The desired node taints to be applied to all nodes in the node pool. If this field is not present, the taints will not be changed. Otherwise, the existing node taints will be *replaced* with the provided taints."
},
"upgradeSettings": {
"$ref": "UpgradeSettings",
"description": "Upgrade settings control disruption and speed of the upgrade."
Expand Down
93 changes: 87 additions & 6 deletions container/v1/container-gen.go

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

13 changes: 9 additions & 4 deletions container/v1beta1/container-api.json
Expand Up @@ -2484,7 +2484,7 @@
}
}
},
"revision": "20220308",
"revision": "20220328",
"rootUrl": "https://container.googleapis.com/",
"schemas": {
"AcceleratorConfig": {
Expand Down Expand Up @@ -2697,7 +2697,7 @@
"id": "BinaryAuthorization",
"properties": {
"enabled": {
"description": "Enable Binary Authorization for this cluster. If enabled, all container images will be validated by Google Binauthz.",
"description": "Enable Binary Authorization for this cluster. If enabled, all container images will be validated by Binary Authorization.",
"type": "boolean"
}
},
Expand Down Expand Up @@ -3585,7 +3585,7 @@
"type": "object"
},
"Empty": {
"description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.",
"description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }",
"id": "Empty",
"properties": {},
"type": "object"
Expand Down Expand Up @@ -3989,7 +3989,7 @@
"additionalProperties": {
"type": "string"
},
"description": "The Linux kernel parameters to be applied to the nodes and all pods running on the nodes. The following parameters are supported. net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse",
"description": "The Linux kernel parameters to be applied to the nodes and all pods running on the nodes. The following parameters are supported. net.core.busy_poll net.core.busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse",
"type": "object"
}
},
Expand Down Expand Up @@ -4639,6 +4639,11 @@
"cpuManagerPolicy": {
"description": "Control the CPU management policy on the node. See https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/ The following values are allowed. * \"none\": the default, which represents the existing scheduling behavior. * \"static\": allows pods with certain resource characteristics to be granted increased CPU affinity and exclusivity on the node. The default value is 'none' if unspecified.",
"type": "string"
},
"podPidsLimit": {
"description": "Set the Pod PID limits. See https://kubernetes.io/docs/concepts/policy/pid-limiting/#pod-pid-limits Controls the maximum number of processes allowed to run in a pod. The value must be greater than or equal to 1024 and less than 4194304.",
"format": "int64",
"type": "string"
}
},
"type": "object"
Expand Down
19 changes: 12 additions & 7 deletions container/v1beta1/container-gen.go

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