google-apis-composer_v1beta1 0.16.0 → 0.19.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: 26728918f871af2b106342f96e570606002631848f46d48efe74e8a7be093bd4
4
- data.tar.gz: 4814e47ff25be828c777f51484df0a1eae0f6c34df0d94d414432d2622052500
3
+ metadata.gz: 47c40323a7d7bf49a573afeff1bf339cf1690d7877a4172e7146b9d779602557
4
+ data.tar.gz: ba13603324ef2d2df15341d7b66de651e4dd27ad2aa0a43223b2b1b008d01bd9
5
5
  SHA512:
6
- metadata.gz: 75760e6e9521e07b26715736e2072a69908d7f43eefd2e73954b168e4ff79b630ba8178d2583cd0694e59f1c492948cbf6615def83a642ad5116e570dfd465c1
7
- data.tar.gz: 8e77d76d3d9e6ec185af11e5cbf0ae37b9fcfa059e99db8e4409a478873d9e17a9c99f202ec8e42df0646b3bcd5cac25c119f233a20edc5cbbf63eb5f9a3edb1
6
+ metadata.gz: '09a06c87f371f9301340dfc08aff21ec2368fbf1e594abaa721fd9594dd03f8ae266f93bb4111c9abdca1c5623e2b46f99e3af1374495995a643eea6a61d6d36'
7
+ data.tar.gz: 0b951025da8c8c030e14636d64ef37f6255b41c6812d492d95294a68cc450626c48ea321d9a30c92bb110ca080fec2513d45ece24a4cb20c010dbe8e53aee9a7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-composer_v1beta1
2
2
 
3
+ ### v0.19.0 (2022-03-04)
4
+
5
+ * Regenerated from discovery document revision 20220224
6
+
7
+ ### v0.18.0 (2022-02-10)
8
+
9
+ * Regenerated from discovery document revision 20220202
10
+ * Regenerated using generator version 0.4.1
11
+
12
+ ### v0.17.0 (2021-12-16)
13
+
14
+ * Regenerated from discovery document revision 20211130
15
+
3
16
  ### v0.16.0 (2021-11-20)
4
17
 
5
18
  * Regenerated from discovery document revision 20211113
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/composer_v1beta1"
51
51
  client = Google::Apis::ComposerV1beta1::CloudComposerService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -180,10 +180,10 @@ module Google
180
180
  # day and time zone are either specified elsewhere or are insignificant. The
181
181
  # date is relative to the Gregorian Calendar. This can represent one of the
182
182
  # following: * A full date, with non-zero year, month, and day values * A month
183
- # and day value, with a zero year, such as an anniversary * A year on its own,
184
- # with zero month and day values * A year and month value, with a zero day, such
185
- # as a credit card expiration date Related types are google.type.TimeOfDay and `
186
- # google.protobuf.Timestamp`.
183
+ # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
184
+ # zero month and a zero day * A year and month, with a zero day (e.g., a credit
185
+ # card expiration date) Related types: * google.type.TimeOfDay * google.type.
186
+ # DateTime * google.protobuf.Timestamp
187
187
  class Date
188
188
  include Google::Apis::Core::Hashable
189
189
 
@@ -547,10 +547,10 @@ module Google
547
547
  # day and time zone are either specified elsewhere or are insignificant. The
548
548
  # date is relative to the Gregorian Calendar. This can represent one of the
549
549
  # following: * A full date, with non-zero year, month, and day values * A month
550
- # and day value, with a zero year, such as an anniversary * A year on its own,
551
- # with zero month and day values * A year and month value, with a zero day, such
552
- # as a credit card expiration date Related types are google.type.TimeOfDay and `
553
- # google.protobuf.Timestamp`.
550
+ # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
551
+ # zero month and a zero day * A year and month, with a zero day (e.g., a credit
552
+ # card expiration date) Related types: * google.type.TimeOfDay * google.type.
553
+ # DateTime * google.protobuf.Timestamp
554
554
  # Corresponds to the JSON property `releaseDate`
555
555
  # @return [Google::Apis::ComposerV1beta1::Date]
556
556
  attr_accessor :release_date
@@ -657,8 +657,8 @@ module Google
657
657
  end
658
658
  end
659
659
 
660
- # Load environment state response.
661
- class LoadEnvironmentStateResponse
660
+ # Response to LoadSnapshotRequest.
661
+ class LoadSnapshotResponse
662
662
  include Google::Apis::Core::Hashable
663
663
 
664
664
  def initialize(**args)
@@ -1136,6 +1136,27 @@ module Google
1136
1136
  end
1137
1137
  end
1138
1138
 
1139
+ # Response to SaveSnapshotRequest.
1140
+ class SaveSnapshotResponse
1141
+ include Google::Apis::Core::Hashable
1142
+
1143
+ # The fully-resolved Cloud Storage path of the created snapshot, e.g.: "gs://my-
1144
+ # bucket/snapshots/project_location_environment_timestamp". This field is
1145
+ # populated only if the snapshot creation was successful.
1146
+ # Corresponds to the JSON property `snapshotPath`
1147
+ # @return [String]
1148
+ attr_accessor :snapshot_path
1149
+
1150
+ def initialize(**args)
1151
+ update!(**args)
1152
+ end
1153
+
1154
+ # Update properties of this object
1155
+ def update!(**args)
1156
+ @snapshot_path = args[:snapshot_path] if args.key?(:snapshot_path)
1157
+ end
1158
+ end
1159
+
1139
1160
  # Configuration for resources used by Airflow schedulers.
1140
1161
  class SchedulerResource
1141
1162
  include Google::Apis::Core::Hashable
@@ -1302,27 +1323,6 @@ module Google
1302
1323
  end
1303
1324
  end
1304
1325
 
1305
- # Store environment state response.
1306
- class StoreEnvironmentStateResponse
1307
- include Google::Apis::Core::Hashable
1308
-
1309
- # The fully-resolved Cloud Storage location of the created snapshot, e.g.: "gs://
1310
- # my-bucket/snapshots/project_id/location/environment_uuid/timestamp". This
1311
- # field is populated only if the snapshot creation was successful.
1312
- # Corresponds to the JSON property `snapshotLocation`
1313
- # @return [String]
1314
- attr_accessor :snapshot_location
1315
-
1316
- def initialize(**args)
1317
- update!(**args)
1318
- end
1319
-
1320
- # Update properties of this object
1321
- def update!(**args)
1322
- @snapshot_location = args[:snapshot_location] if args.key?(:snapshot_location)
1323
- end
1324
- end
1325
-
1326
1326
  # The configuration settings for the Airflow web server App Engine instance.
1327
1327
  # Supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.
1328
1328
  # *.*.
@@ -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.16.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211113"
25
+ REVISION = "20220224"
26
26
  end
27
27
  end
28
28
  end
@@ -112,7 +112,7 @@ module Google
112
112
  include Google::Apis::Core::JsonObjectSupport
113
113
  end
114
114
 
115
- class LoadEnvironmentStateResponse
115
+ class LoadSnapshotResponse
116
116
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
117
 
118
118
  include Google::Apis::Core::JsonObjectSupport
@@ -166,25 +166,25 @@ module Google
166
166
  include Google::Apis::Core::JsonObjectSupport
167
167
  end
168
168
 
169
- class SchedulerResource
169
+ class SaveSnapshotResponse
170
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
171
 
172
172
  include Google::Apis::Core::JsonObjectSupport
173
173
  end
174
174
 
175
- class SoftwareConfig
175
+ class SchedulerResource
176
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
177
 
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
- class Status
181
+ class SoftwareConfig
182
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
183
 
184
184
  include Google::Apis::Core::JsonObjectSupport
185
185
  end
186
186
 
187
- class StoreEnvironmentStateResponse
187
+ class Status
188
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
189
189
 
190
190
  include Google::Apis::Core::JsonObjectSupport
@@ -379,7 +379,7 @@ module Google
379
379
  end
380
380
  end
381
381
 
382
- class LoadEnvironmentStateResponse
382
+ class LoadSnapshotResponse
383
383
  # @private
384
384
  class Representation < Google::Apis::Core::JsonRepresentation
385
385
  end
@@ -476,6 +476,13 @@ module Google
476
476
  end
477
477
  end
478
478
 
479
+ class SaveSnapshotResponse
480
+ # @private
481
+ class Representation < Google::Apis::Core::JsonRepresentation
482
+ property :snapshot_path, as: 'snapshotPath'
483
+ end
484
+ end
485
+
479
486
  class SchedulerResource
480
487
  # @private
481
488
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -507,13 +514,6 @@ module Google
507
514
  end
508
515
  end
509
516
 
510
- class StoreEnvironmentStateResponse
511
- # @private
512
- class Representation < Google::Apis::Core::JsonRepresentation
513
- property :snapshot_location, as: 'snapshotLocation'
514
- end
515
- end
516
-
517
517
  class WebServerConfig
518
518
  # @private
519
519
  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.16.0
4
+ version: 0.19.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: 2021-12-06 00:00:00.000000000 Z
11
+ date: 2022-03-07 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.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1beta1/v0.19.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: []
@@ -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.2.17
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Composer API V1beta1