google-apis-deploymentmanager_v2 0.15.0 → 0.16.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: 4efe4801ec867270c6dd14401211180c8e006ad148615e4dbb6cdb5e75082138
4
- data.tar.gz: 8766c2890630f4090932c19127c050822144de1653b4bcf844f5fa6e5bcc93b1
3
+ metadata.gz: 4bc77fc40dac75b62fde14867bd8bd92d6852ac7b512f64b81ddf018b9043615
4
+ data.tar.gz: 554371aef1b0d63c15023f80f34e715a81249934b03310abd782137d61d44d8b
5
5
  SHA512:
6
- metadata.gz: 87c3ff77aa6e6138e6144e65aae1b405432ad67b4bc0a54d2856043502ed659a1a328cabce6a0ee56864c689d6309de1aa960a4cc6dd3a542accde3a225fb758
7
- data.tar.gz: f1115ebe4072cfa48941be90e1e11f55747fee3ac8d77b5f0511bdc974dfdca29bdf238decce872f0d99209d4c6e49be77894f8f0ee5acbae6b01ceb5c0d7ae0
6
+ metadata.gz: 4ac7de199d581137f7f3be1b824ccbb201e7ce93cfd16a40f61fde549ab42bbe3186b829590ee198a6d5d74310ce2087534d5d64119643771e06e8d78965a300
7
+ data.tar.gz: 74182c0d42c8140b1ff486ec671d7f5ce3eca7088b9ad7fa9781249b51b7a3e788c1c8f4ef488406592077960faa5b1581d20bb247e9a10f978639e340daba33
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-deploymentmanager_v2
2
2
 
3
+ ### v0.16.0 (2022-05-27)
4
+
5
+ * Regenerated from discovery document revision 20220520
6
+
3
7
  ### v0.15.0 (2022-05-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20220429
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DeploymentmanagerV2
18
18
  # Version of the google-apis-deploymentmanager_v2 gem
19
- GEM_VERSION = "0.15.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220429"
25
+ REVISION = "20220520"
26
26
  end
27
27
  end
28
28
  end
@@ -243,25 +243,36 @@ module Google
243
243
  # @param [String] project
244
244
  # The project ID for this request.
245
245
  # @param [String] filter
246
- # A filter expression that filters resources listed in the response. The
247
- # expression must specify the field name, an operator, and the value that you
248
- # want to use for filtering. The value must be a string, a number, or a boolean.
249
- # The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For
250
- # example, if you are filtering Compute Engine instances, you can exclude
251
- # instances named `example-instance` by specifying `name != example-instance`.
252
- # The `:` operator can be used with string fields to match substrings. For non-
253
- # string fields it is equivalent to the `=` operator. The `:*` comparison can be
254
- # used to test whether a key has been defined. For example, to find all objects
255
- # with `owner` label use: ``` labels.owner:* ``` You can also filter nested
256
- # fields. For example, you could specify `scheduling.automaticRestart = false`
257
- # to include instances only if they are not scheduled for automatic restarts.
258
- # You can use filtering on nested fields to filter based on resource labels. To
259
- # filter on multiple expressions, provide each separate expression within
260
- # parentheses. For example: ``` (scheduling.automaticRestart = true) (
261
- # cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
262
- # expression. However, you can include `AND` and `OR` expressions explicitly.
263
- # For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel
264
- # Broadwell") AND (scheduling.automaticRestart = true) ```
246
+ # A filter expression that filters resources listed in the response. Most
247
+ # Compute resources support two types of filter expressions: expressions that
248
+ # support regular expressions and expressions that follow API improvement
249
+ # proposal AIP-160. If you want to use AIP-160, your expression must specify the
250
+ # field name, an operator, and the value that you want to use for filtering. The
251
+ # value must be a string, a number, or a boolean. The operator must be either `=`
252
+ # , `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
253
+ # Engine instances, you can exclude instances named `example-instance` by
254
+ # specifying `name != example-instance`. The `:` operator can be used with
255
+ # string fields to match substrings. For non-string fields it is equivalent to
256
+ # the `=` operator. The `:*` comparison can be used to test whether a key has
257
+ # been defined. For example, to find all objects with `owner` label use: ```
258
+ # labels.owner:* ``` You can also filter nested fields. For example, you could
259
+ # specify `scheduling.automaticRestart = false` to include instances only if
260
+ # they are not scheduled for automatic restarts. You can use filtering on nested
261
+ # fields to filter based on resource labels. To filter on multiple expressions,
262
+ # provide each separate expression within parentheses. For example: ``` (
263
+ # scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By
264
+ # default, each expression is an `AND` expression. However, you can include `AND`
265
+ # and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel
266
+ # Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.
267
+ # automaticRestart = true) ``` If you want to use a regular expression, use the `
268
+ # eq` (equal) or `ne` (not equal) operator against a single un-parenthesized
269
+ # expression with or without quotes or against multiple parenthesized
270
+ # expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single
271
+ # quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq
272
+ # literal) (fieldname2 ne "literal")` The literal value is interpreted as a
273
+ # regular expression using Google RE2 library syntax. The literal value must
274
+ # match the entire field. For example, to filter for instances that do not end
275
+ # with name "instance", you would use `name ne .*instance`.
265
276
  # @param [Fixnum] max_results
266
277
  # The maximum number of results per page that should be returned. If the number
267
278
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -571,25 +582,36 @@ module Google
571
582
  # @param [String] deployment
572
583
  # The name of the deployment for this request.
573
584
  # @param [String] filter
574
- # A filter expression that filters resources listed in the response. The
575
- # expression must specify the field name, an operator, and the value that you
576
- # want to use for filtering. The value must be a string, a number, or a boolean.
577
- # The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For
578
- # example, if you are filtering Compute Engine instances, you can exclude
579
- # instances named `example-instance` by specifying `name != example-instance`.
580
- # The `:` operator can be used with string fields to match substrings. For non-
581
- # string fields it is equivalent to the `=` operator. The `:*` comparison can be
582
- # used to test whether a key has been defined. For example, to find all objects
583
- # with `owner` label use: ``` labels.owner:* ``` You can also filter nested
584
- # fields. For example, you could specify `scheduling.automaticRestart = false`
585
- # to include instances only if they are not scheduled for automatic restarts.
586
- # You can use filtering on nested fields to filter based on resource labels. To
587
- # filter on multiple expressions, provide each separate expression within
588
- # parentheses. For example: ``` (scheduling.automaticRestart = true) (
589
- # cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
590
- # expression. However, you can include `AND` and `OR` expressions explicitly.
591
- # For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel
592
- # Broadwell") AND (scheduling.automaticRestart = true) ```
585
+ # A filter expression that filters resources listed in the response. Most
586
+ # Compute resources support two types of filter expressions: expressions that
587
+ # support regular expressions and expressions that follow API improvement
588
+ # proposal AIP-160. If you want to use AIP-160, your expression must specify the
589
+ # field name, an operator, and the value that you want to use for filtering. The
590
+ # value must be a string, a number, or a boolean. The operator must be either `=`
591
+ # , `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
592
+ # Engine instances, you can exclude instances named `example-instance` by
593
+ # specifying `name != example-instance`. The `:` operator can be used with
594
+ # string fields to match substrings. For non-string fields it is equivalent to
595
+ # the `=` operator. The `:*` comparison can be used to test whether a key has
596
+ # been defined. For example, to find all objects with `owner` label use: ```
597
+ # labels.owner:* ``` You can also filter nested fields. For example, you could
598
+ # specify `scheduling.automaticRestart = false` to include instances only if
599
+ # they are not scheduled for automatic restarts. You can use filtering on nested
600
+ # fields to filter based on resource labels. To filter on multiple expressions,
601
+ # provide each separate expression within parentheses. For example: ``` (
602
+ # scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By
603
+ # default, each expression is an `AND` expression. However, you can include `AND`
604
+ # and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel
605
+ # Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.
606
+ # automaticRestart = true) ``` If you want to use a regular expression, use the `
607
+ # eq` (equal) or `ne` (not equal) operator against a single un-parenthesized
608
+ # expression with or without quotes or against multiple parenthesized
609
+ # expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single
610
+ # quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq
611
+ # literal) (fieldname2 ne "literal")` The literal value is interpreted as a
612
+ # regular expression using Google RE2 library syntax. The literal value must
613
+ # match the entire field. For example, to filter for instances that do not end
614
+ # with name "instance", you would use `name ne .*instance`.
593
615
  # @param [Fixnum] max_results
594
616
  # The maximum number of results per page that should be returned. If the number
595
617
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -675,25 +697,36 @@ module Google
675
697
  # @param [String] project
676
698
  # The project ID for this request.
677
699
  # @param [String] filter
678
- # A filter expression that filters resources listed in the response. The
679
- # expression must specify the field name, an operator, and the value that you
680
- # want to use for filtering. The value must be a string, a number, or a boolean.
681
- # The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For
682
- # example, if you are filtering Compute Engine instances, you can exclude
683
- # instances named `example-instance` by specifying `name != example-instance`.
684
- # The `:` operator can be used with string fields to match substrings. For non-
685
- # string fields it is equivalent to the `=` operator. The `:*` comparison can be
686
- # used to test whether a key has been defined. For example, to find all objects
687
- # with `owner` label use: ``` labels.owner:* ``` You can also filter nested
688
- # fields. For example, you could specify `scheduling.automaticRestart = false`
689
- # to include instances only if they are not scheduled for automatic restarts.
690
- # You can use filtering on nested fields to filter based on resource labels. To
691
- # filter on multiple expressions, provide each separate expression within
692
- # parentheses. For example: ``` (scheduling.automaticRestart = true) (
693
- # cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
694
- # expression. However, you can include `AND` and `OR` expressions explicitly.
695
- # For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel
696
- # Broadwell") AND (scheduling.automaticRestart = true) ```
700
+ # A filter expression that filters resources listed in the response. Most
701
+ # Compute resources support two types of filter expressions: expressions that
702
+ # support regular expressions and expressions that follow API improvement
703
+ # proposal AIP-160. If you want to use AIP-160, your expression must specify the
704
+ # field name, an operator, and the value that you want to use for filtering. The
705
+ # value must be a string, a number, or a boolean. The operator must be either `=`
706
+ # , `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
707
+ # Engine instances, you can exclude instances named `example-instance` by
708
+ # specifying `name != example-instance`. The `:` operator can be used with
709
+ # string fields to match substrings. For non-string fields it is equivalent to
710
+ # the `=` operator. The `:*` comparison can be used to test whether a key has
711
+ # been defined. For example, to find all objects with `owner` label use: ```
712
+ # labels.owner:* ``` You can also filter nested fields. For example, you could
713
+ # specify `scheduling.automaticRestart = false` to include instances only if
714
+ # they are not scheduled for automatic restarts. You can use filtering on nested
715
+ # fields to filter based on resource labels. To filter on multiple expressions,
716
+ # provide each separate expression within parentheses. For example: ``` (
717
+ # scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By
718
+ # default, each expression is an `AND` expression. However, you can include `AND`
719
+ # and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel
720
+ # Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.
721
+ # automaticRestart = true) ``` If you want to use a regular expression, use the `
722
+ # eq` (equal) or `ne` (not equal) operator against a single un-parenthesized
723
+ # expression with or without quotes or against multiple parenthesized
724
+ # expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single
725
+ # quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq
726
+ # literal) (fieldname2 ne "literal")` The literal value is interpreted as a
727
+ # regular expression using Google RE2 library syntax. The literal value must
728
+ # match the entire field. For example, to filter for instances that do not end
729
+ # with name "instance", you would use `name ne .*instance`.
697
730
  # @param [Fixnum] max_results
698
731
  # The maximum number of results per page that should be returned. If the number
699
732
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -783,25 +816,36 @@ module Google
783
816
  # @param [String] deployment
784
817
  # The name of the deployment for this request.
785
818
  # @param [String] filter
786
- # A filter expression that filters resources listed in the response. The
787
- # expression must specify the field name, an operator, and the value that you
788
- # want to use for filtering. The value must be a string, a number, or a boolean.
789
- # The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For
790
- # example, if you are filtering Compute Engine instances, you can exclude
791
- # instances named `example-instance` by specifying `name != example-instance`.
792
- # The `:` operator can be used with string fields to match substrings. For non-
793
- # string fields it is equivalent to the `=` operator. The `:*` comparison can be
794
- # used to test whether a key has been defined. For example, to find all objects
795
- # with `owner` label use: ``` labels.owner:* ``` You can also filter nested
796
- # fields. For example, you could specify `scheduling.automaticRestart = false`
797
- # to include instances only if they are not scheduled for automatic restarts.
798
- # You can use filtering on nested fields to filter based on resource labels. To
799
- # filter on multiple expressions, provide each separate expression within
800
- # parentheses. For example: ``` (scheduling.automaticRestart = true) (
801
- # cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
802
- # expression. However, you can include `AND` and `OR` expressions explicitly.
803
- # For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel
804
- # Broadwell") AND (scheduling.automaticRestart = true) ```
819
+ # A filter expression that filters resources listed in the response. Most
820
+ # Compute resources support two types of filter expressions: expressions that
821
+ # support regular expressions and expressions that follow API improvement
822
+ # proposal AIP-160. If you want to use AIP-160, your expression must specify the
823
+ # field name, an operator, and the value that you want to use for filtering. The
824
+ # value must be a string, a number, or a boolean. The operator must be either `=`
825
+ # , `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
826
+ # Engine instances, you can exclude instances named `example-instance` by
827
+ # specifying `name != example-instance`. The `:` operator can be used with
828
+ # string fields to match substrings. For non-string fields it is equivalent to
829
+ # the `=` operator. The `:*` comparison can be used to test whether a key has
830
+ # been defined. For example, to find all objects with `owner` label use: ```
831
+ # labels.owner:* ``` You can also filter nested fields. For example, you could
832
+ # specify `scheduling.automaticRestart = false` to include instances only if
833
+ # they are not scheduled for automatic restarts. You can use filtering on nested
834
+ # fields to filter based on resource labels. To filter on multiple expressions,
835
+ # provide each separate expression within parentheses. For example: ``` (
836
+ # scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By
837
+ # default, each expression is an `AND` expression. However, you can include `AND`
838
+ # and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel
839
+ # Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.
840
+ # automaticRestart = true) ``` If you want to use a regular expression, use the `
841
+ # eq` (equal) or `ne` (not equal) operator against a single un-parenthesized
842
+ # expression with or without quotes or against multiple parenthesized
843
+ # expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single
844
+ # quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq
845
+ # literal) (fieldname2 ne "literal")` The literal value is interpreted as a
846
+ # regular expression using Google RE2 library syntax. The literal value must
847
+ # match the entire field. For example, to filter for instances that do not end
848
+ # with name "instance", you would use `name ne .*instance`.
805
849
  # @param [Fixnum] max_results
806
850
  # The maximum number of results per page that should be returned. If the number
807
851
  # of available results is larger than `maxResults`, Compute Engine returns a `
@@ -854,25 +898,36 @@ module Google
854
898
  # @param [String] project
855
899
  # The project ID for this request.
856
900
  # @param [String] filter
857
- # A filter expression that filters resources listed in the response. The
858
- # expression must specify the field name, an operator, and the value that you
859
- # want to use for filtering. The value must be a string, a number, or a boolean.
860
- # The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For
861
- # example, if you are filtering Compute Engine instances, you can exclude
862
- # instances named `example-instance` by specifying `name != example-instance`.
863
- # The `:` operator can be used with string fields to match substrings. For non-
864
- # string fields it is equivalent to the `=` operator. The `:*` comparison can be
865
- # used to test whether a key has been defined. For example, to find all objects
866
- # with `owner` label use: ``` labels.owner:* ``` You can also filter nested
867
- # fields. For example, you could specify `scheduling.automaticRestart = false`
868
- # to include instances only if they are not scheduled for automatic restarts.
869
- # You can use filtering on nested fields to filter based on resource labels. To
870
- # filter on multiple expressions, provide each separate expression within
871
- # parentheses. For example: ``` (scheduling.automaticRestart = true) (
872
- # cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
873
- # expression. However, you can include `AND` and `OR` expressions explicitly.
874
- # For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel
875
- # Broadwell") AND (scheduling.automaticRestart = true) ```
901
+ # A filter expression that filters resources listed in the response. Most
902
+ # Compute resources support two types of filter expressions: expressions that
903
+ # support regular expressions and expressions that follow API improvement
904
+ # proposal AIP-160. If you want to use AIP-160, your expression must specify the
905
+ # field name, an operator, and the value that you want to use for filtering. The
906
+ # value must be a string, a number, or a boolean. The operator must be either `=`
907
+ # , `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
908
+ # Engine instances, you can exclude instances named `example-instance` by
909
+ # specifying `name != example-instance`. The `:` operator can be used with
910
+ # string fields to match substrings. For non-string fields it is equivalent to
911
+ # the `=` operator. The `:*` comparison can be used to test whether a key has
912
+ # been defined. For example, to find all objects with `owner` label use: ```
913
+ # labels.owner:* ``` You can also filter nested fields. For example, you could
914
+ # specify `scheduling.automaticRestart = false` to include instances only if
915
+ # they are not scheduled for automatic restarts. You can use filtering on nested
916
+ # fields to filter based on resource labels. To filter on multiple expressions,
917
+ # provide each separate expression within parentheses. For example: ``` (
918
+ # scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By
919
+ # default, each expression is an `AND` expression. However, you can include `AND`
920
+ # and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel
921
+ # Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.
922
+ # automaticRestart = true) ``` If you want to use a regular expression, use the `
923
+ # eq` (equal) or `ne` (not equal) operator against a single un-parenthesized
924
+ # expression with or without quotes or against multiple parenthesized
925
+ # expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single
926
+ # quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq
927
+ # literal) (fieldname2 ne "literal")` The literal value is interpreted as a
928
+ # regular expression using Google RE2 library syntax. The literal value must
929
+ # match the entire field. For example, to filter for instances that do not end
930
+ # with name "instance", you would use `name ne .*instance`.
876
931
  # @param [Fixnum] max_results
877
932
  # The maximum number of results per page that should be returned. If the number
878
933
  # 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_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.16.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: 2022-05-09 00:00:00.000000000 Z
11
+ date: 2022-05-30 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_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_v2/v0.15.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_v2/v0.16.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-deploymentmanager_v2
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Deployment Manager V2 API V2