google-apis-datafusion_v1beta1 0.13.0 → 0.16.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 +13 -0
- data/lib/google/apis/datafusion_v1beta1/classes.rb +38 -6
- data/lib/google/apis/datafusion_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/datafusion_v1beta1/representations.rb +16 -0
- data/lib/google/apis/datafusion_v1beta1/service.rb +29 -20
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a490cd8aae2eea4a66471d58ab89d1b3761a1f5c201fe1ea91e60e56d956c3a9
|
4
|
+
data.tar.gz: 5a7eccf736139c3de934b619bd6e23ce904c93f7066e44973c00500c9a2c3a50
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cec22e1a82b09d180ecba3d491e56c5c9b333b8f80836a8396f5ad3e747afae1ec83fca8d7fdb9460de701c90eefa5af0b9686fa2547b703dd98707b1cb09b6c
|
7
|
+
data.tar.gz: 96301c7fdfebcf80cbdb5806d4fff3b3d372a6c641cc4813785a5a4e836890eee4aabfb615287cafa52a5307828dc605ae57a2e7308550c4e81ccf3cae7bae77
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-datafusion_v1beta1
|
2
2
|
|
3
|
+
### v0.16.0 (2022-06-18)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.7.0
|
6
|
+
|
7
|
+
### v0.15.0 (2022-06-07)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220603
|
10
|
+
* Regenerated using generator version 0.5.0
|
11
|
+
|
12
|
+
### v0.14.0 (2022-05-09)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20220504
|
15
|
+
|
3
16
|
### v0.13.0 (2022-03-21)
|
4
17
|
|
5
18
|
* Regenerated from discovery document revision 20220316
|
@@ -54,8 +54,8 @@ module Google
|
|
54
54
|
# "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
|
55
55
|
# , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
|
56
56
|
# this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
|
57
|
-
# exempts jose@example.com from DATA_READ logging, and aliya@example.com
|
58
|
-
# DATA_WRITE logging.
|
57
|
+
# exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
|
58
|
+
# from DATA_WRITE logging.
|
59
59
|
class AuditConfig
|
60
60
|
include Google::Apis::Core::Hashable
|
61
61
|
|
@@ -135,7 +135,7 @@ module Google
|
|
135
135
|
# @return [Google::Apis::DatafusionV1beta1::Expr]
|
136
136
|
attr_accessor :condition
|
137
137
|
|
138
|
-
# Specifies the principals requesting access for a Cloud
|
138
|
+
# Specifies the principals requesting access for a Google Cloud resource. `
|
139
139
|
# members` can have the following values: * `allUsers`: A special identifier
|
140
140
|
# that represents anyone who is on the internet; with or without a Google
|
141
141
|
# account. * `allAuthenticatedUsers`: A special identifier that represents
|
@@ -266,8 +266,7 @@ module Google
|
|
266
266
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
267
267
|
# messages in your APIs. A typical example is to use it as the request or the
|
268
268
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
269
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
270
|
-
# `Empty` is empty JSON object ````.
|
269
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
271
270
|
class Empty
|
272
271
|
include Google::Apis::Core::Hashable
|
273
272
|
|
@@ -280,6 +279,33 @@ module Google
|
|
280
279
|
end
|
281
280
|
end
|
282
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
|
+
|
283
309
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
284
310
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
285
311
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
@@ -463,6 +489,11 @@ module Google
|
|
463
489
|
attr_accessor :enable_stackdriver_monitoring
|
464
490
|
alias_method :enable_stackdriver_monitoring?, :enable_stackdriver_monitoring
|
465
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
|
+
|
466
497
|
# Output only. Cloud Storage bucket generated by Data Fusion in the customer
|
467
498
|
# project.
|
468
499
|
# Corresponds to the JSON property `gcsBucket`
|
@@ -577,6 +608,7 @@ module Google
|
|
577
608
|
@enable_rbac = args[:enable_rbac] if args.key?(:enable_rbac)
|
578
609
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
579
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)
|
580
612
|
@gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
|
581
613
|
@labels = args[:labels] if args.key?(:labels)
|
582
614
|
@name = args[:name] if args.key?(:name)
|
@@ -1215,7 +1247,7 @@ module Google
|
|
1215
1247
|
include Google::Apis::Core::Hashable
|
1216
1248
|
|
1217
1249
|
# The set of permissions to check for the `resource`. Permissions with wildcards
|
1218
|
-
# (such as
|
1250
|
+
# (such as `*` or `storage.*`) are not allowed. For more information see [IAM
|
1219
1251
|
# Overview](https://cloud.google.com/iam/docs/overview#permissions).
|
1220
1252
|
# Corresponds to the JSON property `permissions`
|
1221
1253
|
# @return [Array<String>]
|
@@ -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.16.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.7.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'
|
@@ -90,8 +90,8 @@ module Google
|
|
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"
|
94
|
-
# AIP-160](https://google.aip.dev/160).
|
93
|
+
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
94
|
+
# in [AIP-160](https://google.aip.dev/160).
|
95
95
|
# @param [Boolean] include_unrevealed_locations
|
96
96
|
# If true, the returned list will include locations which are not yet revealed.
|
97
97
|
# @param [Fixnum] page_size
|
@@ -266,8 +266,9 @@ module Google
|
|
266
266
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
267
267
|
# resource exists and does not have a policy set.
|
268
268
|
# @param [String] resource
|
269
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
270
|
-
#
|
269
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
270
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
271
|
+
# appropriate value for this field.
|
271
272
|
# @param [Fixnum] options_requested_policy_version
|
272
273
|
# Optional. The maximum policy version that will be used to format the policy.
|
273
274
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -433,8 +434,9 @@ module Google
|
|
433
434
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
434
435
|
# PERMISSION_DENIED` errors.
|
435
436
|
# @param [String] resource
|
436
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
437
|
-
#
|
437
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
438
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
439
|
+
# appropriate value for this field.
|
438
440
|
# @param [Google::Apis::DatafusionV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
|
439
441
|
# @param [String] fields
|
440
442
|
# Selector specifying which fields to include in a partial response.
|
@@ -471,8 +473,9 @@ module Google
|
|
471
473
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
472
474
|
# This operation may "fail open" without warning.
|
473
475
|
# @param [String] resource
|
474
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
475
|
-
#
|
476
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
477
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
478
|
+
# appropriate value for this field.
|
476
479
|
# @param [Google::Apis::DatafusionV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
477
480
|
# @param [String] fields
|
478
481
|
# Selector specifying which fields to include in a partial response.
|
@@ -539,10 +542,12 @@ module Google
|
|
539
542
|
execute_or_queue_command(command, &block)
|
540
543
|
end
|
541
544
|
|
542
|
-
#
|
545
|
+
# Creates DNS peering on the given resource.
|
543
546
|
# @param [String] parent
|
544
547
|
# Required. The resource on which DNS peering will be created.
|
545
548
|
# @param [Google::Apis::DatafusionV1beta1::DnsPeering] dns_peering_object
|
549
|
+
# @param [String] dns_peering_id
|
550
|
+
# Required. The name of the peering to create.
|
546
551
|
# @param [String] fields
|
547
552
|
# Selector specifying which fields to include in a partial response.
|
548
553
|
# @param [String] quota_user
|
@@ -560,19 +565,20 @@ module Google
|
|
560
565
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
561
566
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
562
567
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
563
|
-
def create_project_location_instance_dns_peering(parent, dns_peering_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
568
|
+
def create_project_location_instance_dns_peering(parent, dns_peering_object = nil, dns_peering_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
564
569
|
command = make_simple_command(:post, 'v1beta1/{+parent}/dnsPeerings', options)
|
565
570
|
command.request_representation = Google::Apis::DatafusionV1beta1::DnsPeering::Representation
|
566
571
|
command.request_object = dns_peering_object
|
567
572
|
command.response_representation = Google::Apis::DatafusionV1beta1::DnsPeering::Representation
|
568
573
|
command.response_class = Google::Apis::DatafusionV1beta1::DnsPeering
|
569
574
|
command.params['parent'] = parent unless parent.nil?
|
575
|
+
command.query['dnsPeeringId'] = dns_peering_id unless dns_peering_id.nil?
|
570
576
|
command.query['fields'] = fields unless fields.nil?
|
571
577
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
572
578
|
execute_or_queue_command(command, &block)
|
573
579
|
end
|
574
580
|
|
575
|
-
#
|
581
|
+
# Deletes DNS peering on the given resource.
|
576
582
|
# @param [String] name
|
577
583
|
# Required. The name of the DNS peering zone to delete. Format: projects/`
|
578
584
|
# project`/locations/`location`/instances/`instance`/dnsPeerings/`dns_peering`
|
@@ -603,14 +609,14 @@ module Google
|
|
603
609
|
execute_or_queue_command(command, &block)
|
604
610
|
end
|
605
611
|
|
606
|
-
#
|
612
|
+
# Lists DNS peerings for a given resource.
|
607
613
|
# @param [String] parent
|
608
614
|
# Required. The parent, which owns this collection of dns peerings. Format:
|
609
615
|
# projects/`project`/locations/`location`/instances/`instance`
|
610
616
|
# @param [Fixnum] page_size
|
611
617
|
# The maximum number of dns peerings to return. The service may return fewer
|
612
|
-
# than this value. If unspecified, at most
|
613
|
-
# maximum value is
|
618
|
+
# than this value. If unspecified, at most 50 dns peerings will be returned. The
|
619
|
+
# maximum value is 200; values above 200 will be coerced to 200.
|
614
620
|
# @param [String] page_token
|
615
621
|
# A page token, received from a previous `ListDnsPeerings` call. Provide this to
|
616
622
|
# retrieve the subsequent page. When paginating, all other parameters provided
|
@@ -647,8 +653,9 @@ module Google
|
|
647
653
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
648
654
|
# resource exists and does not have a policy set.
|
649
655
|
# @param [String] resource
|
650
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
651
|
-
#
|
656
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
657
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
658
|
+
# appropriate value for this field.
|
652
659
|
# @param [Fixnum] options_requested_policy_version
|
653
660
|
# Optional. The maximum policy version that will be used to format the policy.
|
654
661
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -734,8 +741,9 @@ module Google
|
|
734
741
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
735
742
|
# PERMISSION_DENIED` errors.
|
736
743
|
# @param [String] resource
|
737
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
738
|
-
#
|
744
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
745
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
746
|
+
# appropriate value for this field.
|
739
747
|
# @param [Google::Apis::DatafusionV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
|
740
748
|
# @param [String] fields
|
741
749
|
# Selector specifying which fields to include in a partial response.
|
@@ -772,8 +780,9 @@ module Google
|
|
772
780
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
773
781
|
# This operation may "fail open" without warning.
|
774
782
|
# @param [String] resource
|
775
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
776
|
-
#
|
783
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
784
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
785
|
+
# appropriate value for this field.
|
777
786
|
# @param [Google::Apis::DatafusionV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
778
787
|
# @param [String] fields
|
779
788
|
# Selector specifying which fields to include in a partial response.
|
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.16.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-20 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.6'
|
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.6'
|
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.16.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
|