google-apis-composer_v1 0.37.0 → 0.39.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: 593f3f20b15522ccaea83d6aa02ce7c17422d252cf8c66e88ede20ab2ceae9d4
4
- data.tar.gz: f5f6836c014b0ded208e6fd439764f255b2d5775665c072ef305063de58dc95e
3
+ metadata.gz: f90de29b600834d7298250429e6b96ffbdb3a55dc0cc031d5dee5a05b3ce85cb
4
+ data.tar.gz: b6a31aa3c3ea607c15b9c2505f4f68784e7dc19e2facde6f602f12f9def9d9eb
5
5
  SHA512:
6
- metadata.gz: 261447cb2e19068040f27b9113dd38649d8fdd15dd90f00c78bb02f93b83545e3bcf695ee6cb058b2459810ee5b1a88f2667720ca39ce647714a92802caff73f
7
- data.tar.gz: 0d50ffcf8cbaba2edef3b89d8a0fabfbb475d8012b7d727acf11868473b736886710c522ae79ff4e522dc94e8a2529e1978853ed67556a2f9e0731e3e4ac8721
6
+ metadata.gz: 9b3c058f41eadf50610594cb0769a325c9d5ca2344d690a3670b5fdc1a351c59964a5282aeacb95736dc2a3b94624738df376897893d3ef3c9fb805c4645a949
7
+ data.tar.gz: d4f0f656f3ef0dc3a9d73088f0c1385d130d708215c43e409a55d62c26aa600c16281de32d4e9ed43a16edec530d25b246c15156be6cc52278b76307f09df166
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-composer_v1
2
2
 
3
+ ### v0.39.0 (2023-09-24)
4
+
5
+ * Regenerated from discovery document revision 20230917
6
+
7
+ ### v0.38.0 (2023-09-17)
8
+
9
+ * Regenerated from discovery document revision 20230906
10
+
3
11
  ### v0.37.0 (2023-08-13)
4
12
 
5
13
  * Regenerated from discovery document revision 20230806
@@ -281,11 +281,22 @@ module Google
281
281
  # @return [String]
282
282
  attr_accessor :name
283
283
 
284
+ # Output only. Reserved for future use.
285
+ # Corresponds to the JSON property `satisfiesPzs`
286
+ # @return [Boolean]
287
+ attr_accessor :satisfies_pzs
288
+ alias_method :satisfies_pzs?, :satisfies_pzs
289
+
284
290
  # The current state of the environment.
285
291
  # Corresponds to the JSON property `state`
286
292
  # @return [String]
287
293
  attr_accessor :state
288
294
 
295
+ # The configuration for data storage in the environment.
296
+ # Corresponds to the JSON property `storageConfig`
297
+ # @return [Google::Apis::ComposerV1::StorageConfig]
298
+ attr_accessor :storage_config
299
+
289
300
  # Output only. The time at which this environment was last modified.
290
301
  # Corresponds to the JSON property `updateTime`
291
302
  # @return [String]
@@ -307,7 +318,9 @@ module Google
307
318
  @create_time = args[:create_time] if args.key?(:create_time)
308
319
  @labels = args[:labels] if args.key?(:labels)
309
320
  @name = args[:name] if args.key?(:name)
321
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
310
322
  @state = args[:state] if args.key?(:state)
323
+ @storage_config = args[:storage_config] if args.key?(:storage_config)
311
324
  @update_time = args[:update_time] if args.key?(:update_time)
312
325
  @uuid = args[:uuid] if args.key?(:uuid)
313
326
  end
@@ -1761,6 +1774,50 @@ module Google
1761
1774
  end
1762
1775
  end
1763
1776
 
1777
+ # The configuration for data storage in the environment.
1778
+ class StorageConfig
1779
+ include Google::Apis::Core::Hashable
1780
+
1781
+ def initialize(**args)
1782
+ update!(**args)
1783
+ end
1784
+
1785
+ # Update properties of this object
1786
+ def update!(**args)
1787
+ end
1788
+ end
1789
+
1790
+ # Configuration for resources used by Airflow triggerers.
1791
+ class TriggererResource
1792
+ include Google::Apis::Core::Hashable
1793
+
1794
+ # Optional. The number of triggerers.
1795
+ # Corresponds to the JSON property `count`
1796
+ # @return [Fixnum]
1797
+ attr_accessor :count
1798
+
1799
+ # Optional. CPU request and limit for a single Airflow triggerer replica.
1800
+ # Corresponds to the JSON property `cpu`
1801
+ # @return [Float]
1802
+ attr_accessor :cpu
1803
+
1804
+ # Optional. Memory (GB) request and limit for a single Airflow triggerer replica.
1805
+ # Corresponds to the JSON property `memoryGb`
1806
+ # @return [Float]
1807
+ attr_accessor :memory_gb
1808
+
1809
+ def initialize(**args)
1810
+ update!(**args)
1811
+ end
1812
+
1813
+ # Update properties of this object
1814
+ def update!(**args)
1815
+ @count = args[:count] if args.key?(:count)
1816
+ @cpu = args[:cpu] if args.key?(:cpu)
1817
+ @memory_gb = args[:memory_gb] if args.key?(:memory_gb)
1818
+ end
1819
+ end
1820
+
1764
1821
  # The configuration settings for the Airflow web server App Engine instance.
1765
1822
  # Supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.
1766
1823
  # *.*
@@ -1890,6 +1947,11 @@ module Google
1890
1947
  # @return [Google::Apis::ComposerV1::SchedulerResource]
1891
1948
  attr_accessor :scheduler
1892
1949
 
1950
+ # Configuration for resources used by Airflow triggerers.
1951
+ # Corresponds to the JSON property `triggerer`
1952
+ # @return [Google::Apis::ComposerV1::TriggererResource]
1953
+ attr_accessor :triggerer
1954
+
1893
1955
  # Configuration for resources used by Airflow web server.
1894
1956
  # Corresponds to the JSON property `webServer`
1895
1957
  # @return [Google::Apis::ComposerV1::WebServerResource]
@@ -1907,6 +1969,7 @@ module Google
1907
1969
  # Update properties of this object
1908
1970
  def update!(**args)
1909
1971
  @scheduler = args[:scheduler] if args.key?(:scheduler)
1972
+ @triggerer = args[:triggerer] if args.key?(:triggerer)
1910
1973
  @web_server = args[:web_server] if args.key?(:web_server)
1911
1974
  @worker = args[:worker] if args.key?(:worker)
1912
1975
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComposerV1
18
18
  # Version of the google-apis-composer_v1 gem
19
- GEM_VERSION = "0.37.0"
19
+ GEM_VERSION = "0.39.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 = "20230806"
25
+ REVISION = "20230917"
26
26
  end
27
27
  end
28
28
  end
@@ -274,6 +274,18 @@ module Google
274
274
  include Google::Apis::Core::JsonObjectSupport
275
275
  end
276
276
 
277
+ class StorageConfig
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
283
+ class TriggererResource
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
277
289
  class WebServerConfig
278
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
291
 
@@ -380,7 +392,10 @@ module Google
380
392
  property :create_time, as: 'createTime'
381
393
  hash :labels, as: 'labels'
382
394
  property :name, as: 'name'
395
+ property :satisfies_pzs, as: 'satisfiesPzs'
383
396
  property :state, as: 'state'
397
+ property :storage_config, as: 'storageConfig', class: Google::Apis::ComposerV1::StorageConfig, decorator: Google::Apis::ComposerV1::StorageConfig::Representation
398
+
384
399
  property :update_time, as: 'updateTime'
385
400
  property :uuid, as: 'uuid'
386
401
  end
@@ -728,6 +743,21 @@ module Google
728
743
  end
729
744
  end
730
745
 
746
+ class StorageConfig
747
+ # @private
748
+ class Representation < Google::Apis::Core::JsonRepresentation
749
+ end
750
+ end
751
+
752
+ class TriggererResource
753
+ # @private
754
+ class Representation < Google::Apis::Core::JsonRepresentation
755
+ property :count, as: 'count'
756
+ property :cpu, as: 'cpu'
757
+ property :memory_gb, as: 'memoryGb'
758
+ end
759
+ end
760
+
731
761
  class WebServerConfig
732
762
  # @private
733
763
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -768,6 +798,8 @@ module Google
768
798
  class Representation < Google::Apis::Core::JsonRepresentation
769
799
  property :scheduler, as: 'scheduler', class: Google::Apis::ComposerV1::SchedulerResource, decorator: Google::Apis::ComposerV1::SchedulerResource::Representation
770
800
 
801
+ property :triggerer, as: 'triggerer', class: Google::Apis::ComposerV1::TriggererResource, decorator: Google::Apis::ComposerV1::TriggererResource::Representation
802
+
771
803
  property :web_server, as: 'webServer', class: Google::Apis::ComposerV1::WebServerResource, decorator: Google::Apis::ComposerV1::WebServerResource::Representation
772
804
 
773
805
  property :worker, as: 'worker', class: Google::Apis::ComposerV1::WorkerResource, decorator: Google::Apis::ComposerV1::WorkerResource::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-composer_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.37.0
4
+ version: 0.39.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-08-13 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1/v0.37.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1/v0.39.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-composer_v1
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 V1