google-apis-analyticshub_v1 0.19.0 → 0.20.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9d31b562b29dda776ef1053d9476ec085c64e3b78f21fd49ca2021aa7bc3c5f2
|
4
|
+
data.tar.gz: 01132a2282c3663d75b0d4b6a4dec13c5e3a6c07280d11b0dd72b26b2258bb00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e835d6f49ec62e17841c5ce02c7927271295167ca5f6132fc1153e86da91fa4135b561c22902178bd0ed2a1b367a564ed1544829db537999b44f67d369e2a51
|
7
|
+
data.tar.gz: 95de35377fff495c5572e968c5a34d530196e4c4dff719ab62cc96849fe594a4e442ff6776aaebc0e4cf448ccd9b3ea30221e2cc5a3da537e7d419c964b13c09
|
data/CHANGELOG.md
CHANGED
@@ -108,6 +108,11 @@ module Google
|
|
108
108
|
# @return [String]
|
109
109
|
attr_accessor :dataset
|
110
110
|
|
111
|
+
# Restricted export policy used to configure restricted export on linked dataset.
|
112
|
+
# Corresponds to the JSON property `restrictedExportPolicy`
|
113
|
+
# @return [Google::Apis::AnalyticshubV1::RestrictedExportPolicy]
|
114
|
+
attr_accessor :restricted_export_policy
|
115
|
+
|
111
116
|
# Optional. Resources in this dataset that are selectively shared. If this field
|
112
117
|
# is empty, then the entire dataset (all resources) are shared. This field is
|
113
118
|
# only valid for data clean room exchanges.
|
@@ -122,6 +127,7 @@ module Google
|
|
122
127
|
# Update properties of this object
|
123
128
|
def update!(**args)
|
124
129
|
@dataset = args[:dataset] if args.key?(:dataset)
|
130
|
+
@restricted_export_policy = args[:restricted_export_policy] if args.key?(:restricted_export_policy)
|
125
131
|
@selected_resources = args[:selected_resources] if args.key?(:selected_resources)
|
126
132
|
end
|
127
133
|
end
|
@@ -1139,6 +1145,42 @@ module Google
|
|
1139
1145
|
end
|
1140
1146
|
end
|
1141
1147
|
|
1148
|
+
# Restricted export policy used to configure restricted export on linked dataset.
|
1149
|
+
class RestrictedExportPolicy
|
1150
|
+
include Google::Apis::Core::Hashable
|
1151
|
+
|
1152
|
+
# Optional. If true, enable restricted export.
|
1153
|
+
# Corresponds to the JSON property `enabled`
|
1154
|
+
# @return [Boolean]
|
1155
|
+
attr_accessor :enabled
|
1156
|
+
alias_method :enabled?, :enabled
|
1157
|
+
|
1158
|
+
# Optional. If true, restrict direct table access (read api/tabledata.list) on
|
1159
|
+
# linked table.
|
1160
|
+
# Corresponds to the JSON property `restrictDirectTableAccess`
|
1161
|
+
# @return [Boolean]
|
1162
|
+
attr_accessor :restrict_direct_table_access
|
1163
|
+
alias_method :restrict_direct_table_access?, :restrict_direct_table_access
|
1164
|
+
|
1165
|
+
# Optional. If true, restrict export of query result derived from restricted
|
1166
|
+
# linked dataset table.
|
1167
|
+
# Corresponds to the JSON property `restrictQueryResult`
|
1168
|
+
# @return [Boolean]
|
1169
|
+
attr_accessor :restrict_query_result
|
1170
|
+
alias_method :restrict_query_result?, :restrict_query_result
|
1171
|
+
|
1172
|
+
def initialize(**args)
|
1173
|
+
update!(**args)
|
1174
|
+
end
|
1175
|
+
|
1176
|
+
# Update properties of this object
|
1177
|
+
def update!(**args)
|
1178
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
1179
|
+
@restrict_direct_table_access = args[:restrict_direct_table_access] if args.key?(:restrict_direct_table_access)
|
1180
|
+
@restrict_query_result = args[:restrict_query_result] if args.key?(:restrict_query_result)
|
1181
|
+
end
|
1182
|
+
end
|
1183
|
+
|
1142
1184
|
# Message for revoking a subscription.
|
1143
1185
|
class RevokeSubscriptionRequest
|
1144
1186
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AnalyticshubV1
|
18
18
|
# Version of the google-apis-analyticshub_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.20.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240408"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -190,6 +190,12 @@ module Google
|
|
190
190
|
include Google::Apis::Core::JsonObjectSupport
|
191
191
|
end
|
192
192
|
|
193
|
+
class RestrictedExportPolicy
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
193
199
|
class RevokeSubscriptionRequest
|
194
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
201
|
|
@@ -289,6 +295,8 @@ module Google
|
|
289
295
|
# @private
|
290
296
|
class Representation < Google::Apis::Core::JsonRepresentation
|
291
297
|
property :dataset, as: 'dataset'
|
298
|
+
property :restricted_export_policy, as: 'restrictedExportPolicy', class: Google::Apis::AnalyticshubV1::RestrictedExportPolicy, decorator: Google::Apis::AnalyticshubV1::RestrictedExportPolicy::Representation
|
299
|
+
|
292
300
|
collection :selected_resources, as: 'selectedResources', class: Google::Apis::AnalyticshubV1::SelectedResource, decorator: Google::Apis::AnalyticshubV1::SelectedResource::Representation
|
293
301
|
|
294
302
|
end
|
@@ -535,6 +543,15 @@ module Google
|
|
535
543
|
end
|
536
544
|
end
|
537
545
|
|
546
|
+
class RestrictedExportPolicy
|
547
|
+
# @private
|
548
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
549
|
+
property :enabled, as: 'enabled'
|
550
|
+
property :restrict_direct_table_access, as: 'restrictDirectTableAccess'
|
551
|
+
property :restrict_query_result, as: 'restrictQueryResult'
|
552
|
+
end
|
553
|
+
end
|
554
|
+
|
538
555
|
class RevokeSubscriptionRequest
|
539
556
|
# @private
|
540
557
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -913,7 +913,14 @@ module Google
|
|
913
913
|
# Required. The parent resource path of the subscription. e.g. projects/
|
914
914
|
# myproject/locations/US
|
915
915
|
# @param [String] filter
|
916
|
-
#
|
916
|
+
# An expression for filtering the results of the request. Eligible fields for
|
917
|
+
# filtering are: + `listing` + `data_exchange` Alternatively, a literal wrapped
|
918
|
+
# in double quotes may be provided. This will be checked for an exact match
|
919
|
+
# against both fields above. In all cases, the full Data Exchange or Listing
|
920
|
+
# resource name must be provided. Some example of using filters: + data_exchange=
|
921
|
+
# "projects/myproject/locations/us/dataExchanges/123" + listing="projects/123/
|
922
|
+
# locations/us/dataExchanges/456/listings/789" + "projects/myproject/locations/
|
923
|
+
# us/dataExchanges/123"
|
917
924
|
# @param [Fixnum] page_size
|
918
925
|
# The maximum number of results to return in a single response page.
|
919
926
|
# @param [String] page_token
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-analyticshub_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.20.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: 2024-
|
11
|
+
date: 2024-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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-analyticshub_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1/v0.20.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticshub_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|