google-apis-cloudsupport_v2 0.17.0 → 0.19.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: '0819f2de47a58bdd5397e424e2587def673b2256a86ce1bb404bf738f05fc165'
|
|
4
|
+
data.tar.gz: fd14f9410907579d707f8c2d76f4ec068b866786e33ce23f5676a6d75ce929b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 26909a70d1e05fc8157195d00487cde458d8d143e08f317d0ae4cf5c35ec336cdee37f84dafeafbbec94c2c215274094a64420c7fd59e4468eecb8006c187752
|
|
7
|
+
data.tar.gz: e91fc4cbf8888bd8ad64b741290aba802c496ba1c5f252c0cfba19bea8a81695e1c146c392428b72d07dbf5298ffd204efaa61c22131b40c59e40848dfdbb533
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-cloudsupport_v2
|
|
2
2
|
|
|
3
|
+
### v0.19.0 (2025-12-07)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251203
|
|
6
|
+
|
|
7
|
+
### v0.18.0 (2025-06-15)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250609
|
|
10
|
+
|
|
3
11
|
### v0.17.0 (2025-06-08)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250602
|
|
@@ -140,6 +140,12 @@ module Google
|
|
|
140
140
|
# @return [String]
|
|
141
141
|
attr_accessor :blob_id
|
|
142
142
|
|
|
143
|
+
# # gdata.* are outside protos with mising documentation
|
|
144
|
+
# Corresponds to the JSON property `downloadExternalReadToken`
|
|
145
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
146
|
+
# @return [String]
|
|
147
|
+
attr_accessor :download_external_read_token
|
|
148
|
+
|
|
143
149
|
# # gdata.* are outside protos with mising documentation
|
|
144
150
|
# Corresponds to the JSON property `downloadReadHandle`
|
|
145
151
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
@@ -165,6 +171,7 @@ module Google
|
|
|
165
171
|
def update!(**args)
|
|
166
172
|
@blob_generation = args[:blob_generation] if args.key?(:blob_generation)
|
|
167
173
|
@blob_id = args[:blob_id] if args.key?(:blob_id)
|
|
174
|
+
@download_external_read_token = args[:download_external_read_token] if args.key?(:download_external_read_token)
|
|
168
175
|
@download_read_handle = args[:download_read_handle] if args.key?(:download_read_handle)
|
|
169
176
|
@read_token = args[:read_token] if args.key?(:read_token)
|
|
170
177
|
@upload_metadata_container = args[:upload_metadata_container] if args.key?(:upload_metadata_container)
|
|
@@ -1132,38 +1139,6 @@ module Google
|
|
|
1132
1139
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
1133
1140
|
end
|
|
1134
1141
|
end
|
|
1135
|
-
|
|
1136
|
-
# Metadata about the operation. Used to lookup the current status.
|
|
1137
|
-
class WorkflowOperationMetadata
|
|
1138
|
-
include Google::Apis::Core::Hashable
|
|
1139
|
-
|
|
1140
|
-
# The namespace that the job was scheduled in. Must be included in the workflow
|
|
1141
|
-
# metadata so the workflow status can be retrieved.
|
|
1142
|
-
# Corresponds to the JSON property `namespace`
|
|
1143
|
-
# @return [String]
|
|
1144
|
-
attr_accessor :namespace
|
|
1145
|
-
|
|
1146
|
-
# The type of action the operation is classified as.
|
|
1147
|
-
# Corresponds to the JSON property `operationAction`
|
|
1148
|
-
# @return [String]
|
|
1149
|
-
attr_accessor :operation_action
|
|
1150
|
-
|
|
1151
|
-
# Which version of the workflow service this operation came from.
|
|
1152
|
-
# Corresponds to the JSON property `workflowOperationType`
|
|
1153
|
-
# @return [String]
|
|
1154
|
-
attr_accessor :workflow_operation_type
|
|
1155
|
-
|
|
1156
|
-
def initialize(**args)
|
|
1157
|
-
update!(**args)
|
|
1158
|
-
end
|
|
1159
|
-
|
|
1160
|
-
# Update properties of this object
|
|
1161
|
-
def update!(**args)
|
|
1162
|
-
@namespace = args[:namespace] if args.key?(:namespace)
|
|
1163
|
-
@operation_action = args[:operation_action] if args.key?(:operation_action)
|
|
1164
|
-
@workflow_operation_type = args[:workflow_operation_type] if args.key?(:workflow_operation_type)
|
|
1165
|
-
end
|
|
1166
|
-
end
|
|
1167
1142
|
end
|
|
1168
1143
|
end
|
|
1169
1144
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudsupportV2
|
|
18
18
|
# Version of the google-apis-cloudsupport_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.19.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251203"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -172,12 +172,6 @@ module Google
|
|
|
172
172
|
include Google::Apis::Core::JsonObjectSupport
|
|
173
173
|
end
|
|
174
174
|
|
|
175
|
-
class WorkflowOperationMetadata
|
|
176
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
177
|
-
|
|
178
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
179
|
-
end
|
|
180
|
-
|
|
181
175
|
class Actor
|
|
182
176
|
# @private
|
|
183
177
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -206,6 +200,7 @@ module Google
|
|
|
206
200
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
207
201
|
property :blob_generation, :numeric_string => true, as: 'blobGeneration'
|
|
208
202
|
property :blob_id, as: 'blobId'
|
|
203
|
+
property :download_external_read_token, :base64 => true, as: 'downloadExternalReadToken'
|
|
209
204
|
property :download_read_handle, :base64 => true, as: 'downloadReadHandle'
|
|
210
205
|
property :read_token, as: 'readToken'
|
|
211
206
|
property :upload_metadata_container, :base64 => true, as: 'uploadMetadataContainer'
|
|
@@ -471,15 +466,6 @@ module Google
|
|
|
471
466
|
property :next_page_token, as: 'nextPageToken'
|
|
472
467
|
end
|
|
473
468
|
end
|
|
474
|
-
|
|
475
|
-
class WorkflowOperationMetadata
|
|
476
|
-
# @private
|
|
477
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
478
|
-
property :namespace, as: 'namespace'
|
|
479
|
-
property :operation_action, as: 'operationAction'
|
|
480
|
-
property :workflow_operation_type, as: 'workflowOperationType'
|
|
481
|
-
end
|
|
482
|
-
end
|
|
483
469
|
end
|
|
484
470
|
end
|
|
485
471
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudsupport_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.19.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudsupport_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsupport_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsupport_v2/v0.19.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudsupport_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|