google-apis-datafusion_v1 0.1.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ccf7523d00da7864c5468f7a097e2e6911454c5b7dcb5f7a9d2dc37effe6d6cc
4
- data.tar.gz: 6a18509805e09dba11449da97b57e3e019f0471eb3aa71d78ada8eb6a1df3104
3
+ metadata.gz: e47174ce665cd5e7bc72853f4f53b886bfddc51b9113930dd6ec088ebef02804
4
+ data.tar.gz: 27809216f1b9a5a0b955cf127893e6e08f570a6d7cdd174230c925eaeb546342
5
5
  SHA512:
6
- metadata.gz: 557ff75c94d5638445f5eca8f505029370eea2ea90b8959000dbe17a2101259c8a643f59389af8e693d8c13a568f0efb8a52436d7e3c27346dcf8ce34c272bfc
7
- data.tar.gz: cdedd787ddc0dd526b2ff7c20fa7571cceac7937ce8a7173ab27147e190e0f535780a3df6a76efdbf4a2e2f72e86abe9bfd7ee255d5b337d5c3757bf42e84341
6
+ metadata.gz: 68c0443f42276ba236d5b1c60a0b595c9f161d5750cb0b96951a797905e2ccbd61a08b89fbe68428c2783c3391a2280f80a109c99d080076fed71c746ebed428
7
+ data.tar.gz: d112ec51cb898e1e1bd0f57a60bba32e04203064adc37c1a700969f4a9517a59ff07725c8bdb31945cf6942b67e3e07d5ce7d7a13c62c86f7f88c9afd15b8b77
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datafusion_v1
2
2
 
3
+ ### v0.2.0 (2021-01-08)
4
+
5
+ * Regenerated from discovery document revision 20210107
6
+
3
7
  ### v0.1.0 (2021-01-07)
4
8
 
5
9
  * Regenerated using generator version 0.1.1
@@ -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)
@@ -714,6 +713,13 @@ module Google
714
713
  class OperationMetadata
715
714
  include Google::Apis::Core::Hashable
716
715
 
716
+ # Map to hold any additonal status info for the operation If there is an
717
+ # accelerator being enabled/disabled/deleted, this will be populated with
718
+ # accelerator name as key and status as ENABLING, DISABLING or DELETING
719
+ # Corresponds to the JSON property `additionalStatus`
720
+ # @return [Hash<String,String>]
721
+ attr_accessor :additional_status
722
+
717
723
  # API version used to start the operation.
718
724
  # Corresponds to the JSON property `apiVersion`
719
725
  # @return [String]
@@ -758,6 +764,7 @@ module Google
758
764
 
759
765
  # Update properties of this object
760
766
  def update!(**args)
767
+ @additional_status = args[:additional_status] if args.key?(:additional_status)
761
768
  @api_version = args[:api_version] if args.key?(:api_version)
762
769
  @create_time = args[:create_time] if args.key?(:create_time)
763
770
  @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.2.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.1.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20200928"
25
+ REVISION = "20210107"
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'
@@ -322,6 +322,7 @@ module Google
322
322
  class OperationMetadata
323
323
  # @private
324
324
  class Representation < Google::Apis::Core::JsonRepresentation
325
+ hash :additional_status, as: 'additionalStatus'
325
326
  property :api_version, as: 'apiVersion'
326
327
  property :create_time, as: 'createTime'
327
328
  property :end_time, as: 'endTime'
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.2.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-02-08 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.2.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: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.1.4
72
+ rubygems_version: 3.2.6
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Cloud Data Fusion API V1