google-apis-composer_v1 0.39.0 → 0.40.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1dd62828ed56fa2107f42e531643c17f5afba863f27993e707c96dbd2f4a7a2e
|
4
|
+
data.tar.gz: db34db845be7e11818de8cac78276558768fcee01acc14f21df7028d0f21c137
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c7a06dffacc293eba72127a4c8c9f5a5c13b2fc8eaddaa0bf24d4349c6c834cd15b31c5a668086b78bb8a3b7b80b342b3e7c5f289615f5102b32c8bb1778c74
|
7
|
+
data.tar.gz: 8d1a6bfb3ebd44641f4788d60cec1e363e43c607633deacdbcab99b2a9af6b943ba6acce914680b78902cb5b4616598b529fc56fccfc765939bad0a4b5b88003
|
data/CHANGELOG.md
CHANGED
@@ -134,6 +134,15 @@ module Google
|
|
134
134
|
# @return [String]
|
135
135
|
attr_accessor :machine_type
|
136
136
|
|
137
|
+
# Optional. The Compute Engine zone where the Airflow database is created. If
|
138
|
+
# zone is provided, it must be in the region selected for the environment. If
|
139
|
+
# zone is not provided, a zone is automatically selected. The zone can only be
|
140
|
+
# set during environment creation. Supported for Cloud Composer environments in
|
141
|
+
# versions composer-2.*.*-airflow-*.*.*.
|
142
|
+
# Corresponds to the JSON property `zone`
|
143
|
+
# @return [String]
|
144
|
+
attr_accessor :zone
|
145
|
+
|
137
146
|
def initialize(**args)
|
138
147
|
update!(**args)
|
139
148
|
end
|
@@ -141,6 +150,7 @@ module Google
|
|
141
150
|
# Update properties of this object
|
142
151
|
def update!(**args)
|
143
152
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
153
|
+
@zone = args[:zone] if args.key?(:zone)
|
144
154
|
end
|
145
155
|
end
|
146
156
|
|
@@ -1778,12 +1788,19 @@ module Google
|
|
1778
1788
|
class StorageConfig
|
1779
1789
|
include Google::Apis::Core::Hashable
|
1780
1790
|
|
1791
|
+
# Optional. The name of the Cloud Storage bucket used by the environment. No `gs:
|
1792
|
+
# //` prefix.
|
1793
|
+
# Corresponds to the JSON property `bucket`
|
1794
|
+
# @return [String]
|
1795
|
+
attr_accessor :bucket
|
1796
|
+
|
1781
1797
|
def initialize(**args)
|
1782
1798
|
update!(**args)
|
1783
1799
|
end
|
1784
1800
|
|
1785
1801
|
# Update properties of this object
|
1786
1802
|
def update!(**args)
|
1803
|
+
@bucket = args[:bucket] if args.key?(:bucket)
|
1787
1804
|
end
|
1788
1805
|
end
|
1789
1806
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComposerV1
|
18
18
|
# Version of the google-apis-composer_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.40.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 = "
|
25
|
+
REVISION = "20231004"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -347,6 +347,7 @@ module Google
|
|
347
347
|
# @private
|
348
348
|
class Representation < Google::Apis::Core::JsonRepresentation
|
349
349
|
property :machine_type, as: 'machineType'
|
350
|
+
property :zone, as: 'zone'
|
350
351
|
end
|
351
352
|
end
|
352
353
|
|
@@ -746,6 +747,7 @@ module Google
|
|
746
747
|
class StorageConfig
|
747
748
|
# @private
|
748
749
|
class Representation < Google::Apis::Core::JsonRepresentation
|
750
|
+
property :bucket, as: 'bucket'
|
749
751
|
end
|
750
752
|
end
|
751
753
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-composer_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.40.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-
|
11
|
+
date: 2023-10-08 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-composer_v1/v0.40.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-composer_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|