google-apis-composer_v1beta1 0.59.0 → 0.61.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: c56cc3fee83d10031c5f56608ddae7f3297cd63e7b63428bff7b2f305149211c
4
- data.tar.gz: c897f70b5fc454155e2551e60320c43edb4aab8c37dc1d02ddf2b56610fd487a
3
+ metadata.gz: 29ebcbdacd95bbaf9719b40623c245611e5e1b12adb076146f41dbeef2c707a4
4
+ data.tar.gz: f3a23b6c68ba5371eb0a3b8379c6c29a561c42c778bc973f4213d77bcd5308bb
5
5
  SHA512:
6
- metadata.gz: 78ce3a015fd6cfd2d8610c67632d9b7d39bbd346e77ec632724300f48d44094a82e03f11fe3070954bec04268a702fedd8b49bfbd1efdcafb05fcd63278c6af1
7
- data.tar.gz: 3564169b01b12e516c4829e124a70961db1f5cf84c6907a50aad73c4ab5b1ce4cf8e7433bc7e7700a5950fbc0fb6b571983caa47ed5b629ccf5a9f596bffbe11
6
+ metadata.gz: bb83f3edc91592ff4cc34ab7e7e22328f8487c2d0ec2d6327dde0a57eba05f945752226073a9f80f100844bea8656c27cdec33f1fda4f961615c3213c88da62a
7
+ data.tar.gz: 84cc4bd64bca99e8f5dcfaecab8e6236ae01e593f67fe2de4d4d046b099f7dcdfd60aa733a22e5f5e1749d92972799e3fe710bb15a95fb7bf96c5ee03cd30cba
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-composer_v1beta1
2
2
 
3
+ ### v0.61.0 (2026-06-14)
4
+
5
+ * Regenerated from discovery document revision 20260525
6
+ * Regenerated using generator version 0.19.0
7
+
8
+ ### v0.60.0 (2026-05-10)
9
+
10
+ * Regenerated from discovery document revision 20260423
11
+
3
12
  ### v0.59.0 (2026-04-19)
4
13
 
5
14
  * Regenerated from discovery document revision 20260325
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/composer/) may provide guid
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 3.1+.
86
+ This library is supported on Ruby 3.2+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -1497,6 +1497,12 @@ module Google
1497
1497
  # @return [Array<String>]
1498
1498
  attr_accessor :tags
1499
1499
 
1500
+ # Configuration for network traffic routing from the Cloud Composer environment
1501
+ # to other services.
1502
+ # Corresponds to the JSON property `trafficRoutingConfig`
1503
+ # @return [Google::Apis::ComposerV1beta1::TrafficRoutingConfig]
1504
+ attr_accessor :traffic_routing_config
1505
+
1500
1506
  def initialize(**args)
1501
1507
  update!(**args)
1502
1508
  end
@@ -1516,6 +1522,7 @@ module Google
1516
1522
  @service_account = args[:service_account] if args.key?(:service_account)
1517
1523
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
1518
1524
  @tags = args[:tags] if args.key?(:tags)
1525
+ @traffic_routing_config = args[:traffic_routing_config] if args.key?(:traffic_routing_config)
1519
1526
  end
1520
1527
  end
1521
1528
 
@@ -2260,6 +2267,26 @@ module Google
2260
2267
  end
2261
2268
  end
2262
2269
 
2270
+ # Configuration for network traffic routing from the Cloud Composer environment
2271
+ # to other services.
2272
+ class TrafficRoutingConfig
2273
+ include Google::Apis::Core::Hashable
2274
+
2275
+ # Optional. Controls how network traffic to Cloud Run functions is routed.
2276
+ # Corresponds to the JSON property `cloudRunFunctionsRouting`
2277
+ # @return [String]
2278
+ attr_accessor :cloud_run_functions_routing
2279
+
2280
+ def initialize(**args)
2281
+ update!(**args)
2282
+ end
2283
+
2284
+ # Update properties of this object
2285
+ def update!(**args)
2286
+ @cloud_run_functions_routing = args[:cloud_run_functions_routing] if args.key?(:cloud_run_functions_routing)
2287
+ end
2288
+ end
2289
+
2263
2290
  # Configuration for resources used by Airflow triggerers.
2264
2291
  class TriggererResource
2265
2292
  include Google::Apis::Core::Hashable
@@ -2343,6 +2370,12 @@ module Google
2343
2370
  # @return [String]
2344
2371
  attr_accessor :name
2345
2372
 
2373
+ # Optional. The "type" field of Kubernetes Secret. For details see: https://
2374
+ # kubernetes.io/docs/concepts/configuration/secret/#secret-types
2375
+ # Corresponds to the JSON property `type`
2376
+ # @return [String]
2377
+ attr_accessor :type
2378
+
2346
2379
  def initialize(**args)
2347
2380
  update!(**args)
2348
2381
  end
@@ -2351,6 +2384,7 @@ module Google
2351
2384
  def update!(**args)
2352
2385
  @data = args[:data] if args.key?(:data)
2353
2386
  @name = args[:name] if args.key?(:name)
2387
+ @type = args[:type] if args.key?(:type)
2354
2388
  end
2355
2389
  end
2356
2390
 
@@ -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.59.0"
19
+ GEM_VERSION = "0.61.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.18.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260325"
25
+ REVISION = "20260525"
26
26
  end
27
27
  end
28
28
  end
@@ -358,6 +358,12 @@ module Google
358
358
  include Google::Apis::Core::JsonObjectSupport
359
359
  end
360
360
 
361
+ class TrafficRoutingConfig
362
+ class Representation < Google::Apis::Core::JsonRepresentation; end
363
+
364
+ include Google::Apis::Core::JsonObjectSupport
365
+ end
366
+
361
367
  class TriggererResource
362
368
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
369
 
@@ -784,6 +790,8 @@ module Google
784
790
  property :service_account, as: 'serviceAccount'
785
791
  property :subnetwork, as: 'subnetwork'
786
792
  collection :tags, as: 'tags'
793
+ property :traffic_routing_config, as: 'trafficRoutingConfig', class: Google::Apis::ComposerV1beta1::TrafficRoutingConfig, decorator: Google::Apis::ComposerV1beta1::TrafficRoutingConfig::Representation
794
+
787
795
  end
788
796
  end
789
797
 
@@ -965,6 +973,13 @@ module Google
965
973
  end
966
974
  end
967
975
 
976
+ class TrafficRoutingConfig
977
+ # @private
978
+ class Representation < Google::Apis::Core::JsonRepresentation
979
+ property :cloud_run_functions_routing, as: 'cloudRunFunctionsRouting'
980
+ end
981
+ end
982
+
968
983
  class TriggererResource
969
984
  # @private
970
985
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -987,6 +1002,7 @@ module Google
987
1002
  class Representation < Google::Apis::Core::JsonRepresentation
988
1003
  hash :data, as: 'data'
989
1004
  property :name, as: 'name'
1005
+ property :type, as: 'type'
990
1006
  end
991
1007
  end
992
1008
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-composer_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.59.0
4
+ version: 0.61.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-composer_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.59.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.61.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-composer_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '3.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="