google-apis-composer_v1beta1 0.35.0 → 0.37.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: e27a6589e666e6305fa3b5a6615a7c8b51e57fbc2f5b4fb3215164ba337ba319
4
+ data.tar.gz: 6c98d5de57174c23d00a15137b9219798697cc973daa6204916ebef292fbea75
5
5
  SHA512:
6
- metadata.gz: 46d3f14d9e6dcddd4846ea57a867539f70e59bf739f92dcdec96329b9dd5e3b8b62e58a93ec1be56beb8ad49a12e0e37e90b07c799373ad3d0c29a289e30136e
7
- data.tar.gz: c056ff9b1334f3858a6cc84cd7a8793a4c88e2e92e947369be3dde818f868cecb21869ff096b589bccd2acc951aebabbd08cbbc2fbf95c52ad22618e5feb739d
6
+ metadata.gz: 5e957052db382a3c42fd17f8a259f6b75961dce478f008473625c32a04f2ffc2ce45b9b9e3361c4351da93a6b9e4bf016a7d304ce6574e4b21bdeeef8a7f2a27
7
+ data.tar.gz: 9073b183bfe8cb049b00d278df6d34f36e58b2a190aa866143509627f5378a883f4119a55a2051a3e7ba4a003eb9f41c56a365d446c6d4956400aac90bed7c95
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-composer_v1beta1
2
2
 
3
+ ### v0.37.0 (2023-09-24)
4
+
5
+ * Regenerated from discovery document revision 20230917
6
+
7
+ ### v0.36.0 (2023-08-13)
8
+
9
+ * Regenerated from discovery document revision 20230806
10
+
3
11
  ### v0.35.0 (2023-05-28)
4
12
 
5
13
  * Regenerated from discovery document revision 20230516
@@ -337,11 +337,22 @@ module Google
337
337
  # @return [String]
338
338
  attr_accessor :name
339
339
 
340
+ # Output only. Reserved for future use.
341
+ # Corresponds to the JSON property `satisfiesPzs`
342
+ # @return [Boolean]
343
+ attr_accessor :satisfies_pzs
344
+ alias_method :satisfies_pzs?, :satisfies_pzs
345
+
340
346
  # The current state of the environment.
341
347
  # Corresponds to the JSON property `state`
342
348
  # @return [String]
343
349
  attr_accessor :state
344
350
 
351
+ # The configuration for data storage in the environment.
352
+ # Corresponds to the JSON property `storageConfig`
353
+ # @return [Google::Apis::ComposerV1beta1::StorageConfig]
354
+ attr_accessor :storage_config
355
+
345
356
  # Output only. The time at which this environment was last modified.
346
357
  # Corresponds to the JSON property `updateTime`
347
358
  # @return [String]
@@ -363,7 +374,9 @@ module Google
363
374
  @create_time = args[:create_time] if args.key?(:create_time)
364
375
  @labels = args[:labels] if args.key?(:labels)
365
376
  @name = args[:name] if args.key?(:name)
377
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
366
378
  @state = args[:state] if args.key?(:state)
379
+ @storage_config = args[:storage_config] if args.key?(:storage_config)
367
380
  @update_time = args[:update_time] if args.key?(:update_time)
368
381
  @uuid = args[:uuid] if args.key?(:uuid)
369
382
  end
@@ -1216,13 +1229,13 @@ module Google
1216
1229
  # @return [String]
1217
1230
  attr_accessor :name
1218
1231
 
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`.
1232
+ # The normal, successful response of the operation. If the original method
1233
+ # returns no data on success, such as `Delete`, the response is `google.protobuf.
1234
+ # Empty`. If the original method is standard `Get`/`Create`/`Update`, the
1235
+ # response should be the resource. For other methods, the response should have
1236
+ # the type `XxxResponse`, where `Xxx` is the original method name. For example,
1237
+ # if the original method name is `TakeSnapshot()`, the inferred response type is
1238
+ # `TakeSnapshotResponse`.
1226
1239
  # Corresponds to the JSON property `response`
1227
1240
  # @return [Hash<String,Object>]
1228
1241
  attr_accessor :response
@@ -1853,6 +1866,19 @@ module Google
1853
1866
  end
1854
1867
  end
1855
1868
 
1869
+ # The configuration for data storage in the environment.
1870
+ class StorageConfig
1871
+ include Google::Apis::Core::Hashable
1872
+
1873
+ def initialize(**args)
1874
+ update!(**args)
1875
+ end
1876
+
1877
+ # Update properties of this object
1878
+ def update!(**args)
1879
+ end
1880
+ end
1881
+
1856
1882
  # Configuration for resources used by Airflow triggerers.
1857
1883
  class TriggererResource
1858
1884
  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.37.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 = "20230917"
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
 
@@ -418,7 +424,10 @@ module Google
418
424
  property :create_time, as: 'createTime'
419
425
  hash :labels, as: 'labels'
420
426
  property :name, as: 'name'
427
+ property :satisfies_pzs, as: 'satisfiesPzs'
421
428
  property :state, as: 'state'
429
+ property :storage_config, as: 'storageConfig', class: Google::Apis::ComposerV1beta1::StorageConfig, decorator: Google::Apis::ComposerV1beta1::StorageConfig::Representation
430
+
422
431
  property :update_time, as: 'updateTime'
423
432
  property :uuid, as: 'uuid'
424
433
  end
@@ -775,6 +784,12 @@ module Google
775
784
  end
776
785
  end
777
786
 
787
+ class StorageConfig
788
+ # @private
789
+ class Representation < Google::Apis::Core::JsonRepresentation
790
+ end
791
+ end
792
+
778
793
  class TriggererResource
779
794
  # @private
780
795
  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.37.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-09-24 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.37.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Composer API V1beta1