google-apis-composer_v1beta1 0.58.0 → 0.60.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: a8787fa2fa8eaa64aaa87b531b2a5e2a76d14cf84a3cd9c565562c543bb02081
4
- data.tar.gz: b7154f629d990164128dd10a0bf8bfffe8c337812d7a2c89795e3ad07b406e21
3
+ metadata.gz: f77e7aec062c9cdf9e6c3906843ba0877224b42b327a4232f653463acdb52ae5
4
+ data.tar.gz: c95f27b30a21f786c3036f548a5caabd6ffbacfca889e6b88b0e2633f63a0464
5
5
  SHA512:
6
- metadata.gz: 44e13cbf8e9565a804795780358639969d6d324f693a0ad70d35327fe8de0526794e72f68a3b60711d1a84c77ee3e22c9fb6466d41bf35eb3202865ae89442c6
7
- data.tar.gz: 38c10c1f1d2631119452b1214643229cfccdf5a37efa17a5a27f60a5e20526207b1c3009ac44eb3b99d17a626757144ffe7c96134286e45cf501e91446b37b2f
6
+ metadata.gz: 55b117137fbb91acc04b8f3da20571240e2af77e6d473684139f34341874ceac7e8ac2c8b3c443c48b5806464f1f7b362c1c216d16580d6f25432db75fa96809
7
+ data.tar.gz: c3cf9fa0874cc647336676e1718b0a0d621f7b4a457794e308e1b8dd49226e21a4ca964177ed390991e087a3104e6b074e61b8f6d6bb4db76c3866bb49b89b31
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-composer_v1beta1
2
2
 
3
+ ### v0.60.0 (2026-05-10)
4
+
5
+ * Regenerated from discovery document revision 20260423
6
+
7
+ ### v0.59.0 (2026-04-19)
8
+
9
+ * Regenerated from discovery document revision 20260325
10
+
3
11
  ### v0.58.0 (2026-03-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20260219
@@ -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
@@ -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.58.0"
19
+ GEM_VERSION = "0.60.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260219"
25
+ REVISION = "20260423"
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
@@ -34,6 +34,9 @@ module Google
34
34
 
35
35
  # See, edit, configure, and delete your Google Cloud Composer data and see the email address for your Google Account
36
36
  AUTH_CLOUDCOMPOSER = 'https://www.googleapis.com/auth/cloudcomposer'
37
+
38
+ # See your Google Cloud Composer data and the email address of your Google Account
39
+ AUTH_CLOUDCOMPOSER_READONLY = 'https://www.googleapis.com/auth/cloudcomposer.readonly'
37
40
  end
38
41
  end
39
42
  end
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.58.0
4
+ version: 0.60.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.58.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.60.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: