google-apis-deploymentmanager_alpha 0.10.0 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2a86b0cc5b0543a504a6b0ce811bc4531560423fd3454dd862ed19257ea5aada
4
- data.tar.gz: 6caca3387ced87a9daeb2b90dd1eff31ab4c41bdc4d25f0f907ac99c38579842
3
+ metadata.gz: cc038ca6449024b3c458d72653b3e8b892efbcabc4ed3cb678b6939d58fccc39
4
+ data.tar.gz: 81208bc2c8f150b5f9da56df3d00586c0fcbc1ce4376704445f91c2a269df941
5
5
  SHA512:
6
- metadata.gz: '0974a6a10b3f9275f5e3edb34052da69704a0fab25f41a311bd0badf06276bae8322aa619dcc15e9a56775bc88d0e652ae520f8392552cef36964db93a8b5ece'
7
- data.tar.gz: 3ad7ee745e28acb24f2f8dbda5134d737c33f9c1d04f607f7f7ae9eb831c74acbb7f2998c461598c4e9003427521d1048080e89b4e37f268bb62965483027f88
6
+ metadata.gz: 49e958f7ad95cb13b96487bbfe928eaa0a1ea54ef4a0ad58e0b962cf5ebea3357a19199734dfed62ce06cfca331c7cf18ab3f234b1cd05f32095b8b48d3c9a4f
7
+ data.tar.gz: 9bfc2ccb94972db119946356756086eee0f73d08bd1514041268c654244ff8d222852fc5e8012da924d398cc537f7b6413fb87b9540749acd4a226e8645f15ec
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-deploymentmanager_alpha
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
@@ -1557,7 +1557,12 @@ module Google
1557
1557
 
1558
1558
  # Associates a list of `members` to a `role`. Optionally, may specify a `
1559
1559
  # condition` that determines how and when the `bindings` are applied. Each of
1560
- # the `bindings` must contain at least one member.
1560
+ # the `bindings` must contain at least one member. The `bindings` in a `Policy`
1561
+ # can refer to up to 1,500 members; up to 250 of these members can be Google
1562
+ # groups. Each occurrence of a member counts towards these limits. For example,
1563
+ # if the `bindings` grant 50 different roles to `user:alice@example.com`, and
1564
+ # not to any other member, then you can add another 1,450 members to the `
1565
+ # bindings` in the `Policy`.
1561
1566
  # Corresponds to the JSON property `bindings`
1562
1567
  # @return [Array<Google::Apis::DeploymentmanagerAlpha::Binding>]
1563
1568
  attr_accessor :bindings
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DeploymentmanagerAlpha
18
18
  # Version of the google-apis-deploymentmanager_alpha 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 `
@@ -1451,20 +1479,24 @@ module Google
1451
1479
  # The project ID for this request.
1452
1480
  # @param [String] filter
1453
1481
  # A filter expression that filters resources listed in the response. The
1454
- # expression must specify the field name, a comparison operator, and the value
1455
- # that you want to use for filtering. The value must be a string, a number, or a
1456
- # boolean. The comparison operator must be either `=`, `!=`, `>`, or `<`. For
1482
+ # expression must specify the field name, an operator, and the value that you
1483
+ # want to use for filtering. The value must be a string, a number, or a boolean.
1484
+ # The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For
1457
1485
  # example, if you are filtering Compute Engine instances, you can exclude
1458
1486
  # instances named `example-instance` by specifying `name != example-instance`.
1459
- # You can also filter nested fields. For example, you could specify `scheduling.
1460
- # automaticRestart = false` to include instances only if they are not scheduled
1461
- # for automatic restarts. You can use filtering on nested fields to filter based
1462
- # on resource labels. To filter on multiple expressions, provide each separate
1463
- # expression within parentheses. For example: ``` (scheduling.automaticRestart =
1464
- # true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `
1465
- # AND` expression. However, you can include `AND` and `OR` expressions
1466
- # explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform =
1467
- # "Intel Broadwell") AND (scheduling.automaticRestart = true) ```
1487
+ # The `:` operator can be used with string fields to match substrings. For non-
1488
+ # string fields it is equivalent to the `=` operator. The `:*` comparison can be
1489
+ # used to test whether a key has been defined. For example, to find all objects
1490
+ # with `owner` label use: ``` labels.owner:* ``` You can also filter nested
1491
+ # fields. For example, you could specify `scheduling.automaticRestart = false`
1492
+ # to include instances only if they are not scheduled for automatic restarts.
1493
+ # You can use filtering on nested fields to filter based on resource labels. To
1494
+ # filter on multiple expressions, provide each separate expression within
1495
+ # parentheses. For example: ``` (scheduling.automaticRestart = true) (
1496
+ # cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
1497
+ # expression. However, you can include `AND` and `OR` expressions explicitly.
1498
+ # For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel
1499
+ # Broadwell") AND (scheduling.automaticRestart = true) ```
1468
1500
  # @param [Fixnum] max_results
1469
1501
  # The maximum number of results per page that should be returned. If the number
1470
1502
  # 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_alpha
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_alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.11.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-deploymentmanager_alpha
63
63
  post_install_message:
64
64
  rdoc_options: []