google-apis-deploymentmanager_alpha 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2525187e439b2669282852a99aa43a25258b7dcec6a13a31a50abcc7fe4d1905
4
- data.tar.gz: cfef69bb80ae963edd66d0fc307a44557b33e34df2de1bdce17c6f608ae75b25
3
+ metadata.gz: 6aacd3b887f98371e07efd01cad496d7196aadb7baf273fd801460ed2a6ab9d3
4
+ data.tar.gz: e94e8c95c2435aa345dab29654d5b99bbdabcdc0b3c84940dd11643d31f9c481
5
5
  SHA512:
6
- metadata.gz: 3777ac4553945ed3983ac7d756c6b27c50bf2392069d956851286f1fd9de6c5713884ff800524bfcac6856d920a39094ea549bce59d9ed01b6d0085cfb9fd6fe
7
- data.tar.gz: a5ec0b9c446376334ef142e0a4caa9a5b9214f71710537172259b2ed816333b793ba8012bbe817d44698490e85a53a883c52de3d8efe81b3cb1c19399551d47c
6
+ metadata.gz: bef7c9d78eb0fcd4e795326386ce5340eebc2399716ab88c6fd33b37e5f6b95085b4390c32c483880c8549540668dd90591a6ec3583f0ba303647eabe3ac7fa6
7
+ data.tar.gz: 2d6312dd472bcf5863663825970a17b460a9afb194847c33006011eabbe99c941425fd4dfca3ba5dc5d6d8d29166ff700e2ed640da4d2c9a37bd683d1fb6356e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-deploymentmanager_alpha
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 = 'Alpha'
33
33
 
34
- # View and manage your data across Google Cloud Platform services
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
@@ -1038,6 +1038,16 @@ module Google
1038
1038
  # @return [String]
1039
1039
  attr_accessor :layout
1040
1040
 
1041
+ # Output only. The computed size of the fully expanded manifest.
1042
+ # Corresponds to the JSON property `manifestSizeBytes`
1043
+ # @return [Fixnum]
1044
+ attr_accessor :manifest_size_bytes
1045
+
1046
+ # Output only. The size limit for expanded manifests in the project.
1047
+ # Corresponds to the JSON property `manifestSizeLimitBytes`
1048
+ # @return [Fixnum]
1049
+ attr_accessor :manifest_size_limit_bytes
1050
+
1041
1051
  # Output only. The name of the manifest.
1042
1052
  # Corresponds to the JSON property `name`
1043
1053
  # @return [String]
@@ -1060,6 +1070,8 @@ module Google
1060
1070
  @imports = args[:imports] if args.key?(:imports)
1061
1071
  @insert_time = args[:insert_time] if args.key?(:insert_time)
1062
1072
  @layout = args[:layout] if args.key?(:layout)
1073
+ @manifest_size_bytes = args[:manifest_size_bytes] if args.key?(:manifest_size_bytes)
1074
+ @manifest_size_limit_bytes = args[:manifest_size_limit_bytes] if args.key?(:manifest_size_limit_bytes)
1063
1075
  @name = args[:name] if args.key?(:name)
1064
1076
  @self_link = args[:self_link] if args.key?(:self_link)
1065
1077
  end
@@ -1214,6 +1226,12 @@ module Google
1214
1226
  # @return [String]
1215
1227
  attr_accessor :name
1216
1228
 
1229
+ # [Output Only] An ID that represents a group of operations, such as when a
1230
+ # group of operations results from a `bulkInsert` API request.
1231
+ # Corresponds to the JSON property `operationGroupId`
1232
+ # @return [String]
1233
+ attr_accessor :operation_group_id
1234
+
1217
1235
  # [Output Only] The type of operation, such as `insert`, `update`, or `delete`,
1218
1236
  # and so on.
1219
1237
  # Corresponds to the JSON property `operationType`
@@ -1305,6 +1323,7 @@ module Google
1305
1323
  @insert_time = args[:insert_time] if args.key?(:insert_time)
1306
1324
  @kind = args[:kind] if args.key?(:kind)
1307
1325
  @name = args[:name] if args.key?(:name)
1326
+ @operation_group_id = args[:operation_group_id] if args.key?(:operation_group_id)
1308
1327
  @operation_type = args[:operation_type] if args.key?(:operation_type)
1309
1328
  @progress = args[:progress] if args.key?(:progress)
1310
1329
  @region = args[:region] if args.key?(:region)
@@ -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.1.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.1.1"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20201203"
25
+ REVISION = "20210311"
26
26
  end
27
27
  end
28
28
  end
@@ -658,6 +658,8 @@ module Google
658
658
 
659
659
  property :insert_time, as: 'insertTime'
660
660
  property :layout, as: 'layout'
661
+ property :manifest_size_bytes, :numeric_string => true, as: 'manifestSizeBytes'
662
+ property :manifest_size_limit_bytes, :numeric_string => true, as: 'manifestSizeLimitBytes'
661
663
  property :name, as: 'name'
662
664
  property :self_link, as: 'selfLink'
663
665
  end
@@ -698,6 +700,7 @@ module Google
698
700
  property :insert_time, as: 'insertTime'
699
701
  property :kind, as: 'kind'
700
702
  property :name, as: 'name'
703
+ property :operation_group_id, as: 'operationGroupId'
701
704
  property :operation_type, as: 'operationType'
702
705
  property :progress, as: 'progress'
703
706
  property :region, as: 'region'
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.1.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-01-08 00:00:00.000000000 Z
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_alpha/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.1.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.6.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-deploymentmanager_alpha
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.4'
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.1.4
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 Alpha