google-apis-deploymentmanager_v2beta 0.10.0 → 0.11.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: 79a0babdf5a05ddc63ed91129238202b8cbaf9bb0a14524954ab1b250f6c0cfd
4
- data.tar.gz: a14eeaa2ab0401818be9b62471237eb17fccf8b15b17e41d3a14a3a267eb2d2a
3
+ metadata.gz: 355ee2cbdf8c72ffbb2a7c07696d1665cf8c4e8b2b0e8ee3267886f7a7a560d4
4
+ data.tar.gz: 6278284f0c78e01421eb91ecb4769407dd6062760f8f392c1e70700304f6e6c6
5
5
  SHA512:
6
- metadata.gz: 34157fd1851c272ec5e424494db01ba3696475b2742cc19ba88ab64c28af71aec4e9db7c3e673a7f2155ce53bb51cf422fa0941f55e86fec1bc6b3e89e089134
7
- data.tar.gz: e1280bcf35ba9eb9e385728aff7a8c77ea90d63ffad62504a5ae5e894eb6be0c449940c9bfe27f4f08203022f1d2b69b2cffb04d47ef0d881fd67b15d50b8d3c
6
+ metadata.gz: 15e6078bbfafb4c8a97b7efd25d8a563a6d3f9b2bce016bb50a406d0341f476ae7edd35704af2918d30b5b5169f800ca062c4cfb6f390f7c9e58e281aa46cd32
7
+ data.tar.gz: f0ba514219e24201809c388f7663c52094fbf7032c1a23d970491cac82e56dc09f80e0c48845859bd5833f4355afcfe8a4ad51fe60de277ec1ee02a8931ff794
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-deploymentmanager_v2beta
2
2
 
3
+ ### v0.11.0 (2021-10-07)
4
+
5
+ * Regenerated from discovery document revision 20210930
6
+
3
7
  ### v0.10.0 (2021-08-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20210817
@@ -1464,7 +1464,12 @@ module Google
1464
1464
 
1465
1465
  # Associates a list of `members` to a `role`. Optionally, may specify a `
1466
1466
  # condition` that determines how and when the `bindings` are applied. Each of
1467
- # the `bindings` must contain at least one member.
1467
+ # the `bindings` must contain at least one member. The `bindings` in a `Policy`
1468
+ # can refer to up to 1,500 members; up to 250 of these members can be Google
1469
+ # groups. Each occurrence of a member counts towards these limits. For example,
1470
+ # if the `bindings` grant 50 different roles to `user:alice@example.com`, and
1471
+ # not to any other member, then you can add another 1,450 members to the `
1472
+ # bindings` in the `Policy`.
1468
1473
  # Corresponds to the JSON property `bindings`
1469
1474
  # @return [Array<Google::Apis::DeploymentmanagerV2beta::Binding>]
1470
1475
  attr_accessor :bindings
@@ -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.10.0"
19
+ GEM_VERSION = "0.11.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210817"
25
+ REVISION = "20210930"
26
26
  end
27
27
  end
28
28
  end
@@ -155,20 +155,24 @@ module Google
155
155
  # The project ID for this request.
156
156
  # @param [String] filter
157
157
  # A filter expression that filters resources listed in the response. The
158
- # expression must specify the field name, a comparison operator, and the value
159
- # that you want to use for filtering. The value must be a string, a number, or a
160
- # boolean. The comparison operator must be either `=`, `!=`, `>`, or `<`. For
158
+ # expression must specify the field name, an operator, and the value that you
159
+ # want to use for filtering. The value must be a string, a number, or a boolean.
160
+ # The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For
161
161
  # example, if you are filtering Compute Engine instances, you can exclude
162
162
  # instances named `example-instance` by specifying `name != example-instance`.
163
- # You can also filter nested fields. For example, you could specify `scheduling.
164
- # automaticRestart = false` to include instances only if they are not scheduled
165
- # for automatic restarts. You can use filtering on nested fields to filter based
166
- # on resource labels. To filter on multiple expressions, provide each separate
167
- # expression within parentheses. For example: ``` (scheduling.automaticRestart =
168
- # true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `
169
- # AND` expression. However, you can include `AND` and `OR` expressions
170
- # explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform =
171
- # "Intel Broadwell") AND (scheduling.automaticRestart = true) ```
163
+ # The `:` operator can be used with string fields to match substrings. For non-
164
+ # string fields it is equivalent to the `=` operator. The `:*` comparison can be
165
+ # used to test whether a key has been defined. For example, to find all objects
166
+ # with `owner` label use: ``` labels.owner:* ``` You can also filter nested
167
+ # fields. For example, you could specify `scheduling.automaticRestart = false`
168
+ # to include instances only if they are not scheduled for automatic restarts.
169
+ # You can use filtering on nested fields to filter based on resource labels. To
170
+ # filter on multiple expressions, provide each separate expression within
171
+ # parentheses. For example: ``` (scheduling.automaticRestart = true) (
172
+ # cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
173
+ # expression. However, you can include `AND` and `OR` expressions explicitly.
174
+ # For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel
175
+ # Broadwell") AND (scheduling.automaticRestart = true) ```
172
176
  # @param [Fixnum] max_results
173
177
  # The maximum number of results per page that should be returned. If the number
174
178
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -481,20 +485,24 @@ module Google
481
485
  # The project ID for this request.
482
486
  # @param [String] filter
483
487
  # A filter expression that filters resources listed in the response. The
484
- # expression must specify the field name, a comparison operator, and the value
485
- # that you want to use for filtering. The value must be a string, a number, or a
486
- # boolean. The comparison operator must be either `=`, `!=`, `>`, or `<`. For
488
+ # expression must specify the field name, an operator, and the value that you
489
+ # want to use for filtering. The value must be a string, a number, or a boolean.
490
+ # The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For
487
491
  # example, if you are filtering Compute Engine instances, you can exclude
488
492
  # instances named `example-instance` by specifying `name != example-instance`.
489
- # You can also filter nested fields. For example, you could specify `scheduling.
490
- # automaticRestart = false` to include instances only if they are not scheduled
491
- # for automatic restarts. You can use filtering on nested fields to filter based
492
- # on resource labels. To filter on multiple expressions, provide each separate
493
- # expression within parentheses. For example: ``` (scheduling.automaticRestart =
494
- # true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `
495
- # AND` expression. However, you can include `AND` and `OR` expressions
496
- # explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform =
497
- # "Intel Broadwell") AND (scheduling.automaticRestart = true) ```
493
+ # The `:` operator can be used with string fields to match substrings. For non-
494
+ # string fields it is equivalent to the `=` operator. The `:*` comparison can be
495
+ # used to test whether a key has been defined. For example, to find all objects
496
+ # with `owner` label use: ``` labels.owner:* ``` You can also filter nested
497
+ # fields. For example, you could specify `scheduling.automaticRestart = false`
498
+ # to include instances only if they are not scheduled for automatic restarts.
499
+ # You can use filtering on nested fields to filter based on resource labels. To
500
+ # filter on multiple expressions, provide each separate expression within
501
+ # parentheses. For example: ``` (scheduling.automaticRestart = true) (
502
+ # cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
503
+ # expression. However, you can include `AND` and `OR` expressions explicitly.
504
+ # For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel
505
+ # Broadwell") AND (scheduling.automaticRestart = true) ```
498
506
  # @param [Fixnum] max_results
499
507
  # The maximum number of results per page that should be returned. If the number
500
508
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -805,20 +813,24 @@ module Google
805
813
  # The name of the deployment for this request.
806
814
  # @param [String] filter
807
815
  # A filter expression that filters resources listed in the response. The
808
- # expression must specify the field name, a comparison operator, and the value
809
- # that you want to use for filtering. The value must be a string, a number, or a
810
- # boolean. The comparison operator must be either `=`, `!=`, `>`, or `<`. For
816
+ # expression must specify the field name, an operator, and the value that you
817
+ # want to use for filtering. The value must be a string, a number, or a boolean.
818
+ # The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For
811
819
  # example, if you are filtering Compute Engine instances, you can exclude
812
820
  # instances named `example-instance` by specifying `name != example-instance`.
813
- # You can also filter nested fields. For example, you could specify `scheduling.
814
- # automaticRestart = false` to include instances only if they are not scheduled
815
- # for automatic restarts. You can use filtering on nested fields to filter based
816
- # on resource labels. To filter on multiple expressions, provide each separate
817
- # expression within parentheses. For example: ``` (scheduling.automaticRestart =
818
- # true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `
819
- # AND` expression. However, you can include `AND` and `OR` expressions
820
- # explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform =
821
- # "Intel Broadwell") AND (scheduling.automaticRestart = true) ```
821
+ # The `:` operator can be used with string fields to match substrings. For non-
822
+ # string fields it is equivalent to the `=` operator. The `:*` comparison can be
823
+ # used to test whether a key has been defined. For example, to find all objects
824
+ # with `owner` label use: ``` labels.owner:* ``` You can also filter nested
825
+ # fields. For example, you could specify `scheduling.automaticRestart = false`
826
+ # to include instances only if they are not scheduled for automatic restarts.
827
+ # You can use filtering on nested fields to filter based on resource labels. To
828
+ # filter on multiple expressions, provide each separate expression within
829
+ # parentheses. For example: ``` (scheduling.automaticRestart = true) (
830
+ # cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
831
+ # expression. However, you can include `AND` and `OR` expressions explicitly.
832
+ # For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel
833
+ # Broadwell") AND (scheduling.automaticRestart = true) ```
822
834
  # @param [Fixnum] max_results
823
835
  # The maximum number of results per page that should be returned. If the number
824
836
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -905,20 +917,24 @@ module Google
905
917
  # The project ID for this request.
906
918
  # @param [String] filter
907
919
  # A filter expression that filters resources listed in the response. The
908
- # expression must specify the field name, a comparison operator, and the value
909
- # that you want to use for filtering. The value must be a string, a number, or a
910
- # boolean. The comparison operator must be either `=`, `!=`, `>`, or `<`. For
920
+ # expression must specify the field name, an operator, and the value that you
921
+ # want to use for filtering. The value must be a string, a number, or a boolean.
922
+ # The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For
911
923
  # example, if you are filtering Compute Engine instances, you can exclude
912
924
  # instances named `example-instance` by specifying `name != example-instance`.
913
- # You can also filter nested fields. For example, you could specify `scheduling.
914
- # automaticRestart = false` to include instances only if they are not scheduled
915
- # for automatic restarts. You can use filtering on nested fields to filter based
916
- # on resource labels. To filter on multiple expressions, provide each separate
917
- # expression within parentheses. For example: ``` (scheduling.automaticRestart =
918
- # true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `
919
- # AND` expression. However, you can include `AND` and `OR` expressions
920
- # explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform =
921
- # "Intel Broadwell") AND (scheduling.automaticRestart = true) ```
925
+ # The `:` operator can be used with string fields to match substrings. For non-
926
+ # string fields it is equivalent to the `=` operator. The `:*` comparison can be
927
+ # used to test whether a key has been defined. For example, to find all objects
928
+ # with `owner` label use: ``` labels.owner:* ``` You can also filter nested
929
+ # fields. For example, you could specify `scheduling.automaticRestart = false`
930
+ # to include instances only if they are not scheduled for automatic restarts.
931
+ # You can use filtering on nested fields to filter based on resource labels. To
932
+ # filter on multiple expressions, provide each separate expression within
933
+ # parentheses. For example: ``` (scheduling.automaticRestart = true) (
934
+ # cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
935
+ # expression. However, you can include `AND` and `OR` expressions explicitly.
936
+ # For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel
937
+ # Broadwell") AND (scheduling.automaticRestart = true) ```
922
938
  # @param [Fixnum] max_results
923
939
  # The maximum number of results per page that should be returned. If the number
924
940
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -1009,20 +1025,24 @@ module Google
1009
1025
  # The name of the deployment for this request.
1010
1026
  # @param [String] filter
1011
1027
  # A filter expression that filters resources listed in the response. The
1012
- # expression must specify the field name, a comparison operator, and the value
1013
- # that you want to use for filtering. The value must be a string, a number, or a
1014
- # boolean. The comparison operator must be either `=`, `!=`, `>`, or `<`. For
1028
+ # expression must specify the field name, an operator, and the value that you
1029
+ # want to use for filtering. The value must be a string, a number, or a boolean.
1030
+ # The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For
1015
1031
  # example, if you are filtering Compute Engine instances, you can exclude
1016
1032
  # instances named `example-instance` by specifying `name != example-instance`.
1017
- # You can also filter nested fields. For example, you could specify `scheduling.
1018
- # automaticRestart = false` to include instances only if they are not scheduled
1019
- # for automatic restarts. You can use filtering on nested fields to filter based
1020
- # on resource labels. To filter on multiple expressions, provide each separate
1021
- # expression within parentheses. For example: ``` (scheduling.automaticRestart =
1022
- # true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `
1023
- # AND` expression. However, you can include `AND` and `OR` expressions
1024
- # explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform =
1025
- # "Intel Broadwell") AND (scheduling.automaticRestart = true) ```
1033
+ # The `:` operator can be used with string fields to match substrings. For non-
1034
+ # string fields it is equivalent to the `=` operator. The `:*` comparison can be
1035
+ # used to test whether a key has been defined. For example, to find all objects
1036
+ # with `owner` label use: ``` labels.owner:* ``` You can also filter nested
1037
+ # fields. For example, you could specify `scheduling.automaticRestart = false`
1038
+ # to include instances only if they are not scheduled for automatic restarts.
1039
+ # You can use filtering on nested fields to filter based on resource labels. To
1040
+ # filter on multiple expressions, provide each separate expression within
1041
+ # parentheses. For example: ``` (scheduling.automaticRestart = true) (
1042
+ # cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
1043
+ # expression. However, you can include `AND` and `OR` expressions explicitly.
1044
+ # For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel
1045
+ # Broadwell") AND (scheduling.automaticRestart = true) ```
1026
1046
  # @param [Fixnum] max_results
1027
1047
  # The maximum number of results per page that should be returned. If the number
1028
1048
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -1211,20 +1231,24 @@ module Google
1211
1231
  # The project ID for this request.
1212
1232
  # @param [String] filter
1213
1233
  # A filter expression that filters resources listed in the response. The
1214
- # expression must specify the field name, a comparison operator, and the value
1215
- # that you want to use for filtering. The value must be a string, a number, or a
1216
- # boolean. The comparison operator must be either `=`, `!=`, `>`, or `<`. For
1234
+ # expression must specify the field name, an operator, and the value that you
1235
+ # want to use for filtering. The value must be a string, a number, or a boolean.
1236
+ # The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For
1217
1237
  # example, if you are filtering Compute Engine instances, you can exclude
1218
1238
  # instances named `example-instance` by specifying `name != example-instance`.
1219
- # You can also filter nested fields. For example, you could specify `scheduling.
1220
- # automaticRestart = false` to include instances only if they are not scheduled
1221
- # for automatic restarts. You can use filtering on nested fields to filter based
1222
- # on resource labels. To filter on multiple expressions, provide each separate
1223
- # expression within parentheses. For example: ``` (scheduling.automaticRestart =
1224
- # true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `
1225
- # AND` expression. However, you can include `AND` and `OR` expressions
1226
- # explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform =
1227
- # "Intel Broadwell") AND (scheduling.automaticRestart = true) ```
1239
+ # The `:` operator can be used with string fields to match substrings. For non-
1240
+ # string fields it is equivalent to the `=` operator. The `:*` comparison can be
1241
+ # used to test whether a key has been defined. For example, to find all objects
1242
+ # with `owner` label use: ``` labels.owner:* ``` You can also filter nested
1243
+ # fields. For example, you could specify `scheduling.automaticRestart = false`
1244
+ # to include instances only if they are not scheduled for automatic restarts.
1245
+ # You can use filtering on nested fields to filter based on resource labels. To
1246
+ # filter on multiple expressions, provide each separate expression within
1247
+ # parentheses. For example: ``` (scheduling.automaticRestart = true) (
1248
+ # cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
1249
+ # expression. However, you can include `AND` and `OR` expressions explicitly.
1250
+ # For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel
1251
+ # Broadwell") AND (scheduling.automaticRestart = true) ```
1228
1252
  # @param [Fixnum] max_results
1229
1253
  # The maximum number of results per page that should be returned. If the number
1230
1254
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -1279,20 +1303,24 @@ module Google
1279
1303
  # The name of the type provider for this request.
1280
1304
  # @param [String] filter
1281
1305
  # A filter expression that filters resources listed in the response. The
1282
- # expression must specify the field name, a comparison operator, and the value
1283
- # that you want to use for filtering. The value must be a string, a number, or a
1284
- # boolean. The comparison operator must be either `=`, `!=`, `>`, or `<`. For
1306
+ # expression must specify the field name, an operator, and the value that you
1307
+ # want to use for filtering. The value must be a string, a number, or a boolean.
1308
+ # The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For
1285
1309
  # example, if you are filtering Compute Engine instances, you can exclude
1286
1310
  # instances named `example-instance` by specifying `name != example-instance`.
1287
- # You can also filter nested fields. For example, you could specify `scheduling.
1288
- # automaticRestart = false` to include instances only if they are not scheduled
1289
- # for automatic restarts. You can use filtering on nested fields to filter based
1290
- # on resource labels. To filter on multiple expressions, provide each separate
1291
- # expression within parentheses. For example: ``` (scheduling.automaticRestart =
1292
- # true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `
1293
- # AND` expression. However, you can include `AND` and `OR` expressions
1294
- # explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform =
1295
- # "Intel Broadwell") AND (scheduling.automaticRestart = true) ```
1311
+ # The `:` operator can be used with string fields to match substrings. For non-
1312
+ # string fields it is equivalent to the `=` operator. The `:*` comparison can be
1313
+ # used to test whether a key has been defined. For example, to find all objects
1314
+ # with `owner` label use: ``` labels.owner:* ``` You can also filter nested
1315
+ # fields. For example, you could specify `scheduling.automaticRestart = false`
1316
+ # to include instances only if they are not scheduled for automatic restarts.
1317
+ # You can use filtering on nested fields to filter based on resource labels. To
1318
+ # filter on multiple expressions, provide each separate expression within
1319
+ # parentheses. For example: ``` (scheduling.automaticRestart = true) (
1320
+ # cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
1321
+ # expression. However, you can include `AND` and `OR` expressions explicitly.
1322
+ # For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel
1323
+ # Broadwell") AND (scheduling.automaticRestart = true) ```
1296
1324
  # @param [Fixnum] max_results
1297
1325
  # The maximum number of results per page that should be returned. If the number
1298
1326
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -1418,20 +1446,24 @@ module Google
1418
1446
  # The project ID for this request.
1419
1447
  # @param [String] filter
1420
1448
  # A filter expression that filters resources listed in the response. The
1421
- # expression must specify the field name, a comparison operator, and the value
1422
- # that you want to use for filtering. The value must be a string, a number, or a
1423
- # boolean. The comparison operator must be either `=`, `!=`, `>`, or `<`. For
1449
+ # expression must specify the field name, an operator, and the value that you
1450
+ # want to use for filtering. The value must be a string, a number, or a boolean.
1451
+ # The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For
1424
1452
  # example, if you are filtering Compute Engine instances, you can exclude
1425
1453
  # instances named `example-instance` by specifying `name != example-instance`.
1426
- # You can also filter nested fields. For example, you could specify `scheduling.
1427
- # automaticRestart = false` to include instances only if they are not scheduled
1428
- # for automatic restarts. You can use filtering on nested fields to filter based
1429
- # on resource labels. To filter on multiple expressions, provide each separate
1430
- # expression within parentheses. For example: ``` (scheduling.automaticRestart =
1431
- # true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `
1432
- # AND` expression. However, you can include `AND` and `OR` expressions
1433
- # explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform =
1434
- # "Intel Broadwell") AND (scheduling.automaticRestart = true) ```
1454
+ # The `:` operator can be used with string fields to match substrings. For non-
1455
+ # string fields it is equivalent to the `=` operator. The `:*` comparison can be
1456
+ # used to test whether a key has been defined. For example, to find all objects
1457
+ # with `owner` label use: ``` labels.owner:* ``` You can also filter nested
1458
+ # fields. For example, you could specify `scheduling.automaticRestart = false`
1459
+ # to include instances only if they are not scheduled for automatic restarts.
1460
+ # You can use filtering on nested fields to filter based on resource labels. To
1461
+ # filter on multiple expressions, provide each separate expression within
1462
+ # parentheses. For example: ``` (scheduling.automaticRestart = true) (
1463
+ # cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
1464
+ # expression. However, you can include `AND` and `OR` expressions explicitly.
1465
+ # For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel
1466
+ # Broadwell") AND (scheduling.automaticRestart = true) ```
1435
1467
  # @param [Fixnum] max_results
1436
1468
  # The maximum number of results per page that should be returned. If the number
1437
1469
  # 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.10.0
4
+ version: 0.11.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: 2021-08-23 00:00:00.000000000 Z
11
+ date: 2021-10-11 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/master/generated/google-apis-deploymentmanager_v2beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_v2beta/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_v2beta/v0.11.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-deploymentmanager_v2beta
63
63
  post_install_message:
64
64
  rdoc_options: []