google-apis-analyticshub_v1 0.37.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: d2a2428781a70e78aa80bf15c2461c46649a4e6d704059f498fa5910d8d4dc27
4
- data.tar.gz: 3cd234ec7c88ef8aa85fc06484aea190f6b9525589491fb3f9bdffdbe1745550
3
+ metadata.gz: 35b93d0fb4ded1da7ee7429717e088a6082bf0a9b9c1488ff9ef66d9b92ab6d3
4
+ data.tar.gz: dc23da3cd6ffe4119b8fe1ab4a47f6cfa89dbea6f510ed27abb0e22d8e442e66
5
5
  SHA512:
6
- metadata.gz: 8616716e0e5950ba6f096c0d16ff93814127d9bf497a69d744baf96337accad6ca7eff1f0890fc26088bfa86f83ee6f1e98c946bcb9a51445e6532f1521f20eb
7
- data.tar.gz: 06ac5c9a7fe39d9dbb0b2cafa37f2093a920b07c2d95f34fe142c75a17630545c850ae6ac58b59ad7009df5409ba91b556a64f1f07a466f55d46c58e3e702b6c
6
+ metadata.gz: b8522e5a231aeaefd4a8254ebaf9d6a4ebfde51df3d7b45b6d8acfad8feb7ba3c5af827c8b96c011c7440df230ffe171beaa8e57e3744368138565409b6f763b
7
+ data.tar.gz: 9107c61d059c2dab60f8ca3c8859a589a29279aa094e3f5dfc3ad41888b0c585b4dadf063744079ca239c1ec508c6868ad7ae9e4e44be82f76470ee216a65aee
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.37.0 (2025-09-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20250901
@@ -1140,6 +1140,13 @@ module Google
1140
1140
  # @return [Google::Apis::AnalyticshubV1::RetryPolicy]
1141
1141
  attr_accessor :retry_policy
1142
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
+
1143
1150
  def initialize(**args)
1144
1151
  update!(**args)
1145
1152
  end
@@ -1162,6 +1169,7 @@ module Google
1162
1169
  @push_config = args[:push_config] if args.key?(:push_config)
1163
1170
  @retain_acked_messages = args[:retain_acked_messages] if args.key?(:retain_acked_messages)
1164
1171
  @retry_policy = args[:retry_policy] if args.key?(:retry_policy)
1172
+ @tags = args[:tags] if args.key?(:tags)
1165
1173
  end
1166
1174
  end
1167
1175
 
@@ -1511,6 +1519,12 @@ module Google
1511
1519
  # @return [String]
1512
1520
  attr_accessor :state
1513
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
+
1514
1528
  def initialize(**args)
1515
1529
  update!(**args)
1516
1530
  end
@@ -1536,6 +1550,7 @@ module Google
1536
1550
  @resource_type = args[:resource_type] if args.key?(:resource_type)
1537
1551
  @restricted_export_config = args[:restricted_export_config] if args.key?(:restricted_export_config)
1538
1552
  @state = args[:state] if args.key?(:state)
1553
+ @stored_procedure_config = args[:stored_procedure_config] if args.key?(:stored_procedure_config)
1539
1554
  end
1540
1555
  end
1541
1556
 
@@ -2440,6 +2455,33 @@ module Google
2440
2455
  end
2441
2456
  end
2442
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
+
2443
2485
  # Message for submitting a QueryTemplate.
2444
2486
  class SubmitQueryTemplateRequest
2445
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.37.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 = "20250901"
25
+ REVISION = "20251020"
26
26
  end
27
27
  end
28
28
  end
@@ -376,6 +376,12 @@ module Google
376
376
  include Google::Apis::Core::JsonObjectSupport
377
377
  end
378
378
 
379
+ class StoredProcedureConfig
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
379
385
  class SubmitQueryTemplateRequest
380
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
381
387
 
@@ -686,6 +692,7 @@ module Google
686
692
  property :retain_acked_messages, as: 'retainAckedMessages'
687
693
  property :retry_policy, as: 'retryPolicy', class: Google::Apis::AnalyticshubV1::RetryPolicy, decorator: Google::Apis::AnalyticshubV1::RetryPolicy::Representation
688
694
 
695
+ hash :tags, as: 'tags'
689
696
  end
690
697
  end
691
698
 
@@ -788,6 +795,8 @@ module Google
788
795
  property :restricted_export_config, as: 'restrictedExportConfig', class: Google::Apis::AnalyticshubV1::RestrictedExportConfig, decorator: Google::Apis::AnalyticshubV1::RestrictedExportConfig::Representation
789
796
 
790
797
  property :state, as: 'state'
798
+ property :stored_procedure_config, as: 'storedProcedureConfig', class: Google::Apis::AnalyticshubV1::StoredProcedureConfig, decorator: Google::Apis::AnalyticshubV1::StoredProcedureConfig::Representation
799
+
791
800
  end
792
801
  end
793
802
 
@@ -1012,6 +1021,14 @@ module Google
1012
1021
  end
1013
1022
  end
1014
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
+
1015
1032
  class SubmitQueryTemplateRequest
1016
1033
  # @private
1017
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.37.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.37.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: