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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/deploymentmanager_v2/gem_version.rb +2 -2
- data/lib/google/apis/deploymentmanager_v2/service.rb +150 -95
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4bc77fc40dac75b62fde14867bd8bd92d6852ac7b512f64b81ddf018b9043615
|
4
|
+
data.tar.gz: 554371aef1b0d63c15023f80f34e715a81249934b03310abd782137d61d44d8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ac7de199d581137f7f3be1b824ccbb201e7ce93cfd16a40f61fde549ab42bbe3186b829590ee198a6d5d74310ce2087534d5d64119643771e06e8d78965a300
|
7
|
+
data.tar.gz: 74182c0d42c8140b1ff486ec671d7f5ce3eca7088b9ad7fa9781249b51b7a3e788c1c8f4ef488406592077960faa5b1581d20bb247e9a10f978639e340daba33
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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 = "
|
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.
|
247
|
-
#
|
248
|
-
#
|
249
|
-
#
|
250
|
-
#
|
251
|
-
#
|
252
|
-
#
|
253
|
-
#
|
254
|
-
#
|
255
|
-
#
|
256
|
-
#
|
257
|
-
#
|
258
|
-
# You can
|
259
|
-
#
|
260
|
-
#
|
261
|
-
#
|
262
|
-
#
|
263
|
-
#
|
264
|
-
#
|
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.
|
575
|
-
#
|
576
|
-
#
|
577
|
-
#
|
578
|
-
#
|
579
|
-
#
|
580
|
-
#
|
581
|
-
#
|
582
|
-
#
|
583
|
-
#
|
584
|
-
#
|
585
|
-
#
|
586
|
-
# You can
|
587
|
-
#
|
588
|
-
#
|
589
|
-
#
|
590
|
-
#
|
591
|
-
#
|
592
|
-
#
|
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.
|
679
|
-
#
|
680
|
-
#
|
681
|
-
#
|
682
|
-
#
|
683
|
-
#
|
684
|
-
#
|
685
|
-
#
|
686
|
-
#
|
687
|
-
#
|
688
|
-
#
|
689
|
-
#
|
690
|
-
# You can
|
691
|
-
#
|
692
|
-
#
|
693
|
-
#
|
694
|
-
#
|
695
|
-
#
|
696
|
-
#
|
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.
|
787
|
-
#
|
788
|
-
#
|
789
|
-
#
|
790
|
-
#
|
791
|
-
#
|
792
|
-
#
|
793
|
-
#
|
794
|
-
#
|
795
|
-
#
|
796
|
-
#
|
797
|
-
#
|
798
|
-
# You can
|
799
|
-
#
|
800
|
-
#
|
801
|
-
#
|
802
|
-
#
|
803
|
-
#
|
804
|
-
#
|
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.
|
858
|
-
#
|
859
|
-
#
|
860
|
-
#
|
861
|
-
#
|
862
|
-
#
|
863
|
-
#
|
864
|
-
#
|
865
|
-
#
|
866
|
-
#
|
867
|
-
#
|
868
|
-
#
|
869
|
-
# You can
|
870
|
-
#
|
871
|
-
#
|
872
|
-
#
|
873
|
-
#
|
874
|
-
#
|
875
|
-
#
|
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.
|
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-
|
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.
|
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.
|
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
|