google-apis-analyticshub_v1 0.29.0 → 0.31.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: c7c467c4e74d24b4956567ca2500768063e01430f49ceb0b163c7a601f2d4248
4
- data.tar.gz: 1409cbb643186faeef21779a5d3823a626a0086ef1e5c0a6b0e4fd4747866e6f
3
+ metadata.gz: 281f4dfe6920e5977c6ce523be692590f9196b4b8ffc44817e6e44555ec6c5a0
4
+ data.tar.gz: 158c650a98e235eb70120e5f43f74eab491fec07ad69d3455e09b7848d7eee2a
5
5
  SHA512:
6
- metadata.gz: 1a518a735b78e5eaf2365a746796319277a36c33bff172d3fcf1e507c292ad9e89a41f8e6f78a962c38895abf4aff12229e56586b07ae126072b9cc9f2bcf51c
7
- data.tar.gz: 6b8df23829d50fca07f0933a0b9c2a9ff9566af1a9760c27df4b45ca9fb66650d224b335e5cc0ae26f5a8f5d418aad15018c91228481b396812f5332988016c8
6
+ metadata.gz: 92efa91d103f2298fe4e2a3f134b2e33e9579feb7ef4295fdae7d85a8ae50e641d5eb92b90f6a0e0a5796e1d5bf646e2fc06ffae7122f38ee5b8d7043dde1aef
7
+ data.tar.gz: e48732b0d98b943ac82ac5a552146a21b267d443ff911245e503758d0667c50e4299baf2f8ac5ec511dbea2744fccbe3b0a89b3ffaac312d8487913f139a5689
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-analyticshub_v1
2
2
 
3
+ ### v0.31.0 (2025-03-30)
4
+
5
+ * Regenerated from discovery document revision 20250315
6
+
7
+ ### v0.30.0 (2025-03-23)
8
+
9
+ * Regenerated from discovery document revision 20250310
10
+
3
11
  ### v0.29.0 (2025-03-16)
4
12
 
5
13
  * Regenerated from discovery document revision 20250303
@@ -710,6 +710,12 @@ module Google
710
710
  # @return [String]
711
711
  attr_accessor :location
712
712
 
713
+ # Optional. The geographic locations where the dataset should be replicated. See
714
+ # https://cloud.google.com/bigquery/docs/locations for supported locations.
715
+ # Corresponds to the JSON property `replicaLocations`
716
+ # @return [Array<String>]
717
+ attr_accessor :replica_locations
718
+
713
719
  def initialize(**args)
714
720
  update!(**args)
715
721
  end
@@ -721,6 +727,7 @@ module Google
721
727
  @friendly_name = args[:friendly_name] if args.key?(:friendly_name)
722
728
  @labels = args[:labels] if args.key?(:labels)
723
729
  @location = args[:location] if args.key?(:location)
730
+ @replica_locations = args[:replica_locations] if args.key?(:replica_locations)
724
731
  end
725
732
  end
726
733
 
@@ -1537,8 +1544,15 @@ module Google
1537
1544
  class MessageTransform
1538
1545
  include Google::Apis::Core::Hashable
1539
1546
 
1540
- # Optional. If set to true, the transform is enabled. If false, the transform is
1541
- # disabled and will not be applied to messages. Defaults to `true`.
1547
+ # Optional. If true, the transform is disabled and will not be applied to
1548
+ # messages. Defaults to `false`.
1549
+ # Corresponds to the JSON property `disabled`
1550
+ # @return [Boolean]
1551
+ attr_accessor :disabled
1552
+ alias_method :disabled?, :disabled
1553
+
1554
+ # Optional. This field is deprecated, use the `disabled` field to disable
1555
+ # transforms.
1542
1556
  # Corresponds to the JSON property `enabled`
1543
1557
  # @return [Boolean]
1544
1558
  attr_accessor :enabled
@@ -1556,6 +1570,7 @@ module Google
1556
1570
 
1557
1571
  # Update properties of this object
1558
1572
  def update!(**args)
1573
+ @disabled = args[:disabled] if args.key?(:disabled)
1559
1574
  @enabled = args[:enabled] if args.key?(:enabled)
1560
1575
  @javascript_udf = args[:javascript_udf] if args.key?(:javascript_udf)
1561
1576
  end
@@ -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.29.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250303"
25
+ REVISION = "20250315"
26
26
  end
27
27
  end
28
28
  end
@@ -542,6 +542,7 @@ module Google
542
542
  property :friendly_name, as: 'friendlyName'
543
543
  hash :labels, as: 'labels'
544
544
  property :location, as: 'location'
545
+ collection :replica_locations, as: 'replicaLocations'
545
546
  end
546
547
  end
547
548
 
@@ -758,6 +759,7 @@ module Google
758
759
  class MessageTransform
759
760
  # @private
760
761
  class Representation < Google::Apis::Core::JsonRepresentation
762
+ property :disabled, as: 'disabled'
761
763
  property :enabled, as: 'enabled'
762
764
  property :javascript_udf, as: 'javascriptUdf', class: Google::Apis::AnalyticshubV1::JavaScriptUdf, decorator: Google::Apis::AnalyticshubV1::JavaScriptUdf::Representation
763
765
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-analyticshub_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.29.0
4
+ version: 0.31.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-16 00:00:00.000000000 Z
10
+ date: 2025-03-30 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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.29.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1/v0.31.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: