google-apis-analyticshub_v1 0.36.0 → 0.38.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: 6497e8a940471c84479a86f740f954a31ee0b2c1f64edf9144ac431fea332e6d
4
- data.tar.gz: 149fb4b2389dde8ed951712843646dcd49d8da36921e5914fbe2dca01347b1e7
3
+ metadata.gz: 35b93d0fb4ded1da7ee7429717e088a6082bf0a9b9c1488ff9ef66d9b92ab6d3
4
+ data.tar.gz: dc23da3cd6ffe4119b8fe1ab4a47f6cfa89dbea6f510ed27abb0e22d8e442e66
5
5
  SHA512:
6
- metadata.gz: 86674c0081d9faf994706fbe4d2ba8acf889ae8fe46ece4d6f7d3ec9b5ad070f430d652e76ea28cbd0f82718e569037c50f4e1de92e2e282436ef6cb1be54b6a
7
- data.tar.gz: 3d3f97ef368604efc3b9adcb09d1d1dba9b4c044a80fc612a55aad15a2771afc78eed1761aacc4d16d345f18a5fac0c6293d78268cdd0541ee384819d73d651a
6
+ metadata.gz: b8522e5a231aeaefd4a8254ebaf9d6a4ebfde51df3d7b45b6d8acfad8feb7ba3c5af827c8b96c011c7440df230ffe171beaa8e57e3744368138565409b6f763b
7
+ data.tar.gz: 9107c61d059c2dab60f8ca3c8859a589a29279aa094e3f5dfc3ad41888b0c585b4dadf063744079ca239c1ec508c6868ad7ae9e4e44be82f76470ee216a65aee
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-analyticshub_v1
2
2
 
3
+ ### v0.38.0 (2025-10-26)
4
+
5
+ * Regenerated from discovery document revision 20251020
6
+
7
+ ### v0.37.0 (2025-09-07)
8
+
9
+ * Regenerated from discovery document revision 20250901
10
+
3
11
  ### v0.36.0 (2025-08-17)
4
12
 
5
13
  * Regenerated from discovery document revision 20250807
@@ -224,6 +224,19 @@ module Google
224
224
  # @return [String]
225
225
  attr_accessor :dataset
226
226
 
227
+ # Output only. Server-owned effective state of replicas. Contains both primary
228
+ # and secondary replicas. Each replica includes a system-computed (output-only)
229
+ # state and primary designation.
230
+ # Corresponds to the JSON property `effectiveReplicas`
231
+ # @return [Array<Google::Apis::AnalyticshubV1::Replica>]
232
+ attr_accessor :effective_replicas
233
+
234
+ # Optional. A list of regions where the publisher has created shared dataset
235
+ # replicas.
236
+ # Corresponds to the JSON property `replicaLocations`
237
+ # @return [Array<String>]
238
+ attr_accessor :replica_locations
239
+
227
240
  # Restricted export policy used to configure restricted export on linked dataset.
228
241
  # Corresponds to the JSON property `restrictedExportPolicy`
229
242
  # @return [Google::Apis::AnalyticshubV1::RestrictedExportPolicy]
@@ -242,6 +255,8 @@ module Google
242
255
  # Update properties of this object
243
256
  def update!(**args)
244
257
  @dataset = args[:dataset] if args.key?(:dataset)
258
+ @effective_replicas = args[:effective_replicas] if args.key?(:effective_replicas)
259
+ @replica_locations = args[:replica_locations] if args.key?(:replica_locations)
245
260
  @restricted_export_policy = args[:restricted_export_policy] if args.key?(:restricted_export_policy)
246
261
  @selected_resources = args[:selected_resources] if args.key?(:selected_resources)
247
262
  end
@@ -683,6 +698,13 @@ module Google
683
698
  # @return [String]
684
699
  attr_accessor :location
685
700
 
701
+ # Optional. The geographic locations where the dataset should be replicated. See
702
+ # [BigQuery locations](https://cloud.google.com/bigquery/docs/locations) for
703
+ # supported locations.
704
+ # Corresponds to the JSON property `replicaLocations`
705
+ # @return [Array<String>]
706
+ attr_accessor :replica_locations
707
+
686
708
  def initialize(**args)
687
709
  update!(**args)
688
710
  end
@@ -694,6 +716,7 @@ module Google
694
716
  @friendly_name = args[:friendly_name] if args.key?(:friendly_name)
695
717
  @labels = args[:labels] if args.key?(:labels)
696
718
  @location = args[:location] if args.key?(:location)
719
+ @replica_locations = args[:replica_locations] if args.key?(:replica_locations)
697
720
  end
698
721
  end
699
722
 
@@ -1117,6 +1140,13 @@ module Google
1117
1140
  # @return [Google::Apis::AnalyticshubV1::RetryPolicy]
1118
1141
  attr_accessor :retry_policy
1119
1142
 
1143
+ # Optional. Input only. Immutable. Tag keys/values directly bound to this
1144
+ # resource. For example: "123/environment": "production", "123/costCenter": "
1145
+ # marketing"
1146
+ # Corresponds to the JSON property `tags`
1147
+ # @return [Hash<String,String>]
1148
+ attr_accessor :tags
1149
+
1120
1150
  def initialize(**args)
1121
1151
  update!(**args)
1122
1152
  end
@@ -1139,6 +1169,7 @@ module Google
1139
1169
  @push_config = args[:push_config] if args.key?(:push_config)
1140
1170
  @retain_acked_messages = args[:retain_acked_messages] if args.key?(:retain_acked_messages)
1141
1171
  @retry_policy = args[:retry_policy] if args.key?(:retry_policy)
1172
+ @tags = args[:tags] if args.key?(:tags)
1142
1173
  end
1143
1174
  end
1144
1175
 
@@ -1488,6 +1519,12 @@ module Google
1488
1519
  # @return [String]
1489
1520
  attr_accessor :state
1490
1521
 
1522
+ # Stored procedure configuration, used to configure stored procedure sharing on
1523
+ # linked dataset.
1524
+ # Corresponds to the JSON property `storedProcedureConfig`
1525
+ # @return [Google::Apis::AnalyticshubV1::StoredProcedureConfig]
1526
+ attr_accessor :stored_procedure_config
1527
+
1491
1528
  def initialize(**args)
1492
1529
  update!(**args)
1493
1530
  end
@@ -1513,6 +1550,7 @@ module Google
1513
1550
  @resource_type = args[:resource_type] if args.key?(:resource_type)
1514
1551
  @restricted_export_config = args[:restricted_export_config] if args.key?(:restricted_export_config)
1515
1552
  @state = args[:state] if args.key?(:state)
1553
+ @stored_procedure_config = args[:stored_procedure_config] if args.key?(:stored_procedure_config)
1516
1554
  end
1517
1555
  end
1518
1556
 
@@ -2068,6 +2106,42 @@ module Google
2068
2106
  end
2069
2107
  end
2070
2108
 
2109
+ # Represents the state of a replica of a shared dataset. It includes the
2110
+ # geographic location of the replica and system-computed, output-only fields
2111
+ # indicating its replication state and whether it is the primary replica.
2112
+ class Replica
2113
+ include Google::Apis::Core::Hashable
2114
+
2115
+ # Output only. The geographic location where the replica resides. See [BigQuery
2116
+ # locations](https://cloud.google.com/bigquery/docs/locations) for supported
2117
+ # locations. Eg. "us-central1".
2118
+ # Corresponds to the JSON property `location`
2119
+ # @return [String]
2120
+ attr_accessor :location
2121
+
2122
+ # Output only. Indicates that this replica is the primary replica.
2123
+ # Corresponds to the JSON property `primaryState`
2124
+ # @return [String]
2125
+ attr_accessor :primary_state
2126
+
2127
+ # Output only. Assigned by Analytics Hub based on real BigQuery replication
2128
+ # state.
2129
+ # Corresponds to the JSON property `replicaState`
2130
+ # @return [String]
2131
+ attr_accessor :replica_state
2132
+
2133
+ def initialize(**args)
2134
+ update!(**args)
2135
+ end
2136
+
2137
+ # Update properties of this object
2138
+ def update!(**args)
2139
+ @location = args[:location] if args.key?(:location)
2140
+ @primary_state = args[:primary_state] if args.key?(:primary_state)
2141
+ @replica_state = args[:replica_state] if args.key?(:replica_state)
2142
+ end
2143
+ end
2144
+
2071
2145
  # Restricted export config, used to configure restricted export on linked
2072
2146
  # dataset.
2073
2147
  class RestrictedExportConfig
@@ -2381,6 +2455,33 @@ module Google
2381
2455
  end
2382
2456
  end
2383
2457
 
2458
+ # Stored procedure configuration, used to configure stored procedure sharing on
2459
+ # linked dataset.
2460
+ class StoredProcedureConfig
2461
+ include Google::Apis::Core::Hashable
2462
+
2463
+ # Output only. Types of stored procedure supported to share.
2464
+ # Corresponds to the JSON property `allowedStoredProcedureTypes`
2465
+ # @return [Array<String>]
2466
+ attr_accessor :allowed_stored_procedure_types
2467
+
2468
+ # Optional. If true, enable sharing of stored procedure.
2469
+ # Corresponds to the JSON property `enabled`
2470
+ # @return [Boolean]
2471
+ attr_accessor :enabled
2472
+ alias_method :enabled?, :enabled
2473
+
2474
+ def initialize(**args)
2475
+ update!(**args)
2476
+ end
2477
+
2478
+ # Update properties of this object
2479
+ def update!(**args)
2480
+ @allowed_stored_procedure_types = args[:allowed_stored_procedure_types] if args.key?(:allowed_stored_procedure_types)
2481
+ @enabled = args[:enabled] if args.key?(:enabled)
2482
+ end
2483
+ end
2484
+
2384
2485
  # Message for submitting a QueryTemplate.
2385
2486
  class SubmitQueryTemplateRequest
2386
2487
  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.36.0"
19
+ GEM_VERSION = "0.38.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250807"
25
+ REVISION = "20251020"
26
26
  end
27
27
  end
28
28
  end
@@ -310,6 +310,12 @@ module Google
310
310
  include Google::Apis::Core::JsonObjectSupport
311
311
  end
312
312
 
313
+ class Replica
314
+ class Representation < Google::Apis::Core::JsonRepresentation; end
315
+
316
+ include Google::Apis::Core::JsonObjectSupport
317
+ end
318
+
313
319
  class RestrictedExportConfig
314
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
315
321
 
@@ -370,6 +376,12 @@ module Google
370
376
  include Google::Apis::Core::JsonObjectSupport
371
377
  end
372
378
 
379
+ class StoredProcedureConfig
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
373
385
  class SubmitQueryTemplateRequest
374
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
375
387
 
@@ -471,6 +483,9 @@ module Google
471
483
  # @private
472
484
  class Representation < Google::Apis::Core::JsonRepresentation
473
485
  property :dataset, as: 'dataset'
486
+ collection :effective_replicas, as: 'effectiveReplicas', class: Google::Apis::AnalyticshubV1::Replica, decorator: Google::Apis::AnalyticshubV1::Replica::Representation
487
+
488
+ collection :replica_locations, as: 'replicaLocations'
474
489
  property :restricted_export_policy, as: 'restrictedExportPolicy', class: Google::Apis::AnalyticshubV1::RestrictedExportPolicy, decorator: Google::Apis::AnalyticshubV1::RestrictedExportPolicy::Representation
475
490
 
476
491
  collection :selected_resources, as: 'selectedResources', class: Google::Apis::AnalyticshubV1::SelectedResource, decorator: Google::Apis::AnalyticshubV1::SelectedResource::Representation
@@ -562,6 +577,7 @@ module Google
562
577
  property :friendly_name, as: 'friendlyName'
563
578
  hash :labels, as: 'labels'
564
579
  property :location, as: 'location'
580
+ collection :replica_locations, as: 'replicaLocations'
565
581
  end
566
582
  end
567
583
 
@@ -676,6 +692,7 @@ module Google
676
692
  property :retain_acked_messages, as: 'retainAckedMessages'
677
693
  property :retry_policy, as: 'retryPolicy', class: Google::Apis::AnalyticshubV1::RetryPolicy, decorator: Google::Apis::AnalyticshubV1::RetryPolicy::Representation
678
694
 
695
+ hash :tags, as: 'tags'
679
696
  end
680
697
  end
681
698
 
@@ -778,6 +795,8 @@ module Google
778
795
  property :restricted_export_config, as: 'restrictedExportConfig', class: Google::Apis::AnalyticshubV1::RestrictedExportConfig, decorator: Google::Apis::AnalyticshubV1::RestrictedExportConfig::Representation
779
796
 
780
797
  property :state, as: 'state'
798
+ property :stored_procedure_config, as: 'storedProcedureConfig', class: Google::Apis::AnalyticshubV1::StoredProcedureConfig, decorator: Google::Apis::AnalyticshubV1::StoredProcedureConfig::Representation
799
+
781
800
  end
782
801
  end
783
802
 
@@ -910,6 +929,15 @@ module Google
910
929
  end
911
930
  end
912
931
 
932
+ class Replica
933
+ # @private
934
+ class Representation < Google::Apis::Core::JsonRepresentation
935
+ property :location, as: 'location'
936
+ property :primary_state, as: 'primaryState'
937
+ property :replica_state, as: 'replicaState'
938
+ end
939
+ end
940
+
913
941
  class RestrictedExportConfig
914
942
  # @private
915
943
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -993,6 +1021,14 @@ module Google
993
1021
  end
994
1022
  end
995
1023
 
1024
+ class StoredProcedureConfig
1025
+ # @private
1026
+ class Representation < Google::Apis::Core::JsonRepresentation
1027
+ collection :allowed_stored_procedure_types, as: 'allowedStoredProcedureTypes'
1028
+ property :enabled, as: 'enabled'
1029
+ end
1030
+ end
1031
+
996
1032
  class SubmitQueryTemplateRequest
997
1033
  # @private
998
1034
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-analyticshub_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.36.0
4
+ version: 0.38.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticshub_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1/v0.36.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1/v0.38.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticshub_v1
62
62
  rdoc_options: []
63
63
  require_paths: