google-apis-composer_v1beta1 0.35.0 → 0.36.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: badf61b6d246109225188d7090a722129a91a08b759b9e575f46152b4f8d5aa0
4
- data.tar.gz: 39f3347a9a016d85f65944b3ed842aabbfaa56c1c4c061887af475063c02a564
3
+ metadata.gz: 9cdfaf5d2ffc6decf3236e8b9e135f051fe57000b65db7143494c517e88dfabf
4
+ data.tar.gz: d6a6aa46561b57416fc32b443ea407256677b533d35c966a1ba364a3e7a895fb
5
5
  SHA512:
6
- metadata.gz: 46d3f14d9e6dcddd4846ea57a867539f70e59bf739f92dcdec96329b9dd5e3b8b62e58a93ec1be56beb8ad49a12e0e37e90b07c799373ad3d0c29a289e30136e
7
- data.tar.gz: c056ff9b1334f3858a6cc84cd7a8793a4c88e2e92e947369be3dde818f868cecb21869ff096b589bccd2acc951aebabbd08cbbc2fbf95c52ad22618e5feb739d
6
+ metadata.gz: cb22f9aa58cd2d09c1330bb849b5d975f19797c64f5c827da14cc21a1ce0c578bf97847cff9ec6c61ffd926cda0efd8ba251807bc980df90dc765a7a16ea853d
7
+ data.tar.gz: b0030cdcb845dba5a118fdc87b8469c04a995bf48da7e1e1488ce68b7ed92d5f7f46fe2509f9afafbefdeced2d188cec8eb5c43bef842026e672b566065b864f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-composer_v1beta1
2
2
 
3
+ ### v0.36.0 (2023-08-13)
4
+
5
+ * Regenerated from discovery document revision 20230806
6
+
3
7
  ### v0.35.0 (2023-05-28)
4
8
 
5
9
  * Regenerated from discovery document revision 20230516
@@ -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 in case of success. If the original
1220
- # method returns no data on success, such as `Delete`, the response is `google.
1221
- # protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`,
1222
- # the response should be the resource. For other methods, the response should
1223
- # have the type `XxxResponse`, where `Xxx` is the original method name. For
1224
- # example, if the original method name is `TakeSnapshot()`, the inferred
1225
- # response type is `TakeSnapshotResponse`.
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.35.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 = "20230516"
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.35.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-05-28 00:00:00.000000000 Z
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.35.0
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: []