google-apis-datafusion_v1beta1 0.14.0 → 0.15.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7de4e01bc599b8e2cccd1e77f8f396eb7d3a5838b73ad50d00aa0df01555cf57
|
4
|
+
data.tar.gz: 60041bf110e4e3e5360394ef82fbd61bd7eb010e5f8a5b5a823b06015c56bda0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6650958ae7ef658b5335afaedf5b3424bc7b3d07d09c6347ce29d7ac73509b982137d6979a26d1d9d621495d4c1327a172d0f466451ca8ac64f490cc3c841b68
|
7
|
+
data.tar.gz: ed7ba43becb0db82fdf4853235137e9d02ede9df5658eaeb81ab17c7099fb154cb5834df92c3c9b13c25387209172cea03014b839acccfa4e9b696982a5538a9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-datafusion_v1beta1
|
2
2
|
|
3
|
+
### v0.15.0 (2022-06-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220603
|
6
|
+
* Regenerated using generator version 0.5.0
|
7
|
+
|
3
8
|
### v0.14.0 (2022-05-09)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20220504
|
@@ -279,6 +279,33 @@ module Google
|
|
279
279
|
end
|
280
280
|
end
|
281
281
|
|
282
|
+
# Confirguration of PubSubEventWriter.
|
283
|
+
class EventPublishConfig
|
284
|
+
include Google::Apis::Core::Hashable
|
285
|
+
|
286
|
+
# Required. Option to enable Event Publishing.
|
287
|
+
# Corresponds to the JSON property `enabled`
|
288
|
+
# @return [Boolean]
|
289
|
+
attr_accessor :enabled
|
290
|
+
alias_method :enabled?, :enabled
|
291
|
+
|
292
|
+
# Required. The resource name of the Pub/Sub topic. Format: projects/`project_id`
|
293
|
+
# /topics/`topic_id`
|
294
|
+
# Corresponds to the JSON property `topic`
|
295
|
+
# @return [String]
|
296
|
+
attr_accessor :topic
|
297
|
+
|
298
|
+
def initialize(**args)
|
299
|
+
update!(**args)
|
300
|
+
end
|
301
|
+
|
302
|
+
# Update properties of this object
|
303
|
+
def update!(**args)
|
304
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
305
|
+
@topic = args[:topic] if args.key?(:topic)
|
306
|
+
end
|
307
|
+
end
|
308
|
+
|
282
309
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
283
310
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
284
311
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
@@ -462,6 +489,11 @@ module Google
|
|
462
489
|
attr_accessor :enable_stackdriver_monitoring
|
463
490
|
alias_method :enable_stackdriver_monitoring?, :enable_stackdriver_monitoring
|
464
491
|
|
492
|
+
# Confirguration of PubSubEventWriter.
|
493
|
+
# Corresponds to the JSON property `eventPublishConfig`
|
494
|
+
# @return [Google::Apis::DatafusionV1beta1::EventPublishConfig]
|
495
|
+
attr_accessor :event_publish_config
|
496
|
+
|
465
497
|
# Output only. Cloud Storage bucket generated by Data Fusion in the customer
|
466
498
|
# project.
|
467
499
|
# Corresponds to the JSON property `gcsBucket`
|
@@ -576,6 +608,7 @@ module Google
|
|
576
608
|
@enable_rbac = args[:enable_rbac] if args.key?(:enable_rbac)
|
577
609
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
578
610
|
@enable_stackdriver_monitoring = args[:enable_stackdriver_monitoring] if args.key?(:enable_stackdriver_monitoring)
|
611
|
+
@event_publish_config = args[:event_publish_config] if args.key?(:event_publish_config)
|
579
612
|
@gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
|
580
613
|
@labels = args[:labels] if args.key?(:labels)
|
581
614
|
@name = args[:name] if args.key?(:name)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DatafusionV1beta1
|
18
18
|
# Version of the google-apis-datafusion_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.15.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.5.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220603"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -70,6 +70,12 @@ module Google
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
71
71
|
end
|
72
72
|
|
73
|
+
class EventPublishConfig
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
73
79
|
class Expr
|
74
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
81
|
|
@@ -278,6 +284,14 @@ module Google
|
|
278
284
|
end
|
279
285
|
end
|
280
286
|
|
287
|
+
class EventPublishConfig
|
288
|
+
# @private
|
289
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
290
|
+
property :enabled, as: 'enabled'
|
291
|
+
property :topic, as: 'topic'
|
292
|
+
end
|
293
|
+
end
|
294
|
+
|
281
295
|
class Expr
|
282
296
|
# @private
|
283
297
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -316,6 +330,8 @@ module Google
|
|
316
330
|
property :enable_rbac, as: 'enableRbac'
|
317
331
|
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
318
332
|
property :enable_stackdriver_monitoring, as: 'enableStackdriverMonitoring'
|
333
|
+
property :event_publish_config, as: 'eventPublishConfig', class: Google::Apis::DatafusionV1beta1::EventPublishConfig, decorator: Google::Apis::DatafusionV1beta1::EventPublishConfig::Representation
|
334
|
+
|
319
335
|
property :gcs_bucket, as: 'gcsBucket'
|
320
336
|
hash :labels, as: 'labels'
|
321
337
|
property :name, as: 'name'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datafusion_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.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: 2022-
|
11
|
+
date: 2022-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.5'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.5'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.15.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Data Fusion API V1beta1
|