google-apis-analyticshub_v1 0.28.0 → 0.30.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b459f9717f8be7aa88275571570a310c060feda2789420e0cc8af06ae9c84a9
|
4
|
+
data.tar.gz: 67e701877fe8bf31705bacfd8d5eb42eac0e12ebb5b80d81bab787cf34d3bb35
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1bb5274560d9d222eaf9ef290b1f0aa09f67b4cc69a94f380245ea1a8dacb753db6e12f20d2da02226b1e91648548dd34609007fb66856d0afdb1ab468ed197
|
7
|
+
data.tar.gz: 47051837ac0314780a0e4b7a4a6d238966b3e1146cba43a70fdf73ec12717193a7b3d90c65772448f207cca5a88f4431aba49bf8761547e9c7eb1bea0bbcb165
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-analyticshub_v1
|
2
2
|
|
3
|
+
### v0.30.0 (2025-03-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250310
|
6
|
+
|
7
|
+
### v0.29.0 (2025-03-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250303
|
10
|
+
|
3
11
|
### v0.28.0 (2025-02-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250217
|
@@ -1537,8 +1537,15 @@ module Google
|
|
1537
1537
|
class MessageTransform
|
1538
1538
|
include Google::Apis::Core::Hashable
|
1539
1539
|
|
1540
|
-
# Optional. If
|
1541
|
-
#
|
1540
|
+
# Optional. If true, the transform is disabled and will not be applied to
|
1541
|
+
# messages. Defaults to `false`.
|
1542
|
+
# Corresponds to the JSON property `disabled`
|
1543
|
+
# @return [Boolean]
|
1544
|
+
attr_accessor :disabled
|
1545
|
+
alias_method :disabled?, :disabled
|
1546
|
+
|
1547
|
+
# Optional. This field is deprecated, use the `disabled` field to disable
|
1548
|
+
# transforms.
|
1542
1549
|
# Corresponds to the JSON property `enabled`
|
1543
1550
|
# @return [Boolean]
|
1544
1551
|
attr_accessor :enabled
|
@@ -1556,6 +1563,7 @@ module Google
|
|
1556
1563
|
|
1557
1564
|
# Update properties of this object
|
1558
1565
|
def update!(**args)
|
1566
|
+
@disabled = args[:disabled] if args.key?(:disabled)
|
1559
1567
|
@enabled = args[:enabled] if args.key?(:enabled)
|
1560
1568
|
@javascript_udf = args[:javascript_udf] if args.key?(:javascript_udf)
|
1561
1569
|
end
|
@@ -2104,12 +2112,21 @@ module Google
|
|
2104
2112
|
class RevokeSubscriptionRequest
|
2105
2113
|
include Google::Apis::Core::Hashable
|
2106
2114
|
|
2115
|
+
# Optional. If the subscription is commercial then this field must be set to
|
2116
|
+
# true, otherwise a failure is thrown. This acts as a safety guard to avoid
|
2117
|
+
# revoking commercial subscriptions accidentally.
|
2118
|
+
# Corresponds to the JSON property `revokeCommercial`
|
2119
|
+
# @return [Boolean]
|
2120
|
+
attr_accessor :revoke_commercial
|
2121
|
+
alias_method :revoke_commercial?, :revoke_commercial
|
2122
|
+
|
2107
2123
|
def initialize(**args)
|
2108
2124
|
update!(**args)
|
2109
2125
|
end
|
2110
2126
|
|
2111
2127
|
# Update properties of this object
|
2112
2128
|
def update!(**args)
|
2129
|
+
@revoke_commercial = args[:revoke_commercial] if args.key?(:revoke_commercial)
|
2113
2130
|
end
|
2114
2131
|
end
|
2115
2132
|
|
@@ -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.30.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 = "
|
25
|
+
REVISION = "20250310"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -758,6 +758,7 @@ module Google
|
|
758
758
|
class MessageTransform
|
759
759
|
# @private
|
760
760
|
class Representation < Google::Apis::Core::JsonRepresentation
|
761
|
+
property :disabled, as: 'disabled'
|
761
762
|
property :enabled, as: 'enabled'
|
762
763
|
property :javascript_udf, as: 'javascriptUdf', class: Google::Apis::AnalyticshubV1::JavaScriptUdf, decorator: Google::Apis::AnalyticshubV1::JavaScriptUdf::Representation
|
763
764
|
|
@@ -895,6 +896,7 @@ module Google
|
|
895
896
|
class RevokeSubscriptionRequest
|
896
897
|
# @private
|
897
898
|
class Representation < Google::Apis::Core::JsonRepresentation
|
899
|
+
property :revoke_commercial, as: 'revokeCommercial'
|
898
900
|
end
|
899
901
|
end
|
900
902
|
|
@@ -492,6 +492,10 @@ module Google
|
|
492
492
|
# @param [String] name
|
493
493
|
# Required. Resource name of the listing to delete. e.g. `projects/myproject/
|
494
494
|
# locations/US/dataExchanges/123/listings/456`.
|
495
|
+
# @param [Boolean] delete_commercial
|
496
|
+
# Optional. If the listing is commercial then this field must be set to true,
|
497
|
+
# otherwise a failure is thrown. This acts as a safety guard to avoid deleting
|
498
|
+
# commercial listings accidentally.
|
495
499
|
# @param [String] fields
|
496
500
|
# Selector specifying which fields to include in a partial response.
|
497
501
|
# @param [String] quota_user
|
@@ -509,11 +513,12 @@ module Google
|
|
509
513
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
510
514
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
511
515
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
512
|
-
def delete_project_location_data_exchange_listing(name, fields: nil, quota_user: nil, options: nil, &block)
|
516
|
+
def delete_project_location_data_exchange_listing(name, delete_commercial: nil, fields: nil, quota_user: nil, options: nil, &block)
|
513
517
|
command = make_simple_command(:delete, 'v1/{+name}', options)
|
514
518
|
command.response_representation = Google::Apis::AnalyticshubV1::Empty::Representation
|
515
519
|
command.response_class = Google::Apis::AnalyticshubV1::Empty
|
516
520
|
command.params['name'] = name unless name.nil?
|
521
|
+
command.query['deleteCommercial'] = delete_commercial unless delete_commercial.nil?
|
517
522
|
command.query['fields'] = fields unless fields.nil?
|
518
523
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
519
524
|
execute_or_queue_command(command, &block)
|
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.
|
4
|
+
version: 0.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-23 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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1/v0.30.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:
|