google-apis-datafusion_v1 0.7.0 → 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/OVERVIEW.md +3 -3
- data/lib/google/apis/datafusion_v1/classes.rb +107 -60
- data/lib/google/apis/datafusion_v1/gem_version.rb +3 -3
- data/lib/google/apis/datafusion_v1/representations.rb +17 -0
- data/lib/google/apis/datafusion_v1/service.rb +14 -14
- data/lib/google/apis/datafusion_v1.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc826ba75ee6da5d9b0371381e3bed9ac6ef89f2abd025217e3964f9c21b7365
|
4
|
+
data.tar.gz: 6df7a52fe0492b25c9d3749557069b6527a23746876ddd6e302eeaeff0d1275b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d13ce21dda642f0e1cdb73656cffbdd3d8f466a9ffd173ad5bdd012d68c331d010bb8455522e47a613ede28bf99df775cbc978790de4772644ec0bc2fca1bef
|
7
|
+
data.tar.gz: 7fc779790369f3d1c843ffdcf636e5435a00524cb75c1e1a778fc3e40be2de3104a58aeea9276e51ea907890115e53fce9f4c5a339c5b5ca67f439413c6b1f7d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-datafusion_v1
|
2
2
|
|
3
|
+
### v0.11.0 (2021-12-14)
|
4
|
+
|
5
|
+
* Unspecified changes
|
6
|
+
|
7
|
+
### v0.10.0 (2021-11-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20211028
|
10
|
+
|
11
|
+
### v0.9.0 (2021-10-20)
|
12
|
+
|
13
|
+
* Unspecified changes
|
14
|
+
|
15
|
+
### v0.8.0 (2021-07-01)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210628
|
18
|
+
* Regenerated using generator version 0.4.0
|
19
|
+
|
3
20
|
### v0.7.0 (2021-06-24)
|
4
21
|
|
5
22
|
* Regenerated using generator version 0.3.0
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/datafusion_v1"
|
|
51
51
|
client = Google::Apis::DatafusionV1::DataFusionService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
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.
|
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
|
|
60
60
|
|
61
61
|
More detailed descriptions of the Google simple REST clients are available in two documents.
|
62
62
|
|
63
|
-
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
64
|
-
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
63
|
+
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
|
64
|
+
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
|
65
65
|
|
66
66
|
(Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Datafusion service in particular.)
|
67
67
|
|
@@ -118,7 +118,7 @@ module Google
|
|
118
118
|
end
|
119
119
|
end
|
120
120
|
|
121
|
-
# Associates `members
|
121
|
+
# Associates `members`, or principals, with a `role`.
|
122
122
|
class Binding
|
123
123
|
include Google::Apis::Core::Hashable
|
124
124
|
|
@@ -141,7 +141,7 @@ module Google
|
|
141
141
|
# @return [Google::Apis::DatafusionV1::Expr]
|
142
142
|
attr_accessor :condition
|
143
143
|
|
144
|
-
# Specifies the
|
144
|
+
# Specifies the principals requesting access for a Cloud Platform resource. `
|
145
145
|
# members` can have the following values: * `allUsers`: A special identifier
|
146
146
|
# that represents anyone who is on the internet; with or without a Google
|
147
147
|
# account. * `allAuthenticatedUsers`: A special identifier that represents
|
@@ -171,8 +171,8 @@ module Google
|
|
171
171
|
# @return [Array<String>]
|
172
172
|
attr_accessor :members
|
173
173
|
|
174
|
-
# Role that is assigned to `members
|
175
|
-
#
|
174
|
+
# Role that is assigned to the list of `members`, or principals. For example, `
|
175
|
+
# roles/viewer`, `roles/editor`, or `roles/owner`.
|
176
176
|
# Corresponds to the JSON property `role`
|
177
177
|
# @return [String]
|
178
178
|
attr_accessor :role
|
@@ -202,6 +202,28 @@ module Google
|
|
202
202
|
end
|
203
203
|
end
|
204
204
|
|
205
|
+
# The crypto key configuration. This field is used by the Customer-managed
|
206
|
+
# encryption keys (CMEK) feature.
|
207
|
+
class CryptoKeyConfig
|
208
|
+
include Google::Apis::Core::Hashable
|
209
|
+
|
210
|
+
# The name of the key which is used to encrypt/decrypt customer data. For key in
|
211
|
+
# Cloud KMS, the key should be in the format of `projects/*/locations/*/keyRings/
|
212
|
+
# */cryptoKeys/*`.
|
213
|
+
# Corresponds to the JSON property `keyReference`
|
214
|
+
# @return [String]
|
215
|
+
attr_accessor :key_reference
|
216
|
+
|
217
|
+
def initialize(**args)
|
218
|
+
update!(**args)
|
219
|
+
end
|
220
|
+
|
221
|
+
# Update properties of this object
|
222
|
+
def update!(**args)
|
223
|
+
@key_reference = args[:key_reference] if args.key?(:key_reference)
|
224
|
+
end
|
225
|
+
end
|
226
|
+
|
205
227
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
206
228
|
# messages in your APIs. A typical example is to use it as the request or the
|
207
229
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -298,6 +320,12 @@ module Google
|
|
298
320
|
# @return [String]
|
299
321
|
attr_accessor :create_time
|
300
322
|
|
323
|
+
# The crypto key configuration. This field is used by the Customer-managed
|
324
|
+
# encryption keys (CMEK) feature.
|
325
|
+
# Corresponds to the JSON property `cryptoKeyConfig`
|
326
|
+
# @return [Google::Apis::DatafusionV1::CryptoKeyConfig]
|
327
|
+
attr_accessor :crypto_key_config
|
328
|
+
|
301
329
|
# User-managed service account to set on Dataproc when Cloud Data Fusion creates
|
302
330
|
# Dataproc to run data processing pipelines. This allows users to have fine-
|
303
331
|
# grained access control on Dataproc's accesses to cloud resources.
|
@@ -310,6 +338,12 @@ module Google
|
|
310
338
|
# @return [String]
|
311
339
|
attr_accessor :description
|
312
340
|
|
341
|
+
# Output only. If the instance state is DISABLED, the reason for disabling the
|
342
|
+
# instance.
|
343
|
+
# Corresponds to the JSON property `disabledReason`
|
344
|
+
# @return [Array<String>]
|
345
|
+
attr_accessor :disabled_reason
|
346
|
+
|
313
347
|
# Display name for an instance.
|
314
348
|
# Corresponds to the JSON property `displayName`
|
315
349
|
# @return [String]
|
@@ -340,8 +374,8 @@ module Google
|
|
340
374
|
attr_accessor :gcs_bucket
|
341
375
|
|
342
376
|
# The resource labels for instance to use to annotate any related underlying
|
343
|
-
# resources such as
|
344
|
-
# the labels.
|
377
|
+
# resources such as Compute Engine VMs. The character '=' is not allowed to be
|
378
|
+
# used within the labels.
|
345
379
|
# Corresponds to the JSON property `labels`
|
346
380
|
# @return [Hash<String,String>]
|
347
381
|
attr_accessor :labels
|
@@ -439,8 +473,10 @@ module Google
|
|
439
473
|
@api_endpoint = args[:api_endpoint] if args.key?(:api_endpoint)
|
440
474
|
@available_version = args[:available_version] if args.key?(:available_version)
|
441
475
|
@create_time = args[:create_time] if args.key?(:create_time)
|
476
|
+
@crypto_key_config = args[:crypto_key_config] if args.key?(:crypto_key_config)
|
442
477
|
@dataproc_service_account = args[:dataproc_service_account] if args.key?(:dataproc_service_account)
|
443
478
|
@description = args[:description] if args.key?(:description)
|
479
|
+
@disabled_reason = args[:disabled_reason] if args.key?(:disabled_reason)
|
444
480
|
@display_name = args[:display_name] if args.key?(:display_name)
|
445
481
|
@enable_rbac = args[:enable_rbac] if args.key?(:enable_rbac)
|
446
482
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
@@ -720,7 +756,7 @@ module Google
|
|
720
756
|
class OperationMetadata
|
721
757
|
include Google::Apis::Core::Hashable
|
722
758
|
|
723
|
-
# Map to hold any
|
759
|
+
# Map to hold any additional status info for the operation If there is an
|
724
760
|
# accelerator being enabled/disabled/deleted, this will be populated with
|
725
761
|
# accelerator name as key and status as ENABLING, DISABLING or DELETING
|
726
762
|
# Corresponds to the JSON property `additionalStatus`
|
@@ -784,31 +820,31 @@ module Google
|
|
784
820
|
|
785
821
|
# An Identity and Access Management (IAM) policy, which specifies access
|
786
822
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
787
|
-
# A `binding` binds one or more `members
|
788
|
-
# user accounts, service accounts, Google groups, and domains (
|
789
|
-
# A `role` is a named list of permissions; each `role` can be
|
790
|
-
# role or a user-created custom role. For some types of Google
|
791
|
-
# a `binding` can also specify a `condition`, which is a
|
792
|
-
# allows access to a resource only if the expression
|
793
|
-
# condition can add constraints based on attributes of
|
794
|
-
# or both. To learn which resources support
|
795
|
-
# see the [IAM documentation](https://cloud.
|
796
|
-
# resource-policies). **JSON example:** ` "
|
797
|
-
# resourcemanager.organizationAdmin", "members": [
|
798
|
-
# group:admins@example.com", "domain:google.com", "
|
799
|
-
# appspot.gserviceaccount.com" ] `, ` "role": "
|
800
|
-
# organizationViewer", "members": [ "user:eve@example.com"
|
801
|
-
# title": "expirable access", "description": "Does not grant
|
802
|
-
# 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
803
|
-
# ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
|
804
|
-
# members: - user:mike@example.com - group:admins@example.com -
|
805
|
-
# com - serviceAccount:my-project-id@appspot.gserviceaccount.com
|
806
|
-
# resourcemanager.organizationAdmin - members: - user:eve@example.
|
807
|
-
# roles/resourcemanager.organizationViewer condition: title: expirable
|
808
|
-
# description: Does not grant access after Sep 2020 expression: request.
|
809
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
810
|
-
# description of IAM and its features, see the [IAM documentation](https://
|
811
|
-
# google.com/iam/docs/).
|
823
|
+
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
824
|
+
# Principals can be user accounts, service accounts, Google groups, and domains (
|
825
|
+
# such as G Suite). A `role` is a named list of permissions; each `role` can be
|
826
|
+
# an IAM predefined role or a user-created custom role. For some types of Google
|
827
|
+
# Cloud resources, a `binding` can also specify a `condition`, which is a
|
828
|
+
# logical expression that allows access to a resource only if the expression
|
829
|
+
# evaluates to `true`. A condition can add constraints based on attributes of
|
830
|
+
# the request, the resource, or both. To learn which resources support
|
831
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
832
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
833
|
+
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
834
|
+
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
835
|
+
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
836
|
+
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
837
|
+
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
838
|
+
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
839
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
|
840
|
+
# bindings: - members: - user:mike@example.com - group:admins@example.com -
|
841
|
+
# domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
|
842
|
+
# role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
|
843
|
+
# com role: roles/resourcemanager.organizationViewer condition: title: expirable
|
844
|
+
# access description: Does not grant access after Sep 2020 expression: request.
|
845
|
+
# time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
|
846
|
+
# a description of IAM and its features, see the [IAM documentation](https://
|
847
|
+
# cloud.google.com/iam/docs/).
|
812
848
|
class Policy
|
813
849
|
include Google::Apis::Core::Hashable
|
814
850
|
|
@@ -817,9 +853,14 @@ module Google
|
|
817
853
|
# @return [Array<Google::Apis::DatafusionV1::AuditConfig>]
|
818
854
|
attr_accessor :audit_configs
|
819
855
|
|
820
|
-
# Associates a list of `members
|
821
|
-
# condition` that determines how and when the `bindings` are applied.
|
822
|
-
# the `bindings` must contain at least one
|
856
|
+
# Associates a list of `members`, or principals, with a `role`. Optionally, may
|
857
|
+
# specify a `condition` that determines how and when the `bindings` are applied.
|
858
|
+
# Each of the `bindings` must contain at least one principal. The `bindings` in
|
859
|
+
# a `Policy` can refer to up to 1,500 principals; up to 250 of these principals
|
860
|
+
# can be Google groups. Each occurrence of a principal counts towards these
|
861
|
+
# limits. For example, if the `bindings` grant 50 different roles to `user:alice@
|
862
|
+
# example.com`, and not to any other principal, then you can add another 1,450
|
863
|
+
# principals to the `bindings` in the `Policy`.
|
823
864
|
# Corresponds to the JSON property `bindings`
|
824
865
|
# @return [Array<Google::Apis::DatafusionV1::Binding>]
|
825
866
|
attr_accessor :bindings
|
@@ -891,31 +932,31 @@ module Google
|
|
891
932
|
|
892
933
|
# An Identity and Access Management (IAM) policy, which specifies access
|
893
934
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
894
|
-
# A `binding` binds one or more `members
|
895
|
-
# user accounts, service accounts, Google groups, and domains (
|
896
|
-
# A `role` is a named list of permissions; each `role` can be
|
897
|
-
# role or a user-created custom role. For some types of Google
|
898
|
-
# a `binding` can also specify a `condition`, which is a
|
899
|
-
# allows access to a resource only if the expression
|
900
|
-
# condition can add constraints based on attributes of
|
901
|
-
# or both. To learn which resources support
|
902
|
-
# see the [IAM documentation](https://cloud.
|
903
|
-
# resource-policies). **JSON example:** ` "
|
904
|
-
# resourcemanager.organizationAdmin", "members": [
|
905
|
-
# group:admins@example.com", "domain:google.com", "
|
906
|
-
# appspot.gserviceaccount.com" ] `, ` "role": "
|
907
|
-
# organizationViewer", "members": [ "user:eve@example.com"
|
908
|
-
# title": "expirable access", "description": "Does not grant
|
909
|
-
# 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
910
|
-
# ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
|
911
|
-
# members: - user:mike@example.com - group:admins@example.com -
|
912
|
-
# com - serviceAccount:my-project-id@appspot.gserviceaccount.com
|
913
|
-
# resourcemanager.organizationAdmin - members: - user:eve@example.
|
914
|
-
# roles/resourcemanager.organizationViewer condition: title: expirable
|
915
|
-
# description: Does not grant access after Sep 2020 expression: request.
|
916
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
917
|
-
# description of IAM and its features, see the [IAM documentation](https://
|
918
|
-
# google.com/iam/docs/).
|
935
|
+
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
936
|
+
# Principals can be user accounts, service accounts, Google groups, and domains (
|
937
|
+
# such as G Suite). A `role` is a named list of permissions; each `role` can be
|
938
|
+
# an IAM predefined role or a user-created custom role. For some types of Google
|
939
|
+
# Cloud resources, a `binding` can also specify a `condition`, which is a
|
940
|
+
# logical expression that allows access to a resource only if the expression
|
941
|
+
# evaluates to `true`. A condition can add constraints based on attributes of
|
942
|
+
# the request, the resource, or both. To learn which resources support
|
943
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
944
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
945
|
+
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
946
|
+
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
947
|
+
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
948
|
+
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
949
|
+
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
950
|
+
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
951
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
|
952
|
+
# bindings: - members: - user:mike@example.com - group:admins@example.com -
|
953
|
+
# domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
|
954
|
+
# role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
|
955
|
+
# com role: roles/resourcemanager.organizationViewer condition: title: expirable
|
956
|
+
# access description: Does not grant access after Sep 2020 expression: request.
|
957
|
+
# time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
|
958
|
+
# a description of IAM and its features, see the [IAM documentation](https://
|
959
|
+
# cloud.google.com/iam/docs/).
|
919
960
|
# Corresponds to the JSON property `policy`
|
920
961
|
# @return [Google::Apis::DatafusionV1::Policy]
|
921
962
|
attr_accessor :policy
|
@@ -1033,6 +1074,11 @@ module Google
|
|
1033
1074
|
attr_accessor :default_version
|
1034
1075
|
alias_method :default_version?, :default_version
|
1035
1076
|
|
1077
|
+
# Type represents the release availability of the version
|
1078
|
+
# Corresponds to the JSON property `type`
|
1079
|
+
# @return [String]
|
1080
|
+
attr_accessor :type
|
1081
|
+
|
1036
1082
|
# The version number of the Data Fusion instance, such as '6.0.1.0'.
|
1037
1083
|
# Corresponds to the JSON property `versionNumber`
|
1038
1084
|
# @return [String]
|
@@ -1046,6 +1092,7 @@ module Google
|
|
1046
1092
|
def update!(**args)
|
1047
1093
|
@available_features = args[:available_features] if args.key?(:available_features)
|
1048
1094
|
@default_version = args[:default_version] if args.key?(:default_version)
|
1095
|
+
@type = args[:type] if args.key?(:type)
|
1049
1096
|
@version_number = args[:version_number] if args.key?(:version_number)
|
1050
1097
|
end
|
1051
1098
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DatafusionV1
|
18
18
|
# Version of the google-apis-datafusion_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211028"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,6 +52,12 @@ module Google
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
53
53
|
end
|
54
54
|
|
55
|
+
class CryptoKeyConfig
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
55
61
|
class Empty
|
56
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
63
|
|
@@ -201,6 +207,13 @@ module Google
|
|
201
207
|
end
|
202
208
|
end
|
203
209
|
|
210
|
+
class CryptoKeyConfig
|
211
|
+
# @private
|
212
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
213
|
+
property :key_reference, as: 'keyReference'
|
214
|
+
end
|
215
|
+
end
|
216
|
+
|
204
217
|
class Empty
|
205
218
|
# @private
|
206
219
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -226,8 +239,11 @@ module Google
|
|
226
239
|
collection :available_version, as: 'availableVersion', class: Google::Apis::DatafusionV1::Version, decorator: Google::Apis::DatafusionV1::Version::Representation
|
227
240
|
|
228
241
|
property :create_time, as: 'createTime'
|
242
|
+
property :crypto_key_config, as: 'cryptoKeyConfig', class: Google::Apis::DatafusionV1::CryptoKeyConfig, decorator: Google::Apis::DatafusionV1::CryptoKeyConfig::Representation
|
243
|
+
|
229
244
|
property :dataproc_service_account, as: 'dataprocServiceAccount'
|
230
245
|
property :description, as: 'description'
|
246
|
+
collection :disabled_reason, as: 'disabledReason'
|
231
247
|
property :display_name, as: 'displayName'
|
232
248
|
property :enable_rbac, as: 'enableRbac'
|
233
249
|
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
@@ -389,6 +405,7 @@ module Google
|
|
389
405
|
class Representation < Google::Apis::Core::JsonRepresentation
|
390
406
|
collection :available_features, as: 'availableFeatures'
|
391
407
|
property :default_version, as: 'defaultVersion'
|
408
|
+
property :type, as: 'type'
|
392
409
|
property :version_number, as: 'versionNumber'
|
393
410
|
end
|
394
411
|
end
|
@@ -95,7 +95,7 @@ module Google
|
|
95
95
|
# @param [Boolean] include_unrevealed_locations
|
96
96
|
# If true, the returned list will include locations which are not yet revealed.
|
97
97
|
# @param [Fixnum] page_size
|
98
|
-
# The maximum number of results to return. If not set, the service
|
98
|
+
# The maximum number of results to return. If not set, the service selects a
|
99
99
|
# default.
|
100
100
|
# @param [String] page_token
|
101
101
|
# A page token received from the `next_page_token` field in the response. Send
|
@@ -133,11 +133,11 @@ module Google
|
|
133
133
|
|
134
134
|
# Creates a new Data Fusion instance in the specified project and location.
|
135
135
|
# @param [String] parent
|
136
|
-
# The instance's project and location in the format projects/`project`/
|
137
|
-
#
|
136
|
+
# Required. The instance's project and location in the format projects/`project`/
|
137
|
+
# locations/`location`.
|
138
138
|
# @param [Google::Apis::DatafusionV1::Instance] instance_object
|
139
139
|
# @param [String] instance_id
|
140
|
-
# The name of the instance to create.
|
140
|
+
# Required. The name of the instance to create.
|
141
141
|
# @param [String] fields
|
142
142
|
# Selector specifying which fields to include in a partial response.
|
143
143
|
# @param [String] quota_user
|
@@ -170,8 +170,8 @@ module Google
|
|
170
170
|
|
171
171
|
# Deletes a single Date Fusion instance.
|
172
172
|
# @param [String] name
|
173
|
-
# The instance resource name in the format projects/`project`/
|
174
|
-
# location`/instances/`instance`
|
173
|
+
# Required. The instance resource name in the format projects/`project`/
|
174
|
+
# locations/`location`/instances/`instance`
|
175
175
|
# @param [String] fields
|
176
176
|
# Selector specifying which fields to include in a partial response.
|
177
177
|
# @param [String] quota_user
|
@@ -201,8 +201,8 @@ module Google
|
|
201
201
|
|
202
202
|
# Gets details of a single Data Fusion instance.
|
203
203
|
# @param [String] name
|
204
|
-
# The instance resource name in the format projects/`project`/
|
205
|
-
# location`/instances/`instance`.
|
204
|
+
# Required. The instance resource name in the format projects/`project`/
|
205
|
+
# locations/`location`/instances/`instance`.
|
206
206
|
# @param [String] fields
|
207
207
|
# Selector specifying which fields to include in a partial response.
|
208
208
|
# @param [String] quota_user
|
@@ -273,10 +273,10 @@ module Google
|
|
273
273
|
|
274
274
|
# Lists Data Fusion instances in the specified project and location.
|
275
275
|
# @param [String] parent
|
276
|
-
# The project and location for which to retrieve instance information
|
277
|
-
# format projects/`project`/locations/`location`. If the location is
|
278
|
-
# as '-' (wildcard), then all regions available to the project are
|
279
|
-
# the results are aggregated.
|
276
|
+
# Required. The project and location for which to retrieve instance information
|
277
|
+
# in the format projects/`project`/locations/`location`. If the location is
|
278
|
+
# specified as '-' (wildcard), then all regions available to the project are
|
279
|
+
# queried, and the results are aggregated.
|
280
280
|
# @param [String] filter
|
281
281
|
# List filter.
|
282
282
|
# @param [String] order_by
|
@@ -361,8 +361,8 @@ module Google
|
|
361
361
|
# Restart a single Data Fusion instance. At the end of an operation instance is
|
362
362
|
# fully restarted.
|
363
363
|
# @param [String] name
|
364
|
-
# Name of the Data Fusion instance which need to be restarted in the
|
365
|
-
# projects/`project`/locations/`location`/instances/`instance`
|
364
|
+
# Required. Name of the Data Fusion instance which need to be restarted in the
|
365
|
+
# form of projects/`project`/locations/`location`/instances/`instance`
|
366
366
|
# @param [Google::Apis::DatafusionV1::RestartInstanceRequest] restart_instance_request_object
|
367
367
|
# @param [String] fields
|
368
368
|
# Selector specifying which fields to include in a partial response.
|
@@ -35,7 +35,7 @@ module Google
|
|
35
35
|
# This is NOT the gem version.
|
36
36
|
VERSION = 'V1'
|
37
37
|
|
38
|
-
# See, edit, configure, and delete your Google Cloud
|
38
|
+
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
39
39
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
40
40
|
end
|
41
41
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datafusion_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.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:
|
11
|
+
date: 2022-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
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.4'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -57,9 +57,9 @@ licenses:
|
|
57
57
|
- Apache-2.0
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
|
-
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.
|
62
|
-
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
60
|
+
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1/CHANGELOG.md
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.11.0
|
62
|
+
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
65
65
|
require_paths:
|
@@ -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.
|
78
|
+
rubygems_version: 3.3.4
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Data Fusion API V1
|