google-apis-datafusion_v1 0.3.0 → 0.8.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 +22 -0
- data/lib/google/apis/datafusion_v1.rb +1 -1
- data/lib/google/apis/datafusion_v1/classes.rb +39 -3
- data/lib/google/apis/datafusion_v1/gem_version.rb +3 -3
- data/lib/google/apis/datafusion_v1/representations.rb +16 -0
- data/lib/google/apis/datafusion_v1/service.rb +7 -3
- metadata +14 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b96cd6900fa655f2a80fa41c348dd9da356ee63a9cc03600552f1db6e31a224
|
4
|
+
data.tar.gz: a531edbf6b62c25a5ad371f0e67c9502252bebd1cd451b137abd2ffe15bdfe4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 398c878bd74b3f7884613864fb5b5ee8809fda9ca8e124b277af2ed5331e45434a23851fe5a92c21de29e7daff8a1fd0da898cbcb696a6fbf21d80eb84636bb6
|
7
|
+
data.tar.gz: 31efe4569447dabf6277e6538e3133d563493a6f6ede8d137db4bf4c9283c2bc45231fc2dd7ee5b8ac94b87a16aa72f0a1c6b653440b9ab2c3c6a387c3db3ec1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-datafusion_v1
|
2
2
|
|
3
|
+
### v0.8.0 (2021-07-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210628
|
6
|
+
* Regenerated using generator version 0.4.0
|
7
|
+
|
8
|
+
### v0.7.0 (2021-06-24)
|
9
|
+
|
10
|
+
* Regenerated using generator version 0.3.0
|
11
|
+
|
12
|
+
### v0.6.0 (2021-05-19)
|
13
|
+
|
14
|
+
* Unspecified changes
|
15
|
+
|
16
|
+
### v0.5.0 (2021-03-24)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210322
|
19
|
+
|
20
|
+
### v0.4.0 (2021-03-13)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210311
|
23
|
+
* Regenerated using generator version 0.2.0
|
24
|
+
|
3
25
|
### v0.3.0 (2021-03-04)
|
4
26
|
|
5
27
|
* Regenerated using generator version 0.1.2
|
@@ -35,7 +35,7 @@ module Google
|
|
35
35
|
# This is NOT the gem version.
|
36
36
|
VERSION = 'V1'
|
37
37
|
|
38
|
-
#
|
38
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
39
39
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
40
40
|
end
|
41
41
|
end
|
@@ -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.
|
@@ -315,6 +343,12 @@ module Google
|
|
315
343
|
# @return [String]
|
316
344
|
attr_accessor :display_name
|
317
345
|
|
346
|
+
# Option to enable granular role-based access control.
|
347
|
+
# Corresponds to the JSON property `enableRbac`
|
348
|
+
# @return [Boolean]
|
349
|
+
attr_accessor :enable_rbac
|
350
|
+
alias_method :enable_rbac?, :enable_rbac
|
351
|
+
|
318
352
|
# Option to enable Stackdriver Logging.
|
319
353
|
# Corresponds to the JSON property `enableStackdriverLogging`
|
320
354
|
# @return [Boolean]
|
@@ -334,8 +368,8 @@ module Google
|
|
334
368
|
attr_accessor :gcs_bucket
|
335
369
|
|
336
370
|
# The resource labels for instance to use to annotate any related underlying
|
337
|
-
# resources such as
|
338
|
-
# the labels.
|
371
|
+
# resources such as Compute Engine VMs. The character '=' is not allowed to be
|
372
|
+
# used within the labels.
|
339
373
|
# Corresponds to the JSON property `labels`
|
340
374
|
# @return [Hash<String,String>]
|
341
375
|
attr_accessor :labels
|
@@ -433,9 +467,11 @@ module Google
|
|
433
467
|
@api_endpoint = args[:api_endpoint] if args.key?(:api_endpoint)
|
434
468
|
@available_version = args[:available_version] if args.key?(:available_version)
|
435
469
|
@create_time = args[:create_time] if args.key?(:create_time)
|
470
|
+
@crypto_key_config = args[:crypto_key_config] if args.key?(:crypto_key_config)
|
436
471
|
@dataproc_service_account = args[:dataproc_service_account] if args.key?(:dataproc_service_account)
|
437
472
|
@description = args[:description] if args.key?(:description)
|
438
473
|
@display_name = args[:display_name] if args.key?(:display_name)
|
474
|
+
@enable_rbac = args[:enable_rbac] if args.key?(:enable_rbac)
|
439
475
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
440
476
|
@enable_stackdriver_monitoring = args[:enable_stackdriver_monitoring] if args.key?(:enable_stackdriver_monitoring)
|
441
477
|
@gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
|
@@ -713,7 +749,7 @@ module Google
|
|
713
749
|
class OperationMetadata
|
714
750
|
include Google::Apis::Core::Hashable
|
715
751
|
|
716
|
-
# Map to hold any
|
752
|
+
# Map to hold any additional status info for the operation If there is an
|
717
753
|
# accelerator being enabled/disabled/deleted, this will be populated with
|
718
754
|
# accelerator name as key and status as ENABLING, DISABLING or DELETING
|
719
755
|
# Corresponds to the JSON property `additionalStatus`
|
@@ -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.8.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 = "20210628"
|
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,9 +239,12 @@ 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'
|
231
246
|
property :display_name, as: 'displayName'
|
247
|
+
property :enable_rbac, as: 'enableRbac'
|
232
248
|
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
233
249
|
property :enable_stackdriver_monitoring, as: 'enableStackdriverMonitoring'
|
234
250
|
property :gcs_bucket, as: 'gcsBucket'
|
@@ -89,13 +89,17 @@ module Google
|
|
89
89
|
# @param [String] name
|
90
90
|
# The resource that owns the locations collection, if applicable.
|
91
91
|
# @param [String] filter
|
92
|
-
#
|
92
|
+
# A filter to narrow down results to a preferred subset. The filtering language
|
93
|
+
# accepts strings like "displayName=tokyo", and is documented in more detail in [
|
94
|
+
# AIP-160](https://google.aip.dev/160).
|
93
95
|
# @param [Boolean] include_unrevealed_locations
|
94
96
|
# If true, the returned list will include locations which are not yet revealed.
|
95
97
|
# @param [Fixnum] page_size
|
96
|
-
# The
|
98
|
+
# The maximum number of results to return. If not set, the service selects a
|
99
|
+
# default.
|
97
100
|
# @param [String] page_token
|
98
|
-
#
|
101
|
+
# A page token received from the `next_page_token` field in the response. Send
|
102
|
+
# that page token to receive the subsequent page.
|
99
103
|
# @param [String] fields
|
100
104
|
# Selector specifying which fields to include in a partial response.
|
101
105
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.8.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-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Cloud Data Fusion API V1. Simple REST
|
28
34
|
clients are Ruby client libraries that provide access to Google services via their
|
29
35
|
HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-datafusion_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.8.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-datafusion_v1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Cloud Data Fusion API V1
|