google-apis-composer_v1beta1 0.35.0 → 0.36.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9cdfaf5d2ffc6decf3236e8b9e135f051fe57000b65db7143494c517e88dfabf
|
4
|
+
data.tar.gz: d6a6aa46561b57416fc32b443ea407256677b533d35c966a1ba364a3e7a895fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb22f9aa58cd2d09c1330bb849b5d975f19797c64f5c827da14cc21a1ce0c578bf97847cff9ec6c61ffd926cda0efd8ba251807bc980df90dc765a7a16ea853d
|
7
|
+
data.tar.gz: b0030cdcb845dba5a118fdc87b8469c04a995bf48da7e1e1488ce68b7ed92d5f7f46fe2509f9afafbefdeced2d188cec8eb5c43bef842026e672b566065b864f
|
data/CHANGELOG.md
CHANGED
@@ -342,6 +342,11 @@ module Google
|
|
342
342
|
# @return [String]
|
343
343
|
attr_accessor :state
|
344
344
|
|
345
|
+
# The configuration for data storage in the environment.
|
346
|
+
# Corresponds to the JSON property `storageConfig`
|
347
|
+
# @return [Google::Apis::ComposerV1beta1::StorageConfig]
|
348
|
+
attr_accessor :storage_config
|
349
|
+
|
345
350
|
# Output only. The time at which this environment was last modified.
|
346
351
|
# Corresponds to the JSON property `updateTime`
|
347
352
|
# @return [String]
|
@@ -364,6 +369,7 @@ module Google
|
|
364
369
|
@labels = args[:labels] if args.key?(:labels)
|
365
370
|
@name = args[:name] if args.key?(:name)
|
366
371
|
@state = args[:state] if args.key?(:state)
|
372
|
+
@storage_config = args[:storage_config] if args.key?(:storage_config)
|
367
373
|
@update_time = args[:update_time] if args.key?(:update_time)
|
368
374
|
@uuid = args[:uuid] if args.key?(:uuid)
|
369
375
|
end
|
@@ -1216,13 +1222,13 @@ module Google
|
|
1216
1222
|
# @return [String]
|
1217
1223
|
attr_accessor :name
|
1218
1224
|
|
1219
|
-
# The normal response of the operation
|
1220
|
-
#
|
1221
|
-
#
|
1222
|
-
#
|
1223
|
-
#
|
1224
|
-
#
|
1225
|
-
#
|
1225
|
+
# The normal, successful response of the operation. If the original method
|
1226
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
1227
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
1228
|
+
# response should be the resource. For other methods, the response should have
|
1229
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
1230
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
1231
|
+
# `TakeSnapshotResponse`.
|
1226
1232
|
# Corresponds to the JSON property `response`
|
1227
1233
|
# @return [Hash<String,Object>]
|
1228
1234
|
attr_accessor :response
|
@@ -1853,6 +1859,19 @@ module Google
|
|
1853
1859
|
end
|
1854
1860
|
end
|
1855
1861
|
|
1862
|
+
# The configuration for data storage in the environment.
|
1863
|
+
class StorageConfig
|
1864
|
+
include Google::Apis::Core::Hashable
|
1865
|
+
|
1866
|
+
def initialize(**args)
|
1867
|
+
update!(**args)
|
1868
|
+
end
|
1869
|
+
|
1870
|
+
# Update properties of this object
|
1871
|
+
def update!(**args)
|
1872
|
+
end
|
1873
|
+
end
|
1874
|
+
|
1856
1875
|
# Configuration for resources used by Airflow triggerers.
|
1857
1876
|
class TriggererResource
|
1858
1877
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComposerV1beta1
|
18
18
|
# Version of the google-apis-composer_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.36.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230806"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -292,6 +292,12 @@ module Google
|
|
292
292
|
include Google::Apis::Core::JsonObjectSupport
|
293
293
|
end
|
294
294
|
|
295
|
+
class StorageConfig
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
295
301
|
class TriggererResource
|
296
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
303
|
|
@@ -419,6 +425,8 @@ module Google
|
|
419
425
|
hash :labels, as: 'labels'
|
420
426
|
property :name, as: 'name'
|
421
427
|
property :state, as: 'state'
|
428
|
+
property :storage_config, as: 'storageConfig', class: Google::Apis::ComposerV1beta1::StorageConfig, decorator: Google::Apis::ComposerV1beta1::StorageConfig::Representation
|
429
|
+
|
422
430
|
property :update_time, as: 'updateTime'
|
423
431
|
property :uuid, as: 'uuid'
|
424
432
|
end
|
@@ -775,6 +783,12 @@ module Google
|
|
775
783
|
end
|
776
784
|
end
|
777
785
|
|
786
|
+
class StorageConfig
|
787
|
+
# @private
|
788
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
789
|
+
end
|
790
|
+
end
|
791
|
+
|
778
792
|
class TriggererResource
|
779
793
|
# @private
|
780
794
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-composer_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.36.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: 2023-
|
11
|
+
date: 2023-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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-composer_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.36.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-composer_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|