google-apis-deploymentmanager_v2 0.1.0 → 0.6.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 +4 -4
- data/CHANGELOG.md +22 -0
- data/lib/google/apis/deploymentmanager_v2.rb +1 -1
- data/lib/google/apis/deploymentmanager_v2/classes.rb +19 -0
- data/lib/google/apis/deploymentmanager_v2/gem_version.rb +3 -3
- data/lib/google/apis/deploymentmanager_v2/representations.rb +3 -0
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c866a02d32b1fba42f4ebd7fb099a8c88673fb0bf5536d3e23fcc78b418aa508
|
|
4
|
+
data.tar.gz: 4fa7ae147fef28a06bd6e1ee5ccce7813767cc23820df1d9dd15e24a39489a65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5b3e6ea3f1549428dfd9cc9fc07064cc84342fee6a5d6c15b2ab6712579cc7a7305edb8b87695ccdf786f589a7eac5d1d08cb4dcab42b146c6c83712f0db251
|
|
7
|
+
data.tar.gz: c85754670df5ec29100ce605ff62b77d2b5865b4f07621e8ff9a95a4318bdedbc1cbf687e5d649ca1859db70c04210c06735f30c654f0b8246164bf757a21d23
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Release history for google-apis-deploymentmanager_v2
|
|
2
2
|
|
|
3
|
+
### v0.6.0 (2021-05-19)
|
|
4
|
+
|
|
5
|
+
* Unspecified changes
|
|
6
|
+
|
|
7
|
+
### v0.5.0 (2021-03-18)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20210311
|
|
10
|
+
* Regenerated using generator version 0.2.0
|
|
11
|
+
|
|
12
|
+
### v0.4.0 (2021-03-04)
|
|
13
|
+
|
|
14
|
+
* Unspecified changes
|
|
15
|
+
|
|
16
|
+
### v0.3.0 (2021-02-11)
|
|
17
|
+
|
|
18
|
+
* Regenerated from discovery document revision 20210204
|
|
19
|
+
|
|
20
|
+
### v0.2.0 (2021-01-21)
|
|
21
|
+
|
|
22
|
+
* Regenerated from discovery document revision 20210114
|
|
23
|
+
* Regenerated using generator version 0.1.2
|
|
24
|
+
|
|
3
25
|
### v0.1.0 (2021-01-07)
|
|
4
26
|
|
|
5
27
|
* Regenerated using generator version 0.1.1
|
|
@@ -31,7 +31,7 @@ module Google
|
|
|
31
31
|
# This is NOT the gem version.
|
|
32
32
|
VERSION = 'V2'
|
|
33
33
|
|
|
34
|
-
#
|
|
34
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
|
35
35
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
|
36
36
|
|
|
37
37
|
# View your data across Google Cloud Platform services
|
|
@@ -640,6 +640,16 @@ module Google
|
|
|
640
640
|
# @return [String]
|
|
641
641
|
attr_accessor :layout
|
|
642
642
|
|
|
643
|
+
# Output only. The computed size of the fully expanded manifest.
|
|
644
|
+
# Corresponds to the JSON property `manifestSizeBytes`
|
|
645
|
+
# @return [Fixnum]
|
|
646
|
+
attr_accessor :manifest_size_bytes
|
|
647
|
+
|
|
648
|
+
# Output only. The size limit for expanded manifests in the project.
|
|
649
|
+
# Corresponds to the JSON property `manifestSizeLimitBytes`
|
|
650
|
+
# @return [Fixnum]
|
|
651
|
+
attr_accessor :manifest_size_limit_bytes
|
|
652
|
+
|
|
643
653
|
# Output only. The name of the manifest.
|
|
644
654
|
# Corresponds to the JSON property `name`
|
|
645
655
|
# @return [String]
|
|
@@ -662,6 +672,8 @@ module Google
|
|
|
662
672
|
@imports = args[:imports] if args.key?(:imports)
|
|
663
673
|
@insert_time = args[:insert_time] if args.key?(:insert_time)
|
|
664
674
|
@layout = args[:layout] if args.key?(:layout)
|
|
675
|
+
@manifest_size_bytes = args[:manifest_size_bytes] if args.key?(:manifest_size_bytes)
|
|
676
|
+
@manifest_size_limit_bytes = args[:manifest_size_limit_bytes] if args.key?(:manifest_size_limit_bytes)
|
|
665
677
|
@name = args[:name] if args.key?(:name)
|
|
666
678
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
667
679
|
end
|
|
@@ -771,6 +783,12 @@ module Google
|
|
|
771
783
|
# @return [String]
|
|
772
784
|
attr_accessor :name
|
|
773
785
|
|
|
786
|
+
# [Output Only] An ID that represents a group of operations, such as when a
|
|
787
|
+
# group of operations results from a `bulkInsert` API request.
|
|
788
|
+
# Corresponds to the JSON property `operationGroupId`
|
|
789
|
+
# @return [String]
|
|
790
|
+
attr_accessor :operation_group_id
|
|
791
|
+
|
|
774
792
|
# [Output Only] The type of operation, such as `insert`, `update`, or `delete`,
|
|
775
793
|
# and so on.
|
|
776
794
|
# Corresponds to the JSON property `operationType`
|
|
@@ -862,6 +880,7 @@ module Google
|
|
|
862
880
|
@insert_time = args[:insert_time] if args.key?(:insert_time)
|
|
863
881
|
@kind = args[:kind] if args.key?(:kind)
|
|
864
882
|
@name = args[:name] if args.key?(:name)
|
|
883
|
+
@operation_group_id = args[:operation_group_id] if args.key?(:operation_group_id)
|
|
865
884
|
@operation_type = args[:operation_type] if args.key?(:operation_type)
|
|
866
885
|
@progress = args[:progress] if args.key?(:progress)
|
|
867
886
|
@region = args[:region] if args.key?(:region)
|
|
@@ -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.6.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210311"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -395,6 +395,8 @@ module Google
|
|
|
395
395
|
|
|
396
396
|
property :insert_time, as: 'insertTime'
|
|
397
397
|
property :layout, as: 'layout'
|
|
398
|
+
property :manifest_size_bytes, :numeric_string => true, as: 'manifestSizeBytes'
|
|
399
|
+
property :manifest_size_limit_bytes, :numeric_string => true, as: 'manifestSizeLimitBytes'
|
|
398
400
|
property :name, as: 'name'
|
|
399
401
|
property :self_link, as: 'selfLink'
|
|
400
402
|
end
|
|
@@ -424,6 +426,7 @@ module Google
|
|
|
424
426
|
property :insert_time, as: 'insertTime'
|
|
425
427
|
property :kind, as: 'kind'
|
|
426
428
|
property :name, as: 'name'
|
|
429
|
+
property :operation_group_id, as: 'operationGroupId'
|
|
427
430
|
property :operation_type, as: 'operationType'
|
|
428
431
|
property :progress, as: 'progress'
|
|
429
432
|
property :region, as: 'region'
|
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.6.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-
|
|
11
|
+
date: 2021-05-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -52,7 +52,7 @@ licenses:
|
|
|
52
52
|
metadata:
|
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-deploymentmanager_v2/CHANGELOG.md
|
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_v2/v0.
|
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_v2/v0.6.0
|
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-deploymentmanager_v2
|
|
57
57
|
post_install_message:
|
|
58
58
|
rdoc_options: []
|
|
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
62
62
|
requirements:
|
|
63
63
|
- - ">="
|
|
64
64
|
- !ruby/object:Gem::Version
|
|
65
|
-
version: '2.
|
|
65
|
+
version: '2.5'
|
|
66
66
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
67
|
requirements:
|
|
68
68
|
- - ">="
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '0'
|
|
71
71
|
requirements: []
|
|
72
|
-
rubygems_version: 3.
|
|
72
|
+
rubygems_version: 3.2.17
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: Simple REST client for Cloud Deployment Manager V2 API V2
|