google-apis-datafusion_v1 0.9.0 → 0.10.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/CHANGELOG.md +4 -0
- data/lib/google/apis/datafusion_v1/classes.rb +75 -57
- data/lib/google/apis/datafusion_v1/gem_version.rb +2 -2
- data/lib/google/apis/datafusion_v1/representations.rb +2 -0
- data/lib/google/apis/datafusion_v1/service.rb +13 -13
- data/lib/google/apis/datafusion_v1.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dc1bebc5b2ab06bcbfd96a19d38466eff04df94212d9b7a831043b6fa2063c79
|
|
4
|
+
data.tar.gz: 2c45cf1f382482052e749c4eca4d624dcde9d15eb6fe04228a896302c700aebc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4f1269bd5137e5b96b0b5f9dcc7ac12866999116a89b2298a26fa267fdbd671b5f4deb9eb19e234b0850484695acbcb81f0a61e7ada3001e1174b107ce63f2b7
|
|
7
|
+
data.tar.gz: 24ec564d6979b0d21c18226ac9b4d1b5c50f7d608c52f8e92553921f5675ede5e16af0cc867a77ee690f4b4572d57e70c1020835169656555963e919ea5588f6
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
@@ -338,6 +338,12 @@ module Google
|
|
|
338
338
|
# @return [String]
|
|
339
339
|
attr_accessor :description
|
|
340
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
|
+
|
|
341
347
|
# Display name for an instance.
|
|
342
348
|
# Corresponds to the JSON property `displayName`
|
|
343
349
|
# @return [String]
|
|
@@ -470,6 +476,7 @@ module Google
|
|
|
470
476
|
@crypto_key_config = args[:crypto_key_config] if args.key?(:crypto_key_config)
|
|
471
477
|
@dataproc_service_account = args[:dataproc_service_account] if args.key?(:dataproc_service_account)
|
|
472
478
|
@description = args[:description] if args.key?(:description)
|
|
479
|
+
@disabled_reason = args[:disabled_reason] if args.key?(:disabled_reason)
|
|
473
480
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
474
481
|
@enable_rbac = args[:enable_rbac] if args.key?(:enable_rbac)
|
|
475
482
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
|
@@ -813,31 +820,31 @@ module Google
|
|
|
813
820
|
|
|
814
821
|
# An Identity and Access Management (IAM) policy, which specifies access
|
|
815
822
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
|
816
|
-
# A `binding` binds one or more `members
|
|
817
|
-
# user accounts, service accounts, Google groups, and domains (
|
|
818
|
-
# A `role` is a named list of permissions; each `role` can be
|
|
819
|
-
# role or a user-created custom role. For some types of Google
|
|
820
|
-
# a `binding` can also specify a `condition`, which is a
|
|
821
|
-
# allows access to a resource only if the expression
|
|
822
|
-
# condition can add constraints based on attributes of
|
|
823
|
-
# or both. To learn which resources support
|
|
824
|
-
# see the [IAM documentation](https://cloud.
|
|
825
|
-
# resource-policies). **JSON example:** ` "
|
|
826
|
-
# resourcemanager.organizationAdmin", "members": [
|
|
827
|
-
# group:admins@example.com", "domain:google.com", "
|
|
828
|
-
# appspot.gserviceaccount.com" ] `, ` "role": "
|
|
829
|
-
# organizationViewer", "members": [ "user:eve@example.com"
|
|
830
|
-
# title": "expirable access", "description": "Does not grant
|
|
831
|
-
# 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
|
832
|
-
# ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
|
|
833
|
-
# members: - user:mike@example.com - group:admins@example.com -
|
|
834
|
-
# com - serviceAccount:my-project-id@appspot.gserviceaccount.com
|
|
835
|
-
# resourcemanager.organizationAdmin - members: - user:eve@example.
|
|
836
|
-
# roles/resourcemanager.organizationViewer condition: title: expirable
|
|
837
|
-
# description: Does not grant access after Sep 2020 expression: request.
|
|
838
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
|
839
|
-
# description of IAM and its features, see the [IAM documentation](https://
|
|
840
|
-
# 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/).
|
|
841
848
|
class Policy
|
|
842
849
|
include Google::Apis::Core::Hashable
|
|
843
850
|
|
|
@@ -846,9 +853,14 @@ module Google
|
|
|
846
853
|
# @return [Array<Google::Apis::DatafusionV1::AuditConfig>]
|
|
847
854
|
attr_accessor :audit_configs
|
|
848
855
|
|
|
849
|
-
# Associates a list of `members
|
|
850
|
-
# condition` that determines how and when the `bindings` are applied.
|
|
851
|
-
# 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`.
|
|
852
864
|
# Corresponds to the JSON property `bindings`
|
|
853
865
|
# @return [Array<Google::Apis::DatafusionV1::Binding>]
|
|
854
866
|
attr_accessor :bindings
|
|
@@ -920,31 +932,31 @@ module Google
|
|
|
920
932
|
|
|
921
933
|
# An Identity and Access Management (IAM) policy, which specifies access
|
|
922
934
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
|
923
|
-
# A `binding` binds one or more `members
|
|
924
|
-
# user accounts, service accounts, Google groups, and domains (
|
|
925
|
-
# A `role` is a named list of permissions; each `role` can be
|
|
926
|
-
# role or a user-created custom role. For some types of Google
|
|
927
|
-
# a `binding` can also specify a `condition`, which is a
|
|
928
|
-
# allows access to a resource only if the expression
|
|
929
|
-
# condition can add constraints based on attributes of
|
|
930
|
-
# or both. To learn which resources support
|
|
931
|
-
# see the [IAM documentation](https://cloud.
|
|
932
|
-
# resource-policies). **JSON example:** ` "
|
|
933
|
-
# resourcemanager.organizationAdmin", "members": [
|
|
934
|
-
# group:admins@example.com", "domain:google.com", "
|
|
935
|
-
# appspot.gserviceaccount.com" ] `, ` "role": "
|
|
936
|
-
# organizationViewer", "members": [ "user:eve@example.com"
|
|
937
|
-
# title": "expirable access", "description": "Does not grant
|
|
938
|
-
# 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
|
939
|
-
# ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
|
|
940
|
-
# members: - user:mike@example.com - group:admins@example.com -
|
|
941
|
-
# com - serviceAccount:my-project-id@appspot.gserviceaccount.com
|
|
942
|
-
# resourcemanager.organizationAdmin - members: - user:eve@example.
|
|
943
|
-
# roles/resourcemanager.organizationViewer condition: title: expirable
|
|
944
|
-
# description: Does not grant access after Sep 2020 expression: request.
|
|
945
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
|
946
|
-
# description of IAM and its features, see the [IAM documentation](https://
|
|
947
|
-
# 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/).
|
|
948
960
|
# Corresponds to the JSON property `policy`
|
|
949
961
|
# @return [Google::Apis::DatafusionV1::Policy]
|
|
950
962
|
attr_accessor :policy
|
|
@@ -1062,6 +1074,11 @@ module Google
|
|
|
1062
1074
|
attr_accessor :default_version
|
|
1063
1075
|
alias_method :default_version?, :default_version
|
|
1064
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
|
+
|
|
1065
1082
|
# The version number of the Data Fusion instance, such as '6.0.1.0'.
|
|
1066
1083
|
# Corresponds to the JSON property `versionNumber`
|
|
1067
1084
|
# @return [String]
|
|
@@ -1075,6 +1092,7 @@ module Google
|
|
|
1075
1092
|
def update!(**args)
|
|
1076
1093
|
@available_features = args[:available_features] if args.key?(:available_features)
|
|
1077
1094
|
@default_version = args[:default_version] if args.key?(:default_version)
|
|
1095
|
+
@type = args[:type] if args.key?(:type)
|
|
1078
1096
|
@version_number = args[:version_number] if args.key?(:version_number)
|
|
1079
1097
|
end
|
|
1080
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.10.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
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
|
|
@@ -243,6 +243,7 @@ module Google
|
|
|
243
243
|
|
|
244
244
|
property :dataproc_service_account, as: 'dataprocServiceAccount'
|
|
245
245
|
property :description, as: 'description'
|
|
246
|
+
collection :disabled_reason, as: 'disabledReason'
|
|
246
247
|
property :display_name, as: 'displayName'
|
|
247
248
|
property :enable_rbac, as: 'enableRbac'
|
|
248
249
|
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
|
@@ -404,6 +405,7 @@ module Google
|
|
|
404
405
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
405
406
|
collection :available_features, as: 'availableFeatures'
|
|
406
407
|
property :default_version, as: 'defaultVersion'
|
|
408
|
+
property :type, as: 'type'
|
|
407
409
|
property :version_number, as: 'versionNumber'
|
|
408
410
|
end
|
|
409
411
|
end
|
|
@@ -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.10.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-
|
|
11
|
+
date: 2021-11-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-datafusion_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.10.0
|
|
62
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: []
|