google-apis-deploymentmanager_v2 0.14.0 → 0.17.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c44a615115daa9fe65ea86b320b9278bd2f6a4734eb829e58e4ce38f4b5a53aa
|
4
|
+
data.tar.gz: d7ea29e6f6821212c5b72fced9e0608522c89ff885f9e3688d6109059a0899e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20c7c705037a0386be0618642aa515a50414f91e4f64025d9c6a097d28ed82d882e9e73397f4d8b3a56b8289c3cc3438afdbeda5dddc3e4e151262cbce61cd19
|
7
|
+
data.tar.gz: 016073d4d750f83f584481c3575a990037863c6547fb32e407bf042ce5b260e74f64558dd7bd984559a37b0a139d7f71ef22a4e2dc7026f2ef053e42a2895a64
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-deploymentmanager_v2
|
2
2
|
|
3
|
+
### v0.17.0 (2022-06-05)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.5.0
|
6
|
+
|
7
|
+
### v0.16.0 (2022-05-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220520
|
10
|
+
|
11
|
+
### v0.15.0 (2022-05-05)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220429
|
14
|
+
|
3
15
|
### v0.14.0 (2022-04-14)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220407
|
@@ -35,8 +35,8 @@ module Google
|
|
35
35
|
# "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
|
36
36
|
# , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
|
37
37
|
# this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
|
38
|
-
# exempts jose@example.com from DATA_READ logging, and aliya@example.com
|
39
|
-
# DATA_WRITE logging.
|
38
|
+
# exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
|
39
|
+
# from DATA_WRITE logging.
|
40
40
|
class AuditConfig
|
41
41
|
include Google::Apis::Core::Hashable
|
42
42
|
|
@@ -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.17.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.5.0"
|
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.17.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-
|
11
|
+
date: 2022-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.5'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.5'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.17.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
|