Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3dd7507

Browse files
committedNov 1, 2022
feat(tagmanager): update the api
#### tagmanager:v2 The following keys were deleted: - resources.accounts.resources.containers.methods.snippet.response.type (Total Keys: 1) The following keys were added: - resources.accounts.resources.containers.methods.snippet.response.$ref (Total Keys: 1) - schemas.GetContainerSnippetResponse (Total Keys: 3)
1 parent 03f32f8 commit 3dd7507

File tree

4 files changed

+21
-9
lines changed

4 files changed

+21
-9
lines changed
 

‎docs/dyn/tagmanager_v2.accounts.containers.destinations.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ <h3>Method Details</h3>
124124

125125
Args:
126126
parent: string, GTM parent Container&#x27;s API relative path. Example: accounts/{account_id}/containers/{container_id} (required)
127-
allowUserPermissionFeatureUpdate: boolean, Must be set to true to allow features.user_permissions to change from false to true (i.e. Google product owned to GTM permission). If this operation causes an update but this bit is false, the operation will fail.
127+
allowUserPermissionFeatureUpdate: boolean, Must be set to true to allow features.user_permissions to change from false to true. If this operation causes an update but this bit is false, the operation will fail.
128128
destinationId: string, Destination ID to be linked to the current container.
129129
x__xgafv: string, V1 error format.
130130
Allowed values

‎docs/dyn/tagmanager_v2.accounts.containers.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ <h2>Instance Methods</h2>
128128
<p class="firstline">Move Tag ID out of a Container.</p>
129129
<p class="toc_element">
130130
<code><a href="#snippet">snippet(path, x__xgafv=None)</a></code></p>
131-
<p class="firstline">Gets the JavaScript snippet for a Container.</p>
131+
<p class="firstline">Gets the tagging snippet for a Container.</p>
132132
<p class="toc_element">
133133
<code><a href="#update">update(path, body=None, fingerprint=None, x__xgafv=None)</a></code></p>
134134
<p class="firstline">Updates a Container.</p>
@@ -524,7 +524,7 @@ <h3>Method Details</h3>
524524

525525
<div class="method">
526526
<code class="details" id="snippet">snippet(path, x__xgafv=None)</code>
527-
<pre>Gets the JavaScript snippet for a Container.
527+
<pre>Gets the tagging snippet for a Container.
528528

529529
Args:
530530
path: string, Container snippet&#x27;s API relative path. Example: accounts/{account_id}/containers/{container_id}:snippet (required)
@@ -536,7 +536,9 @@ <h3>Method Details</h3>
536536
Returns:
537537
An object of the form:
538538

539-
&quot;A String&quot;</pre>
539+
{
540+
&quot;snippet&quot;: &quot;A String&quot;, # Tagging snippet for a Container.
541+
}</pre>
540542
</div>
541543

542544
<div class="method">

‎googleapiclient/discovery_cache/documents/tagmanager.v1.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1932,7 +1932,7 @@
19321932
}
19331933
}
19341934
},
1935-
"revision": "20221017",
1935+
"revision": "20221026",
19361936
"rootUrl": "https://tagmanager.googleapis.com/",
19371937
"schemas": {
19381938
"Account": {

‎googleapiclient/discovery_cache/documents/tagmanager.v2.json

+14-4
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@
451451
]
452452
},
453453
"snippet": {
454-
"description": "Gets the JavaScript snippet for a Container.",
454+
"description": "Gets the tagging snippet for a Container.",
455455
"flatPath": "tagmanager/v2/accounts/{accountsId}/containers/{containersId}:snippet",
456456
"httpMethod": "GET",
457457
"id": "tagmanager.accounts.containers.snippet",
@@ -469,7 +469,7 @@
469469
},
470470
"path": "tagmanager/v2/{+path}:snippet",
471471
"response": {
472-
"type": "string"
472+
"$ref": "GetContainerSnippetResponse"
473473
},
474474
"scopes": [
475475
"https://www.googleapis.com/auth/tagmanager.edit.containers",
@@ -549,7 +549,7 @@
549549
],
550550
"parameters": {
551551
"allowUserPermissionFeatureUpdate": {
552-
"description": "Must be set to true to allow features.user_permissions to change from false to true (i.e. Google product owned to GTM permission). If this operation causes an update but this bit is false, the operation will fail.",
552+
"description": "Must be set to true to allow features.user_permissions to change from false to true. If this operation causes an update but this bit is false, the operation will fail.",
553553
"location": "query",
554554
"type": "boolean"
555555
},
@@ -3710,7 +3710,7 @@
37103710
}
37113711
}
37123712
},
3713-
"revision": "20221017",
3713+
"revision": "20221026",
37143714
"rootUrl": "https://tagmanager.googleapis.com/",
37153715
"schemas": {
37163716
"Account": {
@@ -4920,6 +4920,16 @@
49204920
},
49214921
"type": "object"
49224922
},
4923+
"GetContainerSnippetResponse": {
4924+
"id": "GetContainerSnippetResponse",
4925+
"properties": {
4926+
"snippet": {
4927+
"description": "Tagging snippet for a Container.",
4928+
"type": "string"
4929+
}
4930+
},
4931+
"type": "object"
4932+
},
49234933
"GetWorkspaceStatusResponse": {
49244934
"description": "The changes that have occurred in the workspace since the base container version.",
49254935
"id": "GetWorkspaceStatusResponse",

0 commit comments

Comments
 (0)
Please sign in to comment.