google-apis-datafusion_v1 0.1.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ccf7523d00da7864c5468f7a097e2e6911454c5b7dcb5f7a9d2dc37effe6d6cc
4
- data.tar.gz: 6a18509805e09dba11449da97b57e3e019f0471eb3aa71d78ada8eb6a1df3104
3
+ metadata.gz: d93aff86b5d584af5c44550d7f135e66fb2a995e25e5dfdef6ac7363267b3822
4
+ data.tar.gz: 5c6dfeb7e42be5d47b60b659f47bd465aa56d5e023d94cbeb350057e2e0836c7
5
5
  SHA512:
6
- metadata.gz: 557ff75c94d5638445f5eca8f505029370eea2ea90b8959000dbe17a2101259c8a643f59389af8e693d8c13a568f0efb8a52436d7e3c27346dcf8ce34c272bfc
7
- data.tar.gz: cdedd787ddc0dd526b2ff7c20fa7571cceac7937ce8a7173ab27147e190e0f535780a3df6a76efdbf4a2e2f72e86abe9bfd7ee255d5b337d5c3757bf42e84341
6
+ metadata.gz: b6fc8077d3fb3b758345580c9575dd2faade5c28b6c96dcca6957086d2c5f458c01bc3e5dceb840524710047d5c1559415cabc8a6ab8c3fc20f6c9160c7833d6
7
+ data.tar.gz: a51d622fcd87c25da893fb514949ad515631b9a4576825cc9140fad1493e858d74a0408cf508a475d1bd06f3c0e883dacadb587096c3cf391cc195512c3eb4b3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-datafusion_v1
2
2
 
3
+ ### v0.6.0 (2021-05-19)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.5.0 (2021-03-24)
8
+
9
+ * Regenerated from discovery document revision 20210322
10
+
11
+ ### v0.4.0 (2021-03-13)
12
+
13
+ * Regenerated from discovery document revision 20210311
14
+ * Regenerated using generator version 0.2.0
15
+
16
+ ### v0.3.0 (2021-03-04)
17
+
18
+ * Regenerated using generator version 0.1.2
19
+
20
+ ### v0.2.0 (2021-01-08)
21
+
22
+ * Regenerated from discovery document revision 20210107
23
+
3
24
  ### v0.1.0 (2021-01-07)
4
25
 
5
26
  * Regenerated using generator version 0.1.1
@@ -35,7 +35,7 @@ module Google
35
35
  # This is NOT the gem version.
36
36
  VERSION = 'V1'
37
37
 
38
- # View and manage your data across Google Cloud Platform services
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
@@ -31,6 +31,11 @@ module Google
31
31
  # @return [String]
32
32
  attr_accessor :accelerator_type
33
33
 
34
+ # The state of the accelerator
35
+ # Corresponds to the JSON property `state`
36
+ # @return [String]
37
+ attr_accessor :state
38
+
34
39
  def initialize(**args)
35
40
  update!(**args)
36
41
  end
@@ -38,6 +43,7 @@ module Google
38
43
  # Update properties of this object
39
44
  def update!(**args)
40
45
  @accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
46
+ @state = args[:state] if args.key?(:state)
41
47
  end
42
48
  end
43
49
 
@@ -116,12 +122,6 @@ module Google
116
122
  class Binding
117
123
  include Google::Apis::Core::Hashable
118
124
 
119
- # A client-specified ID for this binding. Expected to be globally unique to
120
- # support the internal bindings-by-ID API.
121
- # Corresponds to the JSON property `bindingId`
122
- # @return [String]
123
- attr_accessor :binding_id
124
-
125
125
  # Represents a textual expression in the Common Expression Language (CEL) syntax.
126
126
  # CEL is a C-like expression language. The syntax and semantics of CEL are
127
127
  # documented at https://github.com/google/cel-spec. Example (Comparison): title:
@@ -183,7 +183,6 @@ module Google
183
183
 
184
184
  # Update properties of this object
185
185
  def update!(**args)
186
- @binding_id = args[:binding_id] if args.key?(:binding_id)
187
186
  @condition = args[:condition] if args.key?(:condition)
188
187
  @members = args[:members] if args.key?(:members)
189
188
  @role = args[:role] if args.key?(:role)
@@ -316,6 +315,12 @@ module Google
316
315
  # @return [String]
317
316
  attr_accessor :display_name
318
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
+
319
324
  # Option to enable Stackdriver Logging.
320
325
  # Corresponds to the JSON property `enableStackdriverLogging`
321
326
  # @return [Boolean]
@@ -437,6 +442,7 @@ module Google
437
442
  @dataproc_service_account = args[:dataproc_service_account] if args.key?(:dataproc_service_account)
438
443
  @description = args[:description] if args.key?(:description)
439
444
  @display_name = args[:display_name] if args.key?(:display_name)
445
+ @enable_rbac = args[:enable_rbac] if args.key?(:enable_rbac)
440
446
  @enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
441
447
  @enable_stackdriver_monitoring = args[:enable_stackdriver_monitoring] if args.key?(:enable_stackdriver_monitoring)
442
448
  @gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
@@ -714,6 +720,13 @@ module Google
714
720
  class OperationMetadata
715
721
  include Google::Apis::Core::Hashable
716
722
 
723
+ # Map to hold any additonal status info for the operation If there is an
724
+ # accelerator being enabled/disabled/deleted, this will be populated with
725
+ # accelerator name as key and status as ENABLING, DISABLING or DELETING
726
+ # Corresponds to the JSON property `additionalStatus`
727
+ # @return [Hash<String,String>]
728
+ attr_accessor :additional_status
729
+
717
730
  # API version used to start the operation.
718
731
  # Corresponds to the JSON property `apiVersion`
719
732
  # @return [String]
@@ -758,6 +771,7 @@ module Google
758
771
 
759
772
  # Update properties of this object
760
773
  def update!(**args)
774
+ @additional_status = args[:additional_status] if args.key?(:additional_status)
761
775
  @api_version = args[:api_version] if args.key?(:api_version)
762
776
  @create_time = args[:create_time] if args.key?(:create_time)
763
777
  @end_time = args[:end_time] if args.key?(:end_time)
@@ -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.1.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.1"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20200928"
25
+ REVISION = "20210322"
26
26
  end
27
27
  end
28
28
  end
@@ -164,6 +164,7 @@ module Google
164
164
  # @private
165
165
  class Representation < Google::Apis::Core::JsonRepresentation
166
166
  property :accelerator_type, as: 'acceleratorType'
167
+ property :state, as: 'state'
167
168
  end
168
169
  end
169
170
 
@@ -187,7 +188,6 @@ module Google
187
188
  class Binding
188
189
  # @private
189
190
  class Representation < Google::Apis::Core::JsonRepresentation
190
- property :binding_id, as: 'bindingId'
191
191
  property :condition, as: 'condition', class: Google::Apis::DatafusionV1::Expr, decorator: Google::Apis::DatafusionV1::Expr::Representation
192
192
 
193
193
  collection :members, as: 'members'
@@ -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'
@@ -322,6 +323,7 @@ module Google
322
323
  class OperationMetadata
323
324
  # @private
324
325
  class Representation < Google::Apis::Core::JsonRepresentation
326
+ hash :additional_status, as: 'additionalStatus'
325
327
  property :api_version, as: 'apiVersion'
326
328
  property :create_time, as: 'createTime'
327
329
  property :end_time, as: 'endTime'
@@ -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
- # The standard list filter.
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 standard list page size.
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
- # The standard list page token.
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,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.1.0
4
+ version: 0.6.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-01-08 00:00:00.000000000 Z
11
+ date: 2021-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  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.1.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.6.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-datafusion_v1
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
- version: '2.4'
65
+ version: '2.5'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.1.4
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Cloud Data Fusion API V1