google-apis-tagmanager_v2 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 560b9d8ac9b1b2d06093de53da0e63ce1ec8bc07e4e3f378d7a4ebb111d0db99
|
4
|
+
data.tar.gz: be1f72f4f798c0c535115fcbbd964bf0524a4851c476bbf66d939f2f9addbe06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56249b81102b2a68d51ba8e4e2e8d37edee721153651fbd80bde81920d2e01e00c03bcc2f295464f396866365068e16736e770afe5040b8b398acafe984e8c0c
|
7
|
+
data.tar.gz: 9ddc2a28748340762e94527f4ad695410d082fcfa4ad1a13fcf25d344be1468a05ce2bd03d41869dffed0a76e49b50587fb5a9cb6fee590c7ec1421b50970741
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-tagmanager_v2
|
2
2
|
|
3
|
+
### v0.31.0 (2024-12-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241204
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
8
|
+
### v0.30.0 (2024-07-25)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240701
|
11
|
+
|
3
12
|
### v0.29.0 (2024-05-19)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.15.0
|
@@ -1369,6 +1369,12 @@ module Google
|
|
1369
1369
|
# @return [String]
|
1370
1370
|
attr_accessor :signature
|
1371
1371
|
|
1372
|
+
# The developer id of the community gallery template. This value is set whenever
|
1373
|
+
# the template is created from the gallery.
|
1374
|
+
# Corresponds to the JSON property `templateDeveloperId`
|
1375
|
+
# @return [String]
|
1376
|
+
attr_accessor :template_developer_id
|
1377
|
+
|
1372
1378
|
# The version of the community gallery template.
|
1373
1379
|
# Corresponds to the JSON property `version`
|
1374
1380
|
# @return [String]
|
@@ -1385,6 +1391,7 @@ module Google
|
|
1385
1391
|
@owner = args[:owner] if args.key?(:owner)
|
1386
1392
|
@repository = args[:repository] if args.key?(:repository)
|
1387
1393
|
@signature = args[:signature] if args.key?(:signature)
|
1394
|
+
@template_developer_id = args[:template_developer_id] if args.key?(:template_developer_id)
|
1388
1395
|
@version = args[:version] if args.key?(:version)
|
1389
1396
|
end
|
1390
1397
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module TagmanagerV2
|
18
18
|
# Version of the google-apis-tagmanager_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.31.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241204"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -319,10 +319,14 @@ module Google
|
|
319
319
|
execute_or_queue_command(command, &block)
|
320
320
|
end
|
321
321
|
|
322
|
-
# Looks up a Container by destination ID.
|
322
|
+
# Looks up a Container by destination ID or tag ID.
|
323
323
|
# @param [String] destination_id
|
324
324
|
# Destination ID linked to a GTM Container, e.g. AW-123456789. Example: accounts/
|
325
|
-
# containers:lookup?destination_id=`destination_id`.
|
325
|
+
# containers:lookup?destination_id=`destination_id`. Only one of destination_id
|
326
|
+
# or tag_id should be set.
|
327
|
+
# @param [String] tag_id
|
328
|
+
# Tag ID for a GTM Container, e.g. GTM-123456789. Example: accounts/containers:
|
329
|
+
# lookup?tag_id=`tag_id`. Only one of destination_id or tag_id should be set.
|
326
330
|
# @param [String] fields
|
327
331
|
# Selector specifying which fields to include in a partial response.
|
328
332
|
# @param [String] quota_user
|
@@ -340,11 +344,12 @@ module Google
|
|
340
344
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
341
345
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
342
346
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
343
|
-
def lookup_account_container(destination_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
347
|
+
def lookup_account_container(destination_id: nil, tag_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
344
348
|
command = make_simple_command(:get, 'tagmanager/v2/accounts/containers:lookup', options)
|
345
349
|
command.response_representation = Google::Apis::TagmanagerV2::Container::Representation
|
346
350
|
command.response_class = Google::Apis::TagmanagerV2::Container
|
347
351
|
command.query['destinationId'] = destination_id unless destination_id.nil?
|
352
|
+
command.query['tagId'] = tag_id unless tag_id.nil?
|
348
353
|
command.query['fields'] = fields unless fields.nil?
|
349
354
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
350
355
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-tagmanager_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.31.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-
|
11
|
+
date: 2024-12-08 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-tagmanager_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-tagmanager_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-tagmanager_v2/v0.31.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tagmanager_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Tag Manager API V2
|