google-apis-deploymentmanager_alpha 0.2.0 → 0.3.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: c10abea22c0beb2119d56e5ba5c93c9bfba61116d0fcbf5d697a1828074e0973
|
|
4
|
+
data.tar.gz: 62fcee8a2082f2910a5b11a5b08cc7d78a7d95d6aabc12f4e7106e9136e24b42
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f42136cbb2174cf9ab1e5bca0a84328e10e487247db4a4a67a39bb6bccdfc32070895812e4bb312de6cf60827ea32a017e295eedc2b3ad8aacf1691176de4ba
|
|
7
|
+
data.tar.gz: 940c407749a0138749eeec62aa9f08dc8f12a97fec1ed4fb36a7fed82f2206da7bf29d22f88239863feb2b7b6f285c433d924542a818cc41ac36a211eb15b23d
|
data/CHANGELOG.md
CHANGED
|
@@ -1226,6 +1226,12 @@ module Google
|
|
|
1226
1226
|
# @return [String]
|
|
1227
1227
|
attr_accessor :name
|
|
1228
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
|
+
|
|
1229
1235
|
# [Output Only] The type of operation, such as `insert`, `update`, or `delete`,
|
|
1230
1236
|
# and so on.
|
|
1231
1237
|
# Corresponds to the JSON property `operationType`
|
|
@@ -1317,6 +1323,7 @@ module Google
|
|
|
1317
1323
|
@insert_time = args[:insert_time] if args.key?(:insert_time)
|
|
1318
1324
|
@kind = args[:kind] if args.key?(:kind)
|
|
1319
1325
|
@name = args[:name] if args.key?(:name)
|
|
1326
|
+
@operation_group_id = args[:operation_group_id] if args.key?(:operation_group_id)
|
|
1320
1327
|
@operation_type = args[:operation_type] if args.key?(:operation_type)
|
|
1321
1328
|
@progress = args[:progress] if args.key?(:progress)
|
|
1322
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.
|
|
19
|
+
GEM_VERSION = "0.3.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.1.2"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210204"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -700,6 +700,7 @@ module Google
|
|
|
700
700
|
property :insert_time, as: 'insertTime'
|
|
701
701
|
property :kind, as: 'kind'
|
|
702
702
|
property :name, as: 'name'
|
|
703
|
+
property :operation_group_id, as: 'operationGroupId'
|
|
703
704
|
property :operation_type, as: 'operationType'
|
|
704
705
|
property :progress, as: 'progress'
|
|
705
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.
|
|
4
|
+
version: 0.3.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-02-
|
|
11
|
+
date: 2021-02-15 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.
|
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.3.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: []
|