google-apis-deploymentmanager_v2beta 0.25.0 → 0.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a277023da4a59320c834351c62426378dd5c189f266c0fda24591b4fc1d0b97c
4
- data.tar.gz: e08d0d7d8c2c2a36b88f89d8a8c137a65fdba56a8ca259b80b3d51d0c54a136d
3
+ metadata.gz: ae68d32c36cb25c1ba4a734e8ddb74226552a78430171114fb5f7867c37cf4e9
4
+ data.tar.gz: 78ea81797f806232c191db2870bf44acbda6f8dc459e6f26209c070799434371
5
5
  SHA512:
6
- metadata.gz: df649e26b6cdd2d3fd9b51b593519680c2d9e4de2ca9dd899fb627e321ca393b6fced142583aa5adeda7e5e52ca4b49e4eeef34ff131555322982415af0f3a59
7
- data.tar.gz: 6da0fdb858e1e3bf7c476eeac7b862b6c1966094c15f32632fcdf98e4766071c70ac8570a1d262265e658e92897b93af13d3f9c59b0ac163b070d826ac6d6a82
6
+ metadata.gz: 9d7b958296e6cd1a17f14e0c213895b545911be78135a7f92c59abbf5110be3209fa07ba4e936d066231a81b2e53953464127ee956e55bc18e66f45ccb50ac7d
7
+ data.tar.gz: 6142b1051e830a4d410da91ca00b1fc97805b37afb99362161d3e87e8d6a6022a3c83dafa15ab3c17007b712b0c950f5960a31951a97e9e1124f1df58b92f3a0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-deploymentmanager_v2beta
2
2
 
3
+ ### v0.26.0 (2023-10-01)
4
+
5
+ * Regenerated from discovery document revision 20230921
6
+
3
7
  ### v0.25.0 (2023-08-27)
4
8
 
5
9
  * Regenerated from discovery document revision 20230821
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DeploymentmanagerV2beta
18
18
  # Version of the google-apis-deploymentmanager_v2beta gem
19
- GEM_VERSION = "0.25.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230821"
25
+ REVISION = "20230921"
26
26
  end
27
27
  end
28
28
  end
@@ -157,33 +157,34 @@ module Google
157
157
  # A filter expression that filters resources listed in the response. Most
158
158
  # Compute resources support two types of filter expressions: expressions that
159
159
  # support regular expressions and expressions that follow API improvement
160
- # proposal AIP-160. If you want to use AIP-160, your expression must specify the
161
- # field name, an operator, and the value that you want to use for filtering. The
162
- # value must be a string, a number, or a boolean. The operator must be either `=`
163
- # , `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
160
+ # proposal AIP-160. These two types of filter expressions cannot be mixed in one
161
+ # request. If you want to use AIP-160, your expression must specify the field
162
+ # name, an operator, and the value that you want to use for filtering. The value
163
+ # must be a string, a number, or a boolean. The operator must be either `=`, `!=`
164
+ # , `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
164
165
  # Engine instances, you can exclude instances named `example-instance` by
165
- # specifying `name != example-instance`. The `:` operator can be used with
166
- # string fields to match substrings. For non-string fields it is equivalent to
167
- # the `=` operator. The `:*` comparison can be used to test whether a key has
168
- # been defined. For example, to find all objects with `owner` label use: ```
169
- # labels.owner:* ``` You can also filter nested fields. For example, you could
170
- # specify `scheduling.automaticRestart = false` to include instances only if
171
- # they are not scheduled for automatic restarts. You can use filtering on nested
172
- # fields to filter based on resource labels. To filter on multiple expressions,
173
- # provide each separate expression within parentheses. For example: ``` (
174
- # scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By
175
- # default, each expression is an `AND` expression. However, you can include `AND`
176
- # and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel
177
- # Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.
178
- # automaticRestart = true) ``` If you want to use a regular expression, use the `
179
- # eq` (equal) or `ne` (not equal) operator against a single un-parenthesized
180
- # expression with or without quotes or against multiple parenthesized
181
- # expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single
182
- # quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq
183
- # literal) (fieldname2 ne "literal")` The literal value is interpreted as a
184
- # regular expression using Google RE2 library syntax. The literal value must
185
- # match the entire field. For example, to filter for instances that do not end
186
- # with name "instance", you would use `name ne .*instance`.
166
+ # specifying `name != example-instance`. The `:*` comparison can be used to test
167
+ # whether a key has been defined. For example, to find all objects with `owner`
168
+ # label use: ``` labels.owner:* ``` You can also filter nested fields. For
169
+ # example, you could specify `scheduling.automaticRestart = false` to include
170
+ # instances only if they are not scheduled for automatic restarts. You can use
171
+ # filtering on nested fields to filter based on resource labels. To filter on
172
+ # multiple expressions, provide each separate expression within parentheses. For
173
+ # example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel
174
+ # Skylake") ``` By default, each expression is an `AND` expression. However, you
175
+ # can include `AND` and `OR` expressions explicitly. For example: ``` (
176
+ # cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND (
177
+ # scheduling.automaticRestart = true) ``` If you want to use a regular
178
+ # expression, use the `eq` (equal) or `ne` (not equal) operator against a single
179
+ # un-parenthesized expression with or without quotes or against multiple
180
+ # parenthesized expressions. Examples: `fieldname eq unquoted literal` `
181
+ # fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(
182
+ # fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is
183
+ # interpreted as a regular expression using Google RE2 library syntax. The
184
+ # literal value must match the entire field. For example, to filter for
185
+ # instances that do not end with name "instance", you would use `name ne .*
186
+ # instance`. You cannot combine constraints on multiple fields using regular
187
+ # expressions.
187
188
  # @param [Fixnum] max_results
188
189
  # The maximum number of results per page that should be returned. If the number
189
190
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -498,33 +499,34 @@ module Google
498
499
  # A filter expression that filters resources listed in the response. Most
499
500
  # Compute resources support two types of filter expressions: expressions that
500
501
  # support regular expressions and expressions that follow API improvement
501
- # proposal AIP-160. If you want to use AIP-160, your expression must specify the
502
- # field name, an operator, and the value that you want to use for filtering. The
503
- # value must be a string, a number, or a boolean. The operator must be either `=`
504
- # , `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
502
+ # proposal AIP-160. These two types of filter expressions cannot be mixed in one
503
+ # request. If you want to use AIP-160, your expression must specify the field
504
+ # name, an operator, and the value that you want to use for filtering. The value
505
+ # must be a string, a number, or a boolean. The operator must be either `=`, `!=`
506
+ # , `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
505
507
  # Engine instances, you can exclude instances named `example-instance` by
506
- # specifying `name != example-instance`. The `:` operator can be used with
507
- # string fields to match substrings. For non-string fields it is equivalent to
508
- # the `=` operator. The `:*` comparison can be used to test whether a key has
509
- # been defined. For example, to find all objects with `owner` label use: ```
510
- # labels.owner:* ``` You can also filter nested fields. For example, you could
511
- # specify `scheduling.automaticRestart = false` to include instances only if
512
- # they are not scheduled for automatic restarts. You can use filtering on nested
513
- # fields to filter based on resource labels. To filter on multiple expressions,
514
- # provide each separate expression within parentheses. For example: ``` (
515
- # scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By
516
- # default, each expression is an `AND` expression. However, you can include `AND`
517
- # and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel
518
- # Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.
519
- # automaticRestart = true) ``` If you want to use a regular expression, use the `
520
- # eq` (equal) or `ne` (not equal) operator against a single un-parenthesized
521
- # expression with or without quotes or against multiple parenthesized
522
- # expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single
523
- # quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq
524
- # literal) (fieldname2 ne "literal")` The literal value is interpreted as a
525
- # regular expression using Google RE2 library syntax. The literal value must
526
- # match the entire field. For example, to filter for instances that do not end
527
- # with name "instance", you would use `name ne .*instance`.
508
+ # specifying `name != example-instance`. The `:*` comparison can be used to test
509
+ # whether a key has been defined. For example, to find all objects with `owner`
510
+ # label use: ``` labels.owner:* ``` You can also filter nested fields. For
511
+ # example, you could specify `scheduling.automaticRestart = false` to include
512
+ # instances only if they are not scheduled for automatic restarts. You can use
513
+ # filtering on nested fields to filter based on resource labels. To filter on
514
+ # multiple expressions, provide each separate expression within parentheses. For
515
+ # example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel
516
+ # Skylake") ``` By default, each expression is an `AND` expression. However, you
517
+ # can include `AND` and `OR` expressions explicitly. For example: ``` (
518
+ # cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND (
519
+ # scheduling.automaticRestart = true) ``` If you want to use a regular
520
+ # expression, use the `eq` (equal) or `ne` (not equal) operator against a single
521
+ # un-parenthesized expression with or without quotes or against multiple
522
+ # parenthesized expressions. Examples: `fieldname eq unquoted literal` `
523
+ # fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(
524
+ # fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is
525
+ # interpreted as a regular expression using Google RE2 library syntax. The
526
+ # literal value must match the entire field. For example, to filter for
527
+ # instances that do not end with name "instance", you would use `name ne .*
528
+ # instance`. You cannot combine constraints on multiple fields using regular
529
+ # expressions.
528
530
  # @param [Fixnum] max_results
529
531
  # The maximum number of results per page that should be returned. If the number
530
532
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -837,33 +839,34 @@ module Google
837
839
  # A filter expression that filters resources listed in the response. Most
838
840
  # Compute resources support two types of filter expressions: expressions that
839
841
  # support regular expressions and expressions that follow API improvement
840
- # proposal AIP-160. If you want to use AIP-160, your expression must specify the
841
- # field name, an operator, and the value that you want to use for filtering. The
842
- # value must be a string, a number, or a boolean. The operator must be either `=`
843
- # , `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
842
+ # proposal AIP-160. These two types of filter expressions cannot be mixed in one
843
+ # request. If you want to use AIP-160, your expression must specify the field
844
+ # name, an operator, and the value that you want to use for filtering. The value
845
+ # must be a string, a number, or a boolean. The operator must be either `=`, `!=`
846
+ # , `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
844
847
  # Engine instances, you can exclude instances named `example-instance` by
845
- # specifying `name != example-instance`. The `:` operator can be used with
846
- # string fields to match substrings. For non-string fields it is equivalent to
847
- # the `=` operator. The `:*` comparison can be used to test whether a key has
848
- # been defined. For example, to find all objects with `owner` label use: ```
849
- # labels.owner:* ``` You can also filter nested fields. For example, you could
850
- # specify `scheduling.automaticRestart = false` to include instances only if
851
- # they are not scheduled for automatic restarts. You can use filtering on nested
852
- # fields to filter based on resource labels. To filter on multiple expressions,
853
- # provide each separate expression within parentheses. For example: ``` (
854
- # scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By
855
- # default, each expression is an `AND` expression. However, you can include `AND`
856
- # and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel
857
- # Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.
858
- # automaticRestart = true) ``` If you want to use a regular expression, use the `
859
- # eq` (equal) or `ne` (not equal) operator against a single un-parenthesized
860
- # expression with or without quotes or against multiple parenthesized
861
- # expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single
862
- # quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq
863
- # literal) (fieldname2 ne "literal")` The literal value is interpreted as a
864
- # regular expression using Google RE2 library syntax. The literal value must
865
- # match the entire field. For example, to filter for instances that do not end
866
- # with name "instance", you would use `name ne .*instance`.
848
+ # specifying `name != example-instance`. The `:*` comparison can be used to test
849
+ # whether a key has been defined. For example, to find all objects with `owner`
850
+ # label use: ``` labels.owner:* ``` You can also filter nested fields. For
851
+ # example, you could specify `scheduling.automaticRestart = false` to include
852
+ # instances only if they are not scheduled for automatic restarts. You can use
853
+ # filtering on nested fields to filter based on resource labels. To filter on
854
+ # multiple expressions, provide each separate expression within parentheses. For
855
+ # example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel
856
+ # Skylake") ``` By default, each expression is an `AND` expression. However, you
857
+ # can include `AND` and `OR` expressions explicitly. For example: ``` (
858
+ # cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND (
859
+ # scheduling.automaticRestart = true) ``` If you want to use a regular
860
+ # expression, use the `eq` (equal) or `ne` (not equal) operator against a single
861
+ # un-parenthesized expression with or without quotes or against multiple
862
+ # parenthesized expressions. Examples: `fieldname eq unquoted literal` `
863
+ # fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(
864
+ # fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is
865
+ # interpreted as a regular expression using Google RE2 library syntax. The
866
+ # literal value must match the entire field. For example, to filter for
867
+ # instances that do not end with name "instance", you would use `name ne .*
868
+ # instance`. You cannot combine constraints on multiple fields using regular
869
+ # expressions.
867
870
  # @param [Fixnum] max_results
868
871
  # The maximum number of results per page that should be returned. If the number
869
872
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -952,33 +955,34 @@ module Google
952
955
  # A filter expression that filters resources listed in the response. Most
953
956
  # Compute resources support two types of filter expressions: expressions that
954
957
  # support regular expressions and expressions that follow API improvement
955
- # proposal AIP-160. If you want to use AIP-160, your expression must specify the
956
- # field name, an operator, and the value that you want to use for filtering. The
957
- # value must be a string, a number, or a boolean. The operator must be either `=`
958
- # , `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
958
+ # proposal AIP-160. These two types of filter expressions cannot be mixed in one
959
+ # request. If you want to use AIP-160, your expression must specify the field
960
+ # name, an operator, and the value that you want to use for filtering. The value
961
+ # must be a string, a number, or a boolean. The operator must be either `=`, `!=`
962
+ # , `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
959
963
  # Engine instances, you can exclude instances named `example-instance` by
960
- # specifying `name != example-instance`. The `:` operator can be used with
961
- # string fields to match substrings. For non-string fields it is equivalent to
962
- # the `=` operator. The `:*` comparison can be used to test whether a key has
963
- # been defined. For example, to find all objects with `owner` label use: ```
964
- # labels.owner:* ``` You can also filter nested fields. For example, you could
965
- # specify `scheduling.automaticRestart = false` to include instances only if
966
- # they are not scheduled for automatic restarts. You can use filtering on nested
967
- # fields to filter based on resource labels. To filter on multiple expressions,
968
- # provide each separate expression within parentheses. For example: ``` (
969
- # scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By
970
- # default, each expression is an `AND` expression. However, you can include `AND`
971
- # and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel
972
- # Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.
973
- # automaticRestart = true) ``` If you want to use a regular expression, use the `
974
- # eq` (equal) or `ne` (not equal) operator against a single un-parenthesized
975
- # expression with or without quotes or against multiple parenthesized
976
- # expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single
977
- # quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq
978
- # literal) (fieldname2 ne "literal")` The literal value is interpreted as a
979
- # regular expression using Google RE2 library syntax. The literal value must
980
- # match the entire field. For example, to filter for instances that do not end
981
- # with name "instance", you would use `name ne .*instance`.
964
+ # specifying `name != example-instance`. The `:*` comparison can be used to test
965
+ # whether a key has been defined. For example, to find all objects with `owner`
966
+ # label use: ``` labels.owner:* ``` You can also filter nested fields. For
967
+ # example, you could specify `scheduling.automaticRestart = false` to include
968
+ # instances only if they are not scheduled for automatic restarts. You can use
969
+ # filtering on nested fields to filter based on resource labels. To filter on
970
+ # multiple expressions, provide each separate expression within parentheses. For
971
+ # example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel
972
+ # Skylake") ``` By default, each expression is an `AND` expression. However, you
973
+ # can include `AND` and `OR` expressions explicitly. For example: ``` (
974
+ # cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND (
975
+ # scheduling.automaticRestart = true) ``` If you want to use a regular
976
+ # expression, use the `eq` (equal) or `ne` (not equal) operator against a single
977
+ # un-parenthesized expression with or without quotes or against multiple
978
+ # parenthesized expressions. Examples: `fieldname eq unquoted literal` `
979
+ # fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(
980
+ # fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is
981
+ # interpreted as a regular expression using Google RE2 library syntax. The
982
+ # literal value must match the entire field. For example, to filter for
983
+ # instances that do not end with name "instance", you would use `name ne .*
984
+ # instance`. You cannot combine constraints on multiple fields using regular
985
+ # expressions.
982
986
  # @param [Fixnum] max_results
983
987
  # The maximum number of results per page that should be returned. If the number
984
988
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -1071,33 +1075,34 @@ module Google
1071
1075
  # A filter expression that filters resources listed in the response. Most
1072
1076
  # Compute resources support two types of filter expressions: expressions that
1073
1077
  # support regular expressions and expressions that follow API improvement
1074
- # proposal AIP-160. If you want to use AIP-160, your expression must specify the
1075
- # field name, an operator, and the value that you want to use for filtering. The
1076
- # value must be a string, a number, or a boolean. The operator must be either `=`
1077
- # , `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
1078
+ # proposal AIP-160. These two types of filter expressions cannot be mixed in one
1079
+ # request. If you want to use AIP-160, your expression must specify the field
1080
+ # name, an operator, and the value that you want to use for filtering. The value
1081
+ # must be a string, a number, or a boolean. The operator must be either `=`, `!=`
1082
+ # , `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
1078
1083
  # Engine instances, you can exclude instances named `example-instance` by
1079
- # specifying `name != example-instance`. The `:` operator can be used with
1080
- # string fields to match substrings. For non-string fields it is equivalent to
1081
- # the `=` operator. The `:*` comparison can be used to test whether a key has
1082
- # been defined. For example, to find all objects with `owner` label use: ```
1083
- # labels.owner:* ``` You can also filter nested fields. For example, you could
1084
- # specify `scheduling.automaticRestart = false` to include instances only if
1085
- # they are not scheduled for automatic restarts. You can use filtering on nested
1086
- # fields to filter based on resource labels. To filter on multiple expressions,
1087
- # provide each separate expression within parentheses. For example: ``` (
1088
- # scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By
1089
- # default, each expression is an `AND` expression. However, you can include `AND`
1090
- # and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel
1091
- # Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.
1092
- # automaticRestart = true) ``` If you want to use a regular expression, use the `
1093
- # eq` (equal) or `ne` (not equal) operator against a single un-parenthesized
1094
- # expression with or without quotes or against multiple parenthesized
1095
- # expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single
1096
- # quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq
1097
- # literal) (fieldname2 ne "literal")` The literal value is interpreted as a
1098
- # regular expression using Google RE2 library syntax. The literal value must
1099
- # match the entire field. For example, to filter for instances that do not end
1100
- # with name "instance", you would use `name ne .*instance`.
1084
+ # specifying `name != example-instance`. The `:*` comparison can be used to test
1085
+ # whether a key has been defined. For example, to find all objects with `owner`
1086
+ # label use: ``` labels.owner:* ``` You can also filter nested fields. For
1087
+ # example, you could specify `scheduling.automaticRestart = false` to include
1088
+ # instances only if they are not scheduled for automatic restarts. You can use
1089
+ # filtering on nested fields to filter based on resource labels. To filter on
1090
+ # multiple expressions, provide each separate expression within parentheses. For
1091
+ # example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel
1092
+ # Skylake") ``` By default, each expression is an `AND` expression. However, you
1093
+ # can include `AND` and `OR` expressions explicitly. For example: ``` (
1094
+ # cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND (
1095
+ # scheduling.automaticRestart = true) ``` If you want to use a regular
1096
+ # expression, use the `eq` (equal) or `ne` (not equal) operator against a single
1097
+ # un-parenthesized expression with or without quotes or against multiple
1098
+ # parenthesized expressions. Examples: `fieldname eq unquoted literal` `
1099
+ # fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(
1100
+ # fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is
1101
+ # interpreted as a regular expression using Google RE2 library syntax. The
1102
+ # literal value must match the entire field. For example, to filter for
1103
+ # instances that do not end with name "instance", you would use `name ne .*
1104
+ # instance`. You cannot combine constraints on multiple fields using regular
1105
+ # expressions.
1101
1106
  # @param [Fixnum] max_results
1102
1107
  # The maximum number of results per page that should be returned. If the number
1103
1108
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -1288,33 +1293,34 @@ module Google
1288
1293
  # A filter expression that filters resources listed in the response. Most
1289
1294
  # Compute resources support two types of filter expressions: expressions that
1290
1295
  # support regular expressions and expressions that follow API improvement
1291
- # proposal AIP-160. If you want to use AIP-160, your expression must specify the
1292
- # field name, an operator, and the value that you want to use for filtering. The
1293
- # value must be a string, a number, or a boolean. The operator must be either `=`
1294
- # , `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
1296
+ # proposal AIP-160. These two types of filter expressions cannot be mixed in one
1297
+ # request. If you want to use AIP-160, your expression must specify the field
1298
+ # name, an operator, and the value that you want to use for filtering. The value
1299
+ # must be a string, a number, or a boolean. The operator must be either `=`, `!=`
1300
+ # , `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
1295
1301
  # Engine instances, you can exclude instances named `example-instance` by
1296
- # specifying `name != example-instance`. The `:` operator can be used with
1297
- # string fields to match substrings. For non-string fields it is equivalent to
1298
- # the `=` operator. The `:*` comparison can be used to test whether a key has
1299
- # been defined. For example, to find all objects with `owner` label use: ```
1300
- # labels.owner:* ``` You can also filter nested fields. For example, you could
1301
- # specify `scheduling.automaticRestart = false` to include instances only if
1302
- # they are not scheduled for automatic restarts. You can use filtering on nested
1303
- # fields to filter based on resource labels. To filter on multiple expressions,
1304
- # provide each separate expression within parentheses. For example: ``` (
1305
- # scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By
1306
- # default, each expression is an `AND` expression. However, you can include `AND`
1307
- # and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel
1308
- # Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.
1309
- # automaticRestart = true) ``` If you want to use a regular expression, use the `
1310
- # eq` (equal) or `ne` (not equal) operator against a single un-parenthesized
1311
- # expression with or without quotes or against multiple parenthesized
1312
- # expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single
1313
- # quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq
1314
- # literal) (fieldname2 ne "literal")` The literal value is interpreted as a
1315
- # regular expression using Google RE2 library syntax. The literal value must
1316
- # match the entire field. For example, to filter for instances that do not end
1317
- # with name "instance", you would use `name ne .*instance`.
1302
+ # specifying `name != example-instance`. The `:*` comparison can be used to test
1303
+ # whether a key has been defined. For example, to find all objects with `owner`
1304
+ # label use: ``` labels.owner:* ``` You can also filter nested fields. For
1305
+ # example, you could specify `scheduling.automaticRestart = false` to include
1306
+ # instances only if they are not scheduled for automatic restarts. You can use
1307
+ # filtering on nested fields to filter based on resource labels. To filter on
1308
+ # multiple expressions, provide each separate expression within parentheses. For
1309
+ # example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel
1310
+ # Skylake") ``` By default, each expression is an `AND` expression. However, you
1311
+ # can include `AND` and `OR` expressions explicitly. For example: ``` (
1312
+ # cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND (
1313
+ # scheduling.automaticRestart = true) ``` If you want to use a regular
1314
+ # expression, use the `eq` (equal) or `ne` (not equal) operator against a single
1315
+ # un-parenthesized expression with or without quotes or against multiple
1316
+ # parenthesized expressions. Examples: `fieldname eq unquoted literal` `
1317
+ # fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(
1318
+ # fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is
1319
+ # interpreted as a regular expression using Google RE2 library syntax. The
1320
+ # literal value must match the entire field. For example, to filter for
1321
+ # instances that do not end with name "instance", you would use `name ne .*
1322
+ # instance`. You cannot combine constraints on multiple fields using regular
1323
+ # expressions.
1318
1324
  # @param [Fixnum] max_results
1319
1325
  # The maximum number of results per page that should be returned. If the number
1320
1326
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -1371,33 +1377,34 @@ module Google
1371
1377
  # A filter expression that filters resources listed in the response. Most
1372
1378
  # Compute resources support two types of filter expressions: expressions that
1373
1379
  # support regular expressions and expressions that follow API improvement
1374
- # proposal AIP-160. If you want to use AIP-160, your expression must specify the
1375
- # field name, an operator, and the value that you want to use for filtering. The
1376
- # value must be a string, a number, or a boolean. The operator must be either `=`
1377
- # , `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
1380
+ # proposal AIP-160. These two types of filter expressions cannot be mixed in one
1381
+ # request. If you want to use AIP-160, your expression must specify the field
1382
+ # name, an operator, and the value that you want to use for filtering. The value
1383
+ # must be a string, a number, or a boolean. The operator must be either `=`, `!=`
1384
+ # , `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
1378
1385
  # Engine instances, you can exclude instances named `example-instance` by
1379
- # specifying `name != example-instance`. The `:` operator can be used with
1380
- # string fields to match substrings. For non-string fields it is equivalent to
1381
- # the `=` operator. The `:*` comparison can be used to test whether a key has
1382
- # been defined. For example, to find all objects with `owner` label use: ```
1383
- # labels.owner:* ``` You can also filter nested fields. For example, you could
1384
- # specify `scheduling.automaticRestart = false` to include instances only if
1385
- # they are not scheduled for automatic restarts. You can use filtering on nested
1386
- # fields to filter based on resource labels. To filter on multiple expressions,
1387
- # provide each separate expression within parentheses. For example: ``` (
1388
- # scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By
1389
- # default, each expression is an `AND` expression. However, you can include `AND`
1390
- # and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel
1391
- # Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.
1392
- # automaticRestart = true) ``` If you want to use a regular expression, use the `
1393
- # eq` (equal) or `ne` (not equal) operator against a single un-parenthesized
1394
- # expression with or without quotes or against multiple parenthesized
1395
- # expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single
1396
- # quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq
1397
- # literal) (fieldname2 ne "literal")` The literal value is interpreted as a
1398
- # regular expression using Google RE2 library syntax. The literal value must
1399
- # match the entire field. For example, to filter for instances that do not end
1400
- # with name "instance", you would use `name ne .*instance`.
1386
+ # specifying `name != example-instance`. The `:*` comparison can be used to test
1387
+ # whether a key has been defined. For example, to find all objects with `owner`
1388
+ # label use: ``` labels.owner:* ``` You can also filter nested fields. For
1389
+ # example, you could specify `scheduling.automaticRestart = false` to include
1390
+ # instances only if they are not scheduled for automatic restarts. You can use
1391
+ # filtering on nested fields to filter based on resource labels. To filter on
1392
+ # multiple expressions, provide each separate expression within parentheses. For
1393
+ # example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel
1394
+ # Skylake") ``` By default, each expression is an `AND` expression. However, you
1395
+ # can include `AND` and `OR` expressions explicitly. For example: ``` (
1396
+ # cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND (
1397
+ # scheduling.automaticRestart = true) ``` If you want to use a regular
1398
+ # expression, use the `eq` (equal) or `ne` (not equal) operator against a single
1399
+ # un-parenthesized expression with or without quotes or against multiple
1400
+ # parenthesized expressions. Examples: `fieldname eq unquoted literal` `
1401
+ # fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(
1402
+ # fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is
1403
+ # interpreted as a regular expression using Google RE2 library syntax. The
1404
+ # literal value must match the entire field. For example, to filter for
1405
+ # instances that do not end with name "instance", you would use `name ne .*
1406
+ # instance`. You cannot combine constraints on multiple fields using regular
1407
+ # expressions.
1401
1408
  # @param [Fixnum] max_results
1402
1409
  # The maximum number of results per page that should be returned. If the number
1403
1410
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -1525,33 +1532,34 @@ module Google
1525
1532
  # A filter expression that filters resources listed in the response. Most
1526
1533
  # Compute resources support two types of filter expressions: expressions that
1527
1534
  # support regular expressions and expressions that follow API improvement
1528
- # proposal AIP-160. If you want to use AIP-160, your expression must specify the
1529
- # field name, an operator, and the value that you want to use for filtering. The
1530
- # value must be a string, a number, or a boolean. The operator must be either `=`
1531
- # , `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
1535
+ # proposal AIP-160. These two types of filter expressions cannot be mixed in one
1536
+ # request. If you want to use AIP-160, your expression must specify the field
1537
+ # name, an operator, and the value that you want to use for filtering. The value
1538
+ # must be a string, a number, or a boolean. The operator must be either `=`, `!=`
1539
+ # , `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
1532
1540
  # Engine instances, you can exclude instances named `example-instance` by
1533
- # specifying `name != example-instance`. The `:` operator can be used with
1534
- # string fields to match substrings. For non-string fields it is equivalent to
1535
- # the `=` operator. The `:*` comparison can be used to test whether a key has
1536
- # been defined. For example, to find all objects with `owner` label use: ```
1537
- # labels.owner:* ``` You can also filter nested fields. For example, you could
1538
- # specify `scheduling.automaticRestart = false` to include instances only if
1539
- # they are not scheduled for automatic restarts. You can use filtering on nested
1540
- # fields to filter based on resource labels. To filter on multiple expressions,
1541
- # provide each separate expression within parentheses. For example: ``` (
1542
- # scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By
1543
- # default, each expression is an `AND` expression. However, you can include `AND`
1544
- # and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel
1545
- # Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.
1546
- # automaticRestart = true) ``` If you want to use a regular expression, use the `
1547
- # eq` (equal) or `ne` (not equal) operator against a single un-parenthesized
1548
- # expression with or without quotes or against multiple parenthesized
1549
- # expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single
1550
- # quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq
1551
- # literal) (fieldname2 ne "literal")` The literal value is interpreted as a
1552
- # regular expression using Google RE2 library syntax. The literal value must
1553
- # match the entire field. For example, to filter for instances that do not end
1554
- # with name "instance", you would use `name ne .*instance`.
1541
+ # specifying `name != example-instance`. The `:*` comparison can be used to test
1542
+ # whether a key has been defined. For example, to find all objects with `owner`
1543
+ # label use: ``` labels.owner:* ``` You can also filter nested fields. For
1544
+ # example, you could specify `scheduling.automaticRestart = false` to include
1545
+ # instances only if they are not scheduled for automatic restarts. You can use
1546
+ # filtering on nested fields to filter based on resource labels. To filter on
1547
+ # multiple expressions, provide each separate expression within parentheses. For
1548
+ # example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel
1549
+ # Skylake") ``` By default, each expression is an `AND` expression. However, you
1550
+ # can include `AND` and `OR` expressions explicitly. For example: ``` (
1551
+ # cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND (
1552
+ # scheduling.automaticRestart = true) ``` If you want to use a regular
1553
+ # expression, use the `eq` (equal) or `ne` (not equal) operator against a single
1554
+ # un-parenthesized expression with or without quotes or against multiple
1555
+ # parenthesized expressions. Examples: `fieldname eq unquoted literal` `
1556
+ # fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(
1557
+ # fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is
1558
+ # interpreted as a regular expression using Google RE2 library syntax. The
1559
+ # literal value must match the entire field. For example, to filter for
1560
+ # instances that do not end with name "instance", you would use `name ne .*
1561
+ # instance`. You cannot combine constraints on multiple fields using regular
1562
+ # expressions.
1555
1563
  # @param [Fixnum] max_results
1556
1564
  # The maximum number of results per page that should be returned. If the number
1557
1565
  # of available results is larger than `maxResults`, Compute Engine returns a `
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-deploymentmanager_v2beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.0
4
+ version: 0.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-27 00:00:00.000000000 Z
11
+ date: 2023-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-deploymentmanager_v2beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_v2beta/v0.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_v2beta/v0.26.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-deploymentmanager_v2beta
63
63
  post_install_message:
64
64
  rdoc_options: []