google-apis-composer_v1beta1 0.33.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: ee441ea841e6496ce2bbfbab67696effb6109deaf35ab8150723ab2012267824
4
- data.tar.gz: d94873bb1729e186ffb6ce0d947beb58eca8499fb27b230f6bcb38964c395b2a
3
+ metadata.gz: ea275e3933a267c1e52481b823fe3a371eefb3e51168b4fa6727c7c3cc495175
4
+ data.tar.gz: 83f3b65bd6a88f8fc556be0f7c86e68151323e6837e710ce184affd6ca94cf49
5
5
  SHA512:
6
- metadata.gz: c418fb5deec92a7396a4caf0d7dfc79539574246f13d059d97c2962d88a75cf0946df432e58212b09f12e3eeff3ca74b12608f5871bd4e8361b3b09b2570a0fa
7
- data.tar.gz: e98966e22f972f55e047c4bf71e1d58fce76ac5bb1bbf013f2b888067f796ebc507954b56b75eb087985943a173303655759971aa8e8e209cb72204828a9aa20
6
+ metadata.gz: 8a03b847c8739b3932dcd27f6b14548291c85ab79c0329f7617d8e6aa12249639de761fd5cc0d1a860d746d8acf8e85dfa4da47117c7f05b4b4a82e7c2650aa1
7
+ data.tar.gz: e6868e5670829c8986d16677f19167821c946bae54385d51df090f45e125f6c963c7af12f0b1cf6cd4132fd98054990eb0fa111ae0643b11b43bb4fedf5b568e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.33.0 (2023-04-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20230323
@@ -487,68 +487,6 @@ module Google
487
487
  end
488
488
  end
489
489
 
490
- # Response to ExecuteAirflowCommandRequest.
491
- class ExecuteAirflowCommandResponse
492
- include Google::Apis::Core::Hashable
493
-
494
- # Error message. Empty if there was no error.
495
- # Corresponds to the JSON property `error`
496
- # @return [String]
497
- attr_accessor :error
498
-
499
- # The unique ID of the command execution for polling.
500
- # Corresponds to the JSON property `executionId`
501
- # @return [String]
502
- attr_accessor :execution_id
503
-
504
- # The name of the pod where the command is executed.
505
- # Corresponds to the JSON property `pod`
506
- # @return [String]
507
- attr_accessor :pod
508
-
509
- # The namespace of the pod where the command is executed.
510
- # Corresponds to the JSON property `podNamespace`
511
- # @return [String]
512
- attr_accessor :pod_namespace
513
-
514
- def initialize(**args)
515
- update!(**args)
516
- end
517
-
518
- # Update properties of this object
519
- def update!(**args)
520
- @error = args[:error] if args.key?(:error)
521
- @execution_id = args[:execution_id] if args.key?(:execution_id)
522
- @pod = args[:pod] if args.key?(:pod)
523
- @pod_namespace = args[:pod_namespace] if args.key?(:pod_namespace)
524
- end
525
- end
526
-
527
- # Information about how a command ended.
528
- class ExitInfo
529
- include Google::Apis::Core::Hashable
530
-
531
- # Error message. Empty if there was no error.
532
- # Corresponds to the JSON property `error`
533
- # @return [String]
534
- attr_accessor :error
535
-
536
- # The exit code from the command execution.
537
- # Corresponds to the JSON property `exitCode`
538
- # @return [Fixnum]
539
- attr_accessor :exit_code
540
-
541
- def initialize(**args)
542
- update!(**args)
543
- end
544
-
545
- # Update properties of this object
546
- def update!(**args)
547
- @error = args[:error] if args.key?(:error)
548
- @exit_code = args[:exit_code] if args.key?(:exit_code)
549
- end
550
- end
551
-
552
490
  # Configuration for controlling how IPs are allocated in the GKE cluster.
553
491
  class IpAllocationPolicy
554
492
  include Google::Apis::Core::Hashable
@@ -682,31 +620,6 @@ module Google
682
620
  end
683
621
  end
684
622
 
685
- # Contains information about a single line from logs.
686
- class Line
687
- include Google::Apis::Core::Hashable
688
-
689
- # Text content of the log line.
690
- # Corresponds to the JSON property `content`
691
- # @return [String]
692
- attr_accessor :content
693
-
694
- # Number of the line.
695
- # Corresponds to the JSON property `lineNumber`
696
- # @return [Fixnum]
697
- attr_accessor :line_number
698
-
699
- def initialize(**args)
700
- update!(**args)
701
- end
702
-
703
- # Update properties of this object
704
- def update!(**args)
705
- @content = args[:content] if args.key?(:content)
706
- @line_number = args[:line_number] if args.key?(:line_number)
707
- end
708
- end
709
-
710
623
  # The environments in a project and location.
711
624
  class ListEnvironmentsResponse
712
625
  include Google::Apis::Core::Hashable
@@ -1190,39 +1103,6 @@ module Google
1190
1103
  end
1191
1104
  end
1192
1105
 
1193
- # Response to PollAirflowCommandRequest.
1194
- class PollAirflowCommandResponse
1195
- include Google::Apis::Core::Hashable
1196
-
1197
- # Information about how a command ended.
1198
- # Corresponds to the JSON property `exitInfo`
1199
- # @return [Google::Apis::ComposerV1beta1::ExitInfo]
1200
- attr_accessor :exit_info
1201
-
1202
- # Output from the command execution. It may not contain the full output and the
1203
- # caller may need to poll for more lines.
1204
- # Corresponds to the JSON property `output`
1205
- # @return [Array<Google::Apis::ComposerV1beta1::Line>]
1206
- attr_accessor :output
1207
-
1208
- # Whether the command execution has finished and there is no more output.
1209
- # Corresponds to the JSON property `outputEnd`
1210
- # @return [Boolean]
1211
- attr_accessor :output_end
1212
- alias_method :output_end?, :output_end
1213
-
1214
- def initialize(**args)
1215
- update!(**args)
1216
- end
1217
-
1218
- # Update properties of this object
1219
- def update!(**args)
1220
- @exit_info = args[:exit_info] if args.key?(:exit_info)
1221
- @output = args[:output] if args.key?(:output)
1222
- @output_end = args[:output_end] if args.key?(:output_end)
1223
- end
1224
- end
1225
-
1226
1106
  # Configuration options for the private GKE cluster in a Cloud Composer
1227
1107
  # environment.
1228
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.33.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 = "20230323"
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
 
@@ -404,24 +380,6 @@ module Google
404
380
  end
405
381
  end
406
382
 
407
- class ExecuteAirflowCommandResponse
408
- # @private
409
- class Representation < Google::Apis::Core::JsonRepresentation
410
- property :error, as: 'error'
411
- property :execution_id, as: 'executionId'
412
- property :pod, as: 'pod'
413
- property :pod_namespace, as: 'podNamespace'
414
- end
415
- end
416
-
417
- class ExitInfo
418
- # @private
419
- class Representation < Google::Apis::Core::JsonRepresentation
420
- property :error, as: 'error'
421
- property :exit_code, as: 'exitCode'
422
- end
423
- end
424
-
425
383
  class IpAllocationPolicy
426
384
  # @private
427
385
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -446,14 +404,6 @@ module Google
446
404
  end
447
405
  end
448
406
 
449
- class Line
450
- # @private
451
- class Representation < Google::Apis::Core::JsonRepresentation
452
- property :content, as: 'content'
453
- property :line_number, as: 'lineNumber'
454
- end
455
- end
456
-
457
407
  class ListEnvironmentsResponse
458
408
  # @private
459
409
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -565,17 +515,6 @@ module Google
565
515
  end
566
516
  end
567
517
 
568
- class PollAirflowCommandResponse
569
- # @private
570
- class Representation < Google::Apis::Core::JsonRepresentation
571
- property :exit_info, as: 'exitInfo', class: Google::Apis::ComposerV1beta1::ExitInfo, decorator: Google::Apis::ComposerV1beta1::ExitInfo::Representation
572
-
573
- collection :output, as: 'output', class: Google::Apis::ComposerV1beta1::Line, decorator: Google::Apis::ComposerV1beta1::Line::Representation
574
-
575
- property :output_end, as: 'outputEnd'
576
- end
577
- end
578
-
579
518
  class PrivateClusterConfig
580
519
  # @private
581
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.33.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-04-02 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.33.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: []