google-apis-composer_v1beta1 0.32.0 → 0.34.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: 6b9b9f6cb34954cd9365671fdae6c68243d8046e8a15604ae37fff5be6a18e30
4
- data.tar.gz: 62db1c806fe24c694fa8df1dfc059e0c8aa67864bba11ba762fec15b1093b88c
3
+ metadata.gz: ea275e3933a267c1e52481b823fe3a371eefb3e51168b4fa6727c7c3cc495175
4
+ data.tar.gz: 83f3b65bd6a88f8fc556be0f7c86e68151323e6837e710ce184affd6ca94cf49
5
5
  SHA512:
6
- metadata.gz: f3086972b7fb11aaa27f3fb019ccfe3663ec90ff9eb829c62b47ce591d9baa7a0021a26fd0304ed2636ea71f3f8876c131b3a9560d03eb2cf2e60b4ee3d0127a
7
- data.tar.gz: 9b66cdd17016b96f1b30d6ca066b58837a3b7312401da2ab8fc423d2438b76714a49dce16968afa2c16e71a4e3925a72cee5c1da87432faf6271e270776fa9fd
6
+ metadata.gz: 8a03b847c8739b3932dcd27f6b14548291c85ab79c0329f7617d8e6aa12249639de761fd5cc0d1a860d746d8acf8e85dfa4da47117c7f05b4b4a82e7c2650aa1
7
+ data.tar.gz: e6868e5670829c8986d16677f19167821c946bae54385d51df090f45e125f6c963c7af12f0b1cf6cd4132fd98054990eb0fa111ae0643b11b43bb4fedf5b568e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-composer_v1beta1
2
2
 
3
+ ### v0.34.0 (2023-05-14)
4
+
5
+ * Regenerated from discovery document revision 20230510
6
+
7
+ ### v0.33.0 (2023-04-02)
8
+
9
+ * Regenerated from discovery document revision 20230323
10
+
3
11
  ### v0.32.0 (2023-03-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20230310
@@ -347,6 +347,15 @@ module Google
347
347
  class EnvironmentConfig
348
348
  include Google::Apis::Core::Hashable
349
349
 
350
+ # Output only. The 'bring your own identity' variant of the URI of the Apache
351
+ # Airflow Web UI hosted within this environment, to be accessed with external
352
+ # identities using workforce identity federation (see [Access environments with
353
+ # workforce identity federation](/composer/docs/composer-2/access-environments-
354
+ # with-workforce-identity-federation)).
355
+ # Corresponds to the JSON property `airflowByoidUri`
356
+ # @return [String]
357
+ attr_accessor :airflow_byoid_uri
358
+
350
359
  # Output only. The URI of the Apache Airflow Web UI hosted within this
351
360
  # environment (see [Airflow web interface](/composer/docs/how-to/accessing/
352
361
  # airflow-web-interface)).
@@ -458,6 +467,7 @@ module Google
458
467
 
459
468
  # Update properties of this object
460
469
  def update!(**args)
470
+ @airflow_byoid_uri = args[:airflow_byoid_uri] if args.key?(:airflow_byoid_uri)
461
471
  @airflow_uri = args[:airflow_uri] if args.key?(:airflow_uri)
462
472
  @dag_gcs_prefix = args[:dag_gcs_prefix] if args.key?(:dag_gcs_prefix)
463
473
  @database_config = args[:database_config] if args.key?(:database_config)
@@ -477,68 +487,6 @@ module Google
477
487
  end
478
488
  end
479
489
 
480
- # Response to ExecuteAirflowCommandRequest.
481
- class ExecuteAirflowCommandResponse
482
- include Google::Apis::Core::Hashable
483
-
484
- # Error message. Empty if there was no error.
485
- # Corresponds to the JSON property `error`
486
- # @return [String]
487
- attr_accessor :error
488
-
489
- # The unique ID of the command execution for polling.
490
- # Corresponds to the JSON property `executionId`
491
- # @return [String]
492
- attr_accessor :execution_id
493
-
494
- # The name of the pod where the command is executed.
495
- # Corresponds to the JSON property `pod`
496
- # @return [String]
497
- attr_accessor :pod
498
-
499
- # The namespace of the pod where the command is executed.
500
- # Corresponds to the JSON property `podNamespace`
501
- # @return [String]
502
- attr_accessor :pod_namespace
503
-
504
- def initialize(**args)
505
- update!(**args)
506
- end
507
-
508
- # Update properties of this object
509
- def update!(**args)
510
- @error = args[:error] if args.key?(:error)
511
- @execution_id = args[:execution_id] if args.key?(:execution_id)
512
- @pod = args[:pod] if args.key?(:pod)
513
- @pod_namespace = args[:pod_namespace] if args.key?(:pod_namespace)
514
- end
515
- end
516
-
517
- # Information about how a command ended.
518
- class ExitInfo
519
- include Google::Apis::Core::Hashable
520
-
521
- # Error message. Empty if there was no error.
522
- # Corresponds to the JSON property `error`
523
- # @return [String]
524
- attr_accessor :error
525
-
526
- # The exit code from the command execution.
527
- # Corresponds to the JSON property `exitCode`
528
- # @return [Fixnum]
529
- attr_accessor :exit_code
530
-
531
- def initialize(**args)
532
- update!(**args)
533
- end
534
-
535
- # Update properties of this object
536
- def update!(**args)
537
- @error = args[:error] if args.key?(:error)
538
- @exit_code = args[:exit_code] if args.key?(:exit_code)
539
- end
540
- end
541
-
542
490
  # Configuration for controlling how IPs are allocated in the GKE cluster.
543
491
  class IpAllocationPolicy
544
492
  include Google::Apis::Core::Hashable
@@ -672,31 +620,6 @@ module Google
672
620
  end
673
621
  end
674
622
 
675
- # Contains information about a single line from logs.
676
- class Line
677
- include Google::Apis::Core::Hashable
678
-
679
- # Text content of the log line.
680
- # Corresponds to the JSON property `content`
681
- # @return [String]
682
- attr_accessor :content
683
-
684
- # Number of the line.
685
- # Corresponds to the JSON property `lineNumber`
686
- # @return [Fixnum]
687
- attr_accessor :line_number
688
-
689
- def initialize(**args)
690
- update!(**args)
691
- end
692
-
693
- # Update properties of this object
694
- def update!(**args)
695
- @content = args[:content] if args.key?(:content)
696
- @line_number = args[:line_number] if args.key?(:line_number)
697
- end
698
- end
699
-
700
623
  # The environments in a project and location.
701
624
  class ListEnvironmentsResponse
702
625
  include Google::Apis::Core::Hashable
@@ -1180,39 +1103,6 @@ module Google
1180
1103
  end
1181
1104
  end
1182
1105
 
1183
- # Response to PollAirflowCommandRequest.
1184
- class PollAirflowCommandResponse
1185
- include Google::Apis::Core::Hashable
1186
-
1187
- # Information about how a command ended.
1188
- # Corresponds to the JSON property `exitInfo`
1189
- # @return [Google::Apis::ComposerV1beta1::ExitInfo]
1190
- attr_accessor :exit_info
1191
-
1192
- # Output from the command execution. It may not contain the full output and the
1193
- # caller may need to poll for more lines.
1194
- # Corresponds to the JSON property `output`
1195
- # @return [Array<Google::Apis::ComposerV1beta1::Line>]
1196
- attr_accessor :output
1197
-
1198
- # Whether the command execution has finished and there is no more output.
1199
- # Corresponds to the JSON property `outputEnd`
1200
- # @return [Boolean]
1201
- attr_accessor :output_end
1202
- alias_method :output_end?, :output_end
1203
-
1204
- def initialize(**args)
1205
- update!(**args)
1206
- end
1207
-
1208
- # Update properties of this object
1209
- def update!(**args)
1210
- @exit_info = args[:exit_info] if args.key?(:exit_info)
1211
- @output = args[:output] if args.key?(:output)
1212
- @output_end = args[:output_end] if args.key?(:output_end)
1213
- end
1214
- end
1215
-
1216
1106
  # Configuration options for the private GKE cluster in a Cloud Composer
1217
1107
  # environment.
1218
1108
  class PrivateClusterConfig
@@ -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.32.0"
19
+ GEM_VERSION = "0.34.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 = "20230310"
25
+ REVISION = "20230510"
26
26
  end
27
27
  end
28
28
  end
@@ -88,18 +88,6 @@ module Google
88
88
  include Google::Apis::Core::JsonObjectSupport
89
89
  end
90
90
 
91
- class ExecuteAirflowCommandResponse
92
- class Representation < Google::Apis::Core::JsonRepresentation; end
93
-
94
- include Google::Apis::Core::JsonObjectSupport
95
- end
96
-
97
- class ExitInfo
98
- class Representation < Google::Apis::Core::JsonRepresentation; end
99
-
100
- include Google::Apis::Core::JsonObjectSupport
101
- end
102
-
103
91
  class IpAllocationPolicy
104
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
93
 
@@ -112,12 +100,6 @@ module Google
112
100
  include Google::Apis::Core::JsonObjectSupport
113
101
  end
114
102
 
115
- class Line
116
- class Representation < Google::Apis::Core::JsonRepresentation; end
117
-
118
- include Google::Apis::Core::JsonObjectSupport
119
- end
120
-
121
103
  class ListEnvironmentsResponse
122
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
105
 
@@ -184,12 +166,6 @@ module Google
184
166
  include Google::Apis::Core::JsonObjectSupport
185
167
  end
186
168
 
187
- class PollAirflowCommandResponse
188
- class Representation < Google::Apis::Core::JsonRepresentation; end
189
-
190
- include Google::Apis::Core::JsonObjectSupport
191
- end
192
-
193
169
  class PrivateClusterConfig
194
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
171
 
@@ -373,6 +349,7 @@ module Google
373
349
  class EnvironmentConfig
374
350
  # @private
375
351
  class Representation < Google::Apis::Core::JsonRepresentation
352
+ property :airflow_byoid_uri, as: 'airflowByoidUri'
376
353
  property :airflow_uri, as: 'airflowUri'
377
354
  property :dag_gcs_prefix, as: 'dagGcsPrefix'
378
355
  property :database_config, as: 'databaseConfig', class: Google::Apis::ComposerV1beta1::DatabaseConfig, decorator: Google::Apis::ComposerV1beta1::DatabaseConfig::Representation
@@ -403,24 +380,6 @@ module Google
403
380
  end
404
381
  end
405
382
 
406
- class ExecuteAirflowCommandResponse
407
- # @private
408
- class Representation < Google::Apis::Core::JsonRepresentation
409
- property :error, as: 'error'
410
- property :execution_id, as: 'executionId'
411
- property :pod, as: 'pod'
412
- property :pod_namespace, as: 'podNamespace'
413
- end
414
- end
415
-
416
- class ExitInfo
417
- # @private
418
- class Representation < Google::Apis::Core::JsonRepresentation
419
- property :error, as: 'error'
420
- property :exit_code, as: 'exitCode'
421
- end
422
- end
423
-
424
383
  class IpAllocationPolicy
425
384
  # @private
426
385
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -445,14 +404,6 @@ module Google
445
404
  end
446
405
  end
447
406
 
448
- class Line
449
- # @private
450
- class Representation < Google::Apis::Core::JsonRepresentation
451
- property :content, as: 'content'
452
- property :line_number, as: 'lineNumber'
453
- end
454
- end
455
-
456
407
  class ListEnvironmentsResponse
457
408
  # @private
458
409
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -564,17 +515,6 @@ module Google
564
515
  end
565
516
  end
566
517
 
567
- class PollAirflowCommandResponse
568
- # @private
569
- class Representation < Google::Apis::Core::JsonRepresentation
570
- property :exit_info, as: 'exitInfo', class: Google::Apis::ComposerV1beta1::ExitInfo, decorator: Google::Apis::ComposerV1beta1::ExitInfo::Representation
571
-
572
- collection :output, as: 'output', class: Google::Apis::ComposerV1beta1::Line, decorator: Google::Apis::ComposerV1beta1::Line::Representation
573
-
574
- property :output_end, as: 'outputEnd'
575
- end
576
- end
577
-
578
518
  class PrivateClusterConfig
579
519
  # @private
580
520
  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.32.0
4
+ version: 0.34.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-03-19 00:00:00.000000000 Z
11
+ date: 2023-05-14 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.32.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.34.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: []