google-cloud-orchestration-airflow-service-v1 0.3.1 → 0.5.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 +4 -4
- data/README.md +2 -2
- data/lib/google/cloud/orchestration/airflow/service/v1/environments/client.rb +26 -28
- data/lib/google/cloud/orchestration/airflow/service/v1/environments/operations.rb +14 -16
- data/lib/google/cloud/orchestration/airflow/service/v1/environments/rest/client.rb +945 -0
- data/lib/google/cloud/orchestration/airflow/service/v1/environments/rest/operations.rb +797 -0
- data/lib/google/cloud/orchestration/airflow/service/v1/environments/rest/service_stub.rb +469 -0
- data/lib/google/cloud/orchestration/airflow/service/v1/environments/rest.rb +57 -0
- data/lib/google/cloud/orchestration/airflow/service/v1/environments.rb +6 -0
- data/lib/google/cloud/orchestration/airflow/service/v1/environments_pb.rb +1 -0
- data/lib/google/cloud/orchestration/airflow/service/v1/image_versions/client.rb +6 -8
- data/lib/google/cloud/orchestration/airflow/service/v1/image_versions/rest/client.rb +354 -0
- data/lib/google/cloud/orchestration/airflow/service/v1/image_versions/rest/service_stub.rb +111 -0
- data/lib/google/cloud/orchestration/airflow/service/v1/image_versions/rest.rb +55 -0
- data/lib/google/cloud/orchestration/airflow/service/v1/image_versions.rb +6 -0
- data/lib/google/cloud/orchestration/airflow/service/v1/rest.rb +42 -0
- data/lib/google/cloud/orchestration/airflow/service/v1/version.rb +1 -1
- data/lib/google/cloud/orchestration/airflow/service/v1.rb +5 -0
- data/proto_docs/google/api/client.rb +57 -3
- data/proto_docs/google/cloud/orchestration/airflow/service/v1/environments.rb +7 -0
- metadata +15 -7
@@ -35,7 +35,9 @@ module Google
|
|
35
35
|
# Details about how and where to publish client libraries.
|
36
36
|
# @!attribute [rw] version
|
37
37
|
# @return [::String]
|
38
|
-
# Version of the API to apply these settings to.
|
38
|
+
# Version of the API to apply these settings to. This is the full protobuf
|
39
|
+
# package for the API, ending in the version element.
|
40
|
+
# Examples: "google.cloud.speech.v1" and "google.spanner.admin.database.v1".
|
39
41
|
# @!attribute [rw] launch_stage
|
40
42
|
# @return [::Google::Api::LaunchStage]
|
41
43
|
# Launch stage of this version of the API.
|
@@ -111,6 +113,10 @@ module Google
|
|
111
113
|
# Client library settings. If the same version string appears multiple
|
112
114
|
# times in this list, then the last one wins. Settings from earlier
|
113
115
|
# settings with the same version string are discarded.
|
116
|
+
# @!attribute [rw] proto_reference_documentation_uri
|
117
|
+
# @return [::String]
|
118
|
+
# Optional link to proto reference documentation. Example:
|
119
|
+
# https://cloud.google.com/pubsub/lite/docs/reference/rpc
|
114
120
|
class Publishing
|
115
121
|
include ::Google::Protobuf::MessageExts
|
116
122
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -203,9 +209,57 @@ module Google
|
|
203
209
|
# @!attribute [rw] common
|
204
210
|
# @return [::Google::Api::CommonLanguageSettings]
|
205
211
|
# Some settings.
|
212
|
+
# @!attribute [rw] renamed_services
|
213
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
214
|
+
# Map from original service names to renamed versions.
|
215
|
+
# This is used when the default generated types
|
216
|
+
# would cause a naming conflict. (Neither name is
|
217
|
+
# fully-qualified.)
|
218
|
+
# Example: Subscriber to SubscriberServiceApi.
|
219
|
+
# @!attribute [rw] renamed_resources
|
220
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
221
|
+
# Map from full resource types to the effective short name
|
222
|
+
# for the resource. This is used when otherwise resource
|
223
|
+
# named from different services would cause naming collisions.
|
224
|
+
# Example entry:
|
225
|
+
# "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
|
226
|
+
# @!attribute [rw] ignored_resources
|
227
|
+
# @return [::Array<::String>]
|
228
|
+
# List of full resource types to ignore during generation.
|
229
|
+
# This is typically used for API-specific Location resources,
|
230
|
+
# which should be handled by the generator as if they were actually
|
231
|
+
# the common Location resources.
|
232
|
+
# Example entry: "documentai.googleapis.com/Location"
|
233
|
+
# @!attribute [rw] forced_namespace_aliases
|
234
|
+
# @return [::Array<::String>]
|
235
|
+
# Namespaces which must be aliased in snippets due to
|
236
|
+
# a known (but non-generator-predictable) naming collision
|
237
|
+
# @!attribute [rw] handwritten_signatures
|
238
|
+
# @return [::Array<::String>]
|
239
|
+
# Method signatures (in the form "service.method(signature)")
|
240
|
+
# which are provided separately, so shouldn't be generated.
|
241
|
+
# Snippets *calling* these methods are still generated, however.
|
206
242
|
class DotnetSettings
|
207
243
|
include ::Google::Protobuf::MessageExts
|
208
244
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
245
|
+
|
246
|
+
# @!attribute [rw] key
|
247
|
+
# @return [::String]
|
248
|
+
# @!attribute [rw] value
|
249
|
+
# @return [::String]
|
250
|
+
class RenamedServicesEntry
|
251
|
+
include ::Google::Protobuf::MessageExts
|
252
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
253
|
+
end
|
254
|
+
|
255
|
+
# @!attribute [rw] key
|
256
|
+
# @return [::String]
|
257
|
+
# @!attribute [rw] value
|
258
|
+
# @return [::String]
|
259
|
+
class RenamedResourcesEntry
|
260
|
+
include ::Google::Protobuf::MessageExts
|
261
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
262
|
+
end
|
209
263
|
end
|
210
264
|
|
211
265
|
# Settings for Ruby client libraries.
|
@@ -240,8 +294,8 @@ module Google
|
|
240
294
|
# Example of a YAML configuration::
|
241
295
|
#
|
242
296
|
# publishing:
|
243
|
-
#
|
244
|
-
# - selector:
|
297
|
+
# method_settings:
|
298
|
+
# - selector: google.cloud.speech.v2.Speech.BatchRecognize
|
245
299
|
# long_running:
|
246
300
|
# initial_poll_delay:
|
247
301
|
# seconds: 60 # 1 minute
|
@@ -364,6 +364,13 @@ module Google
|
|
364
364
|
# Output only. The URI of the Apache Airflow Web UI hosted within this
|
365
365
|
# environment (see [Airflow web
|
366
366
|
# interface](/composer/docs/how-to/accessing/airflow-web-interface)).
|
367
|
+
# @!attribute [r] airflow_byoid_uri
|
368
|
+
# @return [::String]
|
369
|
+
# Output only. The 'bring your own identity' variant of the URI of the Apache
|
370
|
+
# Airflow Web UI hosted within this environment, to be accessed with external
|
371
|
+
# identities using workforce identity federation (see [Access environments
|
372
|
+
# with workforce identity
|
373
|
+
# federation](/composer/docs/composer-2/access-environments-with-workforce-identity-federation)).
|
367
374
|
# @!attribute [rw] master_authorized_networks_config
|
368
375
|
# @return [::Google::Cloud::Orchestration::Airflow::Service::V1::MasterAuthorizedNetworksConfig]
|
369
376
|
# Optional. The configuration options for GKE cluster master authorized
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-orchestration-airflow-service-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.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-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.18.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.18.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -50,14 +50,14 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 1.26.
|
53
|
+
version: 1.26.3
|
54
54
|
type: :development
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
58
|
- - "~>"
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: 1.26.
|
60
|
+
version: 1.26.3
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: minitest
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -179,14 +179,22 @@ files:
|
|
179
179
|
- lib/google/cloud/orchestration/airflow/service/v1/environments/credentials.rb
|
180
180
|
- lib/google/cloud/orchestration/airflow/service/v1/environments/operations.rb
|
181
181
|
- lib/google/cloud/orchestration/airflow/service/v1/environments/paths.rb
|
182
|
+
- lib/google/cloud/orchestration/airflow/service/v1/environments/rest.rb
|
183
|
+
- lib/google/cloud/orchestration/airflow/service/v1/environments/rest/client.rb
|
184
|
+
- lib/google/cloud/orchestration/airflow/service/v1/environments/rest/operations.rb
|
185
|
+
- lib/google/cloud/orchestration/airflow/service/v1/environments/rest/service_stub.rb
|
182
186
|
- lib/google/cloud/orchestration/airflow/service/v1/environments_pb.rb
|
183
187
|
- lib/google/cloud/orchestration/airflow/service/v1/environments_services_pb.rb
|
184
188
|
- lib/google/cloud/orchestration/airflow/service/v1/image_versions.rb
|
185
189
|
- lib/google/cloud/orchestration/airflow/service/v1/image_versions/client.rb
|
186
190
|
- lib/google/cloud/orchestration/airflow/service/v1/image_versions/credentials.rb
|
191
|
+
- lib/google/cloud/orchestration/airflow/service/v1/image_versions/rest.rb
|
192
|
+
- lib/google/cloud/orchestration/airflow/service/v1/image_versions/rest/client.rb
|
193
|
+
- lib/google/cloud/orchestration/airflow/service/v1/image_versions/rest/service_stub.rb
|
187
194
|
- lib/google/cloud/orchestration/airflow/service/v1/image_versions_pb.rb
|
188
195
|
- lib/google/cloud/orchestration/airflow/service/v1/image_versions_services_pb.rb
|
189
196
|
- lib/google/cloud/orchestration/airflow/service/v1/operations_pb.rb
|
197
|
+
- lib/google/cloud/orchestration/airflow/service/v1/rest.rb
|
190
198
|
- lib/google/cloud/orchestration/airflow/service/v1/version.rb
|
191
199
|
- proto_docs/README.md
|
192
200
|
- proto_docs/google/api/client.rb
|
@@ -226,5 +234,5 @@ requirements: []
|
|
226
234
|
rubygems_version: 3.4.2
|
227
235
|
signing_key:
|
228
236
|
specification_version: 4
|
229
|
-
summary:
|
237
|
+
summary: Manages Apache Airflow environments on Google Cloud Platform.
|
230
238
|
test_files: []
|