google-apis-analyticshub_v1 0.18.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: 1304a7212bbce381e3208009f8d02eac194a64478caa6648c8f1169bd07c8eb4
4
- data.tar.gz: 74d31039333be23532fc6573cb8c87fbcee9d465f94c8b3137ed56caf0b34982
3
+ metadata.gz: 9d31b562b29dda776ef1053d9476ec085c64e3b78f21fd49ca2021aa7bc3c5f2
4
+ data.tar.gz: 01132a2282c3663d75b0d4b6a4dec13c5e3a6c07280d11b0dd72b26b2258bb00
5
5
  SHA512:
6
- metadata.gz: 543df78b5f6b1ea03f19e6e94c3e5206c0544b0914fbed8254973b481fdc451a987cfcf911d4156dd4b3223510b4489d88cf7fd93a30439318193a478f40a12d
7
- data.tar.gz: 94fc87224e826d7aa0f893c2cb633b4a4b32358a5207def5ded762bd944b77b0076d22c46036ae0daf48d4b682b1111899452b20ffb9f9c192b0d14d6e9e8be2
6
+ metadata.gz: 4e835d6f49ec62e17841c5ce02c7927271295167ca5f6132fc1153e86da91fa4135b561c22902178bd0ed2a1b367a564ed1544829db537999b44f67d369e2a51
7
+ data.tar.gz: 95de35377fff495c5572e968c5a34d530196e4c4dff719ab62cc96849fe594a4e442ff6776aaebc0e4cf448ccd9b3ea30221e2cc5a3da537e7d419c964b13c09
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-analyticshub_v1
2
2
 
3
+ ### v0.20.0 (2024-04-21)
4
+
5
+ * Regenerated from discovery document revision 20240408
6
+
7
+ ### v0.19.0 (2024-03-17)
8
+
9
+ * Regenerated from discovery document revision 20240307
10
+
3
11
  ### v0.18.0 (2024-02-23)
4
12
 
5
13
  * Regenerated from discovery document revision 20240219
@@ -108,6 +108,18 @@ 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
+
116
+ # Optional. Resources in this dataset that are selectively shared. If this field
117
+ # is empty, then the entire dataset (all resources) are shared. This field is
118
+ # only valid for data clean room exchanges.
119
+ # Corresponds to the JSON property `selectedResources`
120
+ # @return [Array<Google::Apis::AnalyticshubV1::SelectedResource>]
121
+ attr_accessor :selected_resources
122
+
111
123
  def initialize(**args)
112
124
  update!(**args)
113
125
  end
@@ -115,6 +127,8 @@ module Google
115
127
  # Update properties of this object
116
128
  def update!(**args)
117
129
  @dataset = args[:dataset] if args.key?(:dataset)
130
+ @restricted_export_policy = args[:restricted_export_policy] if args.key?(:restricted_export_policy)
131
+ @selected_resources = args[:selected_resources] if args.key?(:selected_resources)
118
132
  end
119
133
  end
120
134
 
@@ -1131,6 +1145,42 @@ module Google
1131
1145
  end
1132
1146
  end
1133
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
+
1134
1184
  # Message for revoking a subscription.
1135
1185
  class RevokeSubscriptionRequest
1136
1186
  include Google::Apis::Core::Hashable
@@ -1157,6 +1207,27 @@ module Google
1157
1207
  end
1158
1208
  end
1159
1209
 
1210
+ # Resource in this dataset that are selectively shared.
1211
+ class SelectedResource
1212
+ include Google::Apis::Core::Hashable
1213
+
1214
+ # Optional. Format: For table: `projects/`projectId`/datasets/`datasetId`/tables/
1215
+ # `tableId`` Example:"projects/test_project/datasets/test_dataset/tables/
1216
+ # test_table"
1217
+ # Corresponds to the JSON property `table`
1218
+ # @return [String]
1219
+ attr_accessor :table
1220
+
1221
+ def initialize(**args)
1222
+ update!(**args)
1223
+ end
1224
+
1225
+ # Update properties of this object
1226
+ def update!(**args)
1227
+ @table = args[:table] if args.key?(:table)
1228
+ end
1229
+ end
1230
+
1160
1231
  # Request message for `SetIamPolicy` method.
1161
1232
  class SetIamPolicyRequest
1162
1233
  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.18.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 = "20240219"
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
 
@@ -202,6 +208,12 @@ module Google
202
208
  include Google::Apis::Core::JsonObjectSupport
203
209
  end
204
210
 
211
+ class SelectedResource
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
205
217
  class SetIamPolicyRequest
206
218
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
219
 
@@ -283,6 +295,10 @@ module Google
283
295
  # @private
284
296
  class Representation < Google::Apis::Core::JsonRepresentation
285
297
  property :dataset, as: 'dataset'
298
+ property :restricted_export_policy, as: 'restrictedExportPolicy', class: Google::Apis::AnalyticshubV1::RestrictedExportPolicy, decorator: Google::Apis::AnalyticshubV1::RestrictedExportPolicy::Representation
299
+
300
+ collection :selected_resources, as: 'selectedResources', class: Google::Apis::AnalyticshubV1::SelectedResource, decorator: Google::Apis::AnalyticshubV1::SelectedResource::Representation
301
+
286
302
  end
287
303
  end
288
304
 
@@ -527,6 +543,15 @@ module Google
527
543
  end
528
544
  end
529
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
+
530
555
  class RevokeSubscriptionRequest
531
556
  # @private
532
557
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -539,6 +564,13 @@ module Google
539
564
  end
540
565
  end
541
566
 
567
+ class SelectedResource
568
+ # @private
569
+ class Representation < Google::Apis::Core::JsonRepresentation
570
+ property :table, as: 'table'
571
+ end
572
+ end
573
+
542
574
  class SetIamPolicyRequest
543
575
  # @private
544
576
  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
- # The filter expression may be used to filter by Data Exchange or Listing.
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.18.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-02-25 00:00:00.000000000 Z
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.18.0
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: []