Autogenerated update (2019-07-26)
Update: - remotebuildexecution_v1 - remotebuildexecution_v1alpha - remotebuildexecution_v2
This commit is contained in:
parent
bdea62abc5
commit
0ae548668e
|
@ -25,7 +25,7 @@ module Google
|
||||||
# @see https://cloud.google.com/remote-build-execution/docs/
|
# @see https://cloud.google.com/remote-build-execution/docs/
|
||||||
module RemotebuildexecutionV1
|
module RemotebuildexecutionV1
|
||||||
VERSION = 'V1'
|
VERSION = 'V1'
|
||||||
REVISION = '20190618'
|
REVISION = '20190723'
|
||||||
|
|
||||||
# View and manage your data across Google Cloud Platform services
|
# View and manage your data across Google Cloud Platform services
|
||||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||||
|
|
|
@ -1842,18 +1842,26 @@ module Google
|
||||||
class GoogleDevtoolsRemotebuildexecutionAdminV1alphaListWorkerPoolsRequest
|
class GoogleDevtoolsRemotebuildexecutionAdminV1alphaListWorkerPoolsRequest
|
||||||
include Google::Apis::Core::Hashable
|
include Google::Apis::Core::Hashable
|
||||||
|
|
||||||
# Optional. A filter to constrain the pools returned. Filters have the form:
|
# Optional. A filter expression that filters resources listed in
|
||||||
# <field> <operator> <value> [[AND|OR] <field> <operator> <value>]...
|
# the response. The expression must specify the field name, a comparison
|
||||||
# <field> is the path for a field or map key in the Pool proto message.
|
# operator, and the value that you want to use for filtering. The value
|
||||||
# e.g. "configuration.disk_size_gb" or "configuration.labels.key".
|
# must be a string, a number, or a boolean. String values are
|
||||||
# <operator> can be one of "<", "<=", ">=", ">", "=", "!=", ":".
|
# case-insensitive.
|
||||||
# ":" is a HAS operation for strings and repeated primitive fields.
|
# The comparison operator must be either `:`, `=`, `!=`, `>`, `>=`, `<=` or
|
||||||
# <value> is the value to test, case-insensitive for strings. "*" stands for
|
# `<`.
|
||||||
# any value and can be used to test for key presence.
|
# The `:` operator can be used with string fields to match substrings.
|
||||||
# Parenthesis determine AND/OR precedence. In space separated restrictions,
|
# For non-string fields it is equivalent to the `=` operator.
|
||||||
# AND is implicit, e.g. "a = b x = y" is equivalent to "a = b AND x = y".
|
# The `:*` comparison can be used to test whether a key has been defined.
|
||||||
# Example filter:
|
# You can also filter on nested fields.
|
||||||
# configuration.labels.key1 = * AND (state = RUNNING OR state = UPDATING)
|
# To filter on multiple expressions, you can separate expression using
|
||||||
|
# `AND` and `OR` operators, using parentheses to specify precedence. If
|
||||||
|
# neither operator is specified, `AND` is assumed.
|
||||||
|
# Examples:
|
||||||
|
# Include only pools with more than 100 reserved workers:
|
||||||
|
# `(worker_count > 100) (worker_config.reserved = true)`
|
||||||
|
# Include only pools with a certain label or machines of the n1-standard
|
||||||
|
# family:
|
||||||
|
# `worker_config.labels.key1 : * OR worker_config.machine_type: n1-standard`
|
||||||
# Corresponds to the JSON property `filter`
|
# Corresponds to the JSON property `filter`
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :filter
|
attr_accessor :filter
|
||||||
|
@ -1948,8 +1956,8 @@ module Google
|
||||||
# Labels associated with the workers.
|
# Labels associated with the workers.
|
||||||
# Label keys and values can be no longer than 63 characters, can only contain
|
# Label keys and values can be no longer than 63 characters, can only contain
|
||||||
# lowercase letters, numeric characters, underscores and dashes.
|
# lowercase letters, numeric characters, underscores and dashes.
|
||||||
# International letters are permitted. Keys must start with a letter but
|
# International letters are permitted. Label keys must start with a letter.
|
||||||
# values are optional.
|
# Label values are optional.
|
||||||
# There can not be more than 64 labels per resource.
|
# There can not be more than 64 labels per resource.
|
||||||
# Corresponds to the JSON property `labels`
|
# Corresponds to the JSON property `labels`
|
||||||
# @return [Hash<String,String>]
|
# @return [Hash<String,String>]
|
||||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
||||||
# @see https://cloud.google.com/remote-build-execution/docs/
|
# @see https://cloud.google.com/remote-build-execution/docs/
|
||||||
module RemotebuildexecutionV1alpha
|
module RemotebuildexecutionV1alpha
|
||||||
VERSION = 'V1alpha'
|
VERSION = 'V1alpha'
|
||||||
REVISION = '20190618'
|
REVISION = '20190723'
|
||||||
|
|
||||||
# View and manage your data across Google Cloud Platform services
|
# View and manage your data across Google Cloud Platform services
|
||||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||||
|
|
|
@ -1823,18 +1823,26 @@ module Google
|
||||||
class GoogleDevtoolsRemotebuildexecutionAdminV1alphaListWorkerPoolsRequest
|
class GoogleDevtoolsRemotebuildexecutionAdminV1alphaListWorkerPoolsRequest
|
||||||
include Google::Apis::Core::Hashable
|
include Google::Apis::Core::Hashable
|
||||||
|
|
||||||
# Optional. A filter to constrain the pools returned. Filters have the form:
|
# Optional. A filter expression that filters resources listed in
|
||||||
# <field> <operator> <value> [[AND|OR] <field> <operator> <value>]...
|
# the response. The expression must specify the field name, a comparison
|
||||||
# <field> is the path for a field or map key in the Pool proto message.
|
# operator, and the value that you want to use for filtering. The value
|
||||||
# e.g. "configuration.disk_size_gb" or "configuration.labels.key".
|
# must be a string, a number, or a boolean. String values are
|
||||||
# <operator> can be one of "<", "<=", ">=", ">", "=", "!=", ":".
|
# case-insensitive.
|
||||||
# ":" is a HAS operation for strings and repeated primitive fields.
|
# The comparison operator must be either `:`, `=`, `!=`, `>`, `>=`, `<=` or
|
||||||
# <value> is the value to test, case-insensitive for strings. "*" stands for
|
# `<`.
|
||||||
# any value and can be used to test for key presence.
|
# The `:` operator can be used with string fields to match substrings.
|
||||||
# Parenthesis determine AND/OR precedence. In space separated restrictions,
|
# For non-string fields it is equivalent to the `=` operator.
|
||||||
# AND is implicit, e.g. "a = b x = y" is equivalent to "a = b AND x = y".
|
# The `:*` comparison can be used to test whether a key has been defined.
|
||||||
# Example filter:
|
# You can also filter on nested fields.
|
||||||
# configuration.labels.key1 = * AND (state = RUNNING OR state = UPDATING)
|
# To filter on multiple expressions, you can separate expression using
|
||||||
|
# `AND` and `OR` operators, using parentheses to specify precedence. If
|
||||||
|
# neither operator is specified, `AND` is assumed.
|
||||||
|
# Examples:
|
||||||
|
# Include only pools with more than 100 reserved workers:
|
||||||
|
# `(worker_count > 100) (worker_config.reserved = true)`
|
||||||
|
# Include only pools with a certain label or machines of the n1-standard
|
||||||
|
# family:
|
||||||
|
# `worker_config.labels.key1 : * OR worker_config.machine_type: n1-standard`
|
||||||
# Corresponds to the JSON property `filter`
|
# Corresponds to the JSON property `filter`
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :filter
|
attr_accessor :filter
|
||||||
|
@ -1929,8 +1937,8 @@ module Google
|
||||||
# Labels associated with the workers.
|
# Labels associated with the workers.
|
||||||
# Label keys and values can be no longer than 63 characters, can only contain
|
# Label keys and values can be no longer than 63 characters, can only contain
|
||||||
# lowercase letters, numeric characters, underscores and dashes.
|
# lowercase letters, numeric characters, underscores and dashes.
|
||||||
# International letters are permitted. Keys must start with a letter but
|
# International letters are permitted. Label keys must start with a letter.
|
||||||
# values are optional.
|
# Label values are optional.
|
||||||
# There can not be more than 64 labels per resource.
|
# There can not be more than 64 labels per resource.
|
||||||
# Corresponds to the JSON property `labels`
|
# Corresponds to the JSON property `labels`
|
||||||
# @return [Hash<String,String>]
|
# @return [Hash<String,String>]
|
||||||
|
|
|
@ -291,18 +291,26 @@ module Google
|
||||||
# Resource name of the instance.
|
# Resource name of the instance.
|
||||||
# Format: `projects/[PROJECT_ID]/instances/[INSTANCE_ID]`.
|
# Format: `projects/[PROJECT_ID]/instances/[INSTANCE_ID]`.
|
||||||
# @param [String] filter
|
# @param [String] filter
|
||||||
# Optional. A filter to constrain the pools returned. Filters have the form:
|
# Optional. A filter expression that filters resources listed in
|
||||||
# <field> <operator> <value> [[AND|OR] <field> <operator> <value>]...
|
# the response. The expression must specify the field name, a comparison
|
||||||
# <field> is the path for a field or map key in the Pool proto message.
|
# operator, and the value that you want to use for filtering. The value
|
||||||
# e.g. "configuration.disk_size_gb" or "configuration.labels.key".
|
# must be a string, a number, or a boolean. String values are
|
||||||
# <operator> can be one of "<", "<=", ">=", ">", "=", "!=", ":".
|
# case-insensitive.
|
||||||
# ":" is a HAS operation for strings and repeated primitive fields.
|
# The comparison operator must be either `:`, `=`, `!=`, `>`, `>=`, `<=` or
|
||||||
# <value> is the value to test, case-insensitive for strings. "*" stands for
|
# `<`.
|
||||||
# any value and can be used to test for key presence.
|
# The `:` operator can be used with string fields to match substrings.
|
||||||
# Parenthesis determine AND/OR precedence. In space separated restrictions,
|
# For non-string fields it is equivalent to the `=` operator.
|
||||||
# AND is implicit, e.g. "a = b x = y" is equivalent to "a = b AND x = y".
|
# The `:*` comparison can be used to test whether a key has been defined.
|
||||||
# Example filter:
|
# You can also filter on nested fields.
|
||||||
# configuration.labels.key1 = * AND (state = RUNNING OR state = UPDATING)
|
# To filter on multiple expressions, you can separate expression using
|
||||||
|
# `AND` and `OR` operators, using parentheses to specify precedence. If
|
||||||
|
# neither operator is specified, `AND` is assumed.
|
||||||
|
# Examples:
|
||||||
|
# Include only pools with more than 100 reserved workers:
|
||||||
|
# `(worker_count > 100) (worker_config.reserved = true)`
|
||||||
|
# Include only pools with a certain label or machines of the n1-standard
|
||||||
|
# family:
|
||||||
|
# `worker_config.labels.key1 : * OR worker_config.machine_type: n1-standard`
|
||||||
# @param [String] fields
|
# @param [String] fields
|
||||||
# Selector specifying which fields to include in a partial response.
|
# Selector specifying which fields to include in a partial response.
|
||||||
# @param [String] quota_user
|
# @param [String] quota_user
|
||||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
||||||
# @see https://cloud.google.com/remote-build-execution/docs/
|
# @see https://cloud.google.com/remote-build-execution/docs/
|
||||||
module RemotebuildexecutionV2
|
module RemotebuildexecutionV2
|
||||||
VERSION = 'V2'
|
VERSION = 'V2'
|
||||||
REVISION = '20190618'
|
REVISION = '20190723'
|
||||||
|
|
||||||
# View and manage your data across Google Cloud Platform services
|
# View and manage your data across Google Cloud Platform services
|
||||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||||
|
|
|
@ -2520,18 +2520,26 @@ module Google
|
||||||
class GoogleDevtoolsRemotebuildexecutionAdminV1alphaListWorkerPoolsRequest
|
class GoogleDevtoolsRemotebuildexecutionAdminV1alphaListWorkerPoolsRequest
|
||||||
include Google::Apis::Core::Hashable
|
include Google::Apis::Core::Hashable
|
||||||
|
|
||||||
# Optional. A filter to constrain the pools returned. Filters have the form:
|
# Optional. A filter expression that filters resources listed in
|
||||||
# <field> <operator> <value> [[AND|OR] <field> <operator> <value>]...
|
# the response. The expression must specify the field name, a comparison
|
||||||
# <field> is the path for a field or map key in the Pool proto message.
|
# operator, and the value that you want to use for filtering. The value
|
||||||
# e.g. "configuration.disk_size_gb" or "configuration.labels.key".
|
# must be a string, a number, or a boolean. String values are
|
||||||
# <operator> can be one of "<", "<=", ">=", ">", "=", "!=", ":".
|
# case-insensitive.
|
||||||
# ":" is a HAS operation for strings and repeated primitive fields.
|
# The comparison operator must be either `:`, `=`, `!=`, `>`, `>=`, `<=` or
|
||||||
# <value> is the value to test, case-insensitive for strings. "*" stands for
|
# `<`.
|
||||||
# any value and can be used to test for key presence.
|
# The `:` operator can be used with string fields to match substrings.
|
||||||
# Parenthesis determine AND/OR precedence. In space separated restrictions,
|
# For non-string fields it is equivalent to the `=` operator.
|
||||||
# AND is implicit, e.g. "a = b x = y" is equivalent to "a = b AND x = y".
|
# The `:*` comparison can be used to test whether a key has been defined.
|
||||||
# Example filter:
|
# You can also filter on nested fields.
|
||||||
# configuration.labels.key1 = * AND (state = RUNNING OR state = UPDATING)
|
# To filter on multiple expressions, you can separate expression using
|
||||||
|
# `AND` and `OR` operators, using parentheses to specify precedence. If
|
||||||
|
# neither operator is specified, `AND` is assumed.
|
||||||
|
# Examples:
|
||||||
|
# Include only pools with more than 100 reserved workers:
|
||||||
|
# `(worker_count > 100) (worker_config.reserved = true)`
|
||||||
|
# Include only pools with a certain label or machines of the n1-standard
|
||||||
|
# family:
|
||||||
|
# `worker_config.labels.key1 : * OR worker_config.machine_type: n1-standard`
|
||||||
# Corresponds to the JSON property `filter`
|
# Corresponds to the JSON property `filter`
|
||||||
# @return [String]
|
# @return [String]
|
||||||
attr_accessor :filter
|
attr_accessor :filter
|
||||||
|
@ -2626,8 +2634,8 @@ module Google
|
||||||
# Labels associated with the workers.
|
# Labels associated with the workers.
|
||||||
# Label keys and values can be no longer than 63 characters, can only contain
|
# Label keys and values can be no longer than 63 characters, can only contain
|
||||||
# lowercase letters, numeric characters, underscores and dashes.
|
# lowercase letters, numeric characters, underscores and dashes.
|
||||||
# International letters are permitted. Keys must start with a letter but
|
# International letters are permitted. Label keys must start with a letter.
|
||||||
# values are optional.
|
# Label values are optional.
|
||||||
# There can not be more than 64 labels per resource.
|
# There can not be more than 64 labels per resource.
|
||||||
# Corresponds to the JSON property `labels`
|
# Corresponds to the JSON property `labels`
|
||||||
# @return [Hash<String,String>]
|
# @return [Hash<String,String>]
|
||||||
|
|
Loading…
Reference in New Issue