google-apis-datafusion_v1 0.2.0 → 0.7.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 +21 -0
- data/lib/google/apis/datafusion_v1.rb +1 -1
- data/lib/google/apis/datafusion_v1/classes.rb +7 -0
- data/lib/google/apis/datafusion_v1/gem_version.rb +3 -3
- data/lib/google/apis/datafusion_v1/representations.rb +1 -0
- data/lib/google/apis/datafusion_v1/service.rb +7 -3
- metadata +15 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6673dd841b3c2eacd293da3989d58c639b4acdd4a4ccea4b100507bdbfe5fa89
|
4
|
+
data.tar.gz: 7e0a180cd5b864236dd0d4cce180669af68a4bda50daa31603b60d934a9da51d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8f69a8fecd240c9b06b1105bee76e80e175da4ac9e420f774819504adf477c4e54fbb3358432e20cc25016bfeee417448237ce83e519b34be136cdc1e3b5f2b
|
7
|
+
data.tar.gz: 354473e6da1011faf59f78d62c1bae2223d58da8055df2a26dfb5f6622fdfaaef7b6c0144e1eb465d62a7661e86c9ad6469d43907336c5a30a995a5784fc652f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-datafusion_v1
|
2
2
|
|
3
|
+
### v0.7.0 (2021-06-24)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.3.0
|
6
|
+
|
7
|
+
### v0.6.0 (2021-05-19)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.5.0 (2021-03-24)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210322
|
14
|
+
|
15
|
+
### v0.4.0 (2021-03-13)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210311
|
18
|
+
* Regenerated using generator version 0.2.0
|
19
|
+
|
20
|
+
### v0.3.0 (2021-03-04)
|
21
|
+
|
22
|
+
* Regenerated using generator version 0.1.2
|
23
|
+
|
3
24
|
### v0.2.0 (2021-01-08)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210107
|
@@ -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
|
@@ -315,6 +315,12 @@ module Google
|
|
315
315
|
# @return [String]
|
316
316
|
attr_accessor :display_name
|
317
317
|
|
318
|
+
# Option to enable granular role-based access control.
|
319
|
+
# Corresponds to the JSON property `enableRbac`
|
320
|
+
# @return [Boolean]
|
321
|
+
attr_accessor :enable_rbac
|
322
|
+
alias_method :enable_rbac?, :enable_rbac
|
323
|
+
|
318
324
|
# Option to enable Stackdriver Logging.
|
319
325
|
# Corresponds to the JSON property `enableStackdriverLogging`
|
320
326
|
# @return [Boolean]
|
@@ -436,6 +442,7 @@ module Google
|
|
436
442
|
@dataproc_service_account = args[:dataproc_service_account] if args.key?(:dataproc_service_account)
|
437
443
|
@description = args[:description] if args.key?(:description)
|
438
444
|
@display_name = args[:display_name] if args.key?(:display_name)
|
445
|
+
@enable_rbac = args[:enable_rbac] if args.key?(:enable_rbac)
|
439
446
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
440
447
|
@enable_stackdriver_monitoring = args[:enable_stackdriver_monitoring] if args.key?(:enable_stackdriver_monitoring)
|
441
448
|
@gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
|
@@ -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.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210322"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -229,6 +229,7 @@ module Google
|
|
229
229
|
property :dataproc_service_account, as: 'dataprocServiceAccount'
|
230
230
|
property :description, as: 'description'
|
231
231
|
property :display_name, as: 'displayName'
|
232
|
+
property :enable_rbac, as: 'enableRbac'
|
232
233
|
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
233
234
|
property :enable_stackdriver_monitoring, as: 'enableStackdriverMonitoring'
|
234
235
|
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 will select 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.7.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-06-28 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.3'
|
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.3'
|
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.7.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: []
|
@@ -62,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
68
|
requirements:
|
63
69
|
- - ">="
|
64
70
|
- !ruby/object:Gem::Version
|
65
|
-
version: '2.
|
71
|
+
version: '2.5'
|
66
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
73
|
requirements:
|
68
74
|
- - ">="
|
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
|