Skip to content

Commit

Permalink
feat(tagmanager): update the api
Browse files Browse the repository at this point in the history
#### 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)
  • Loading branch information
yoshi-automation committed Nov 1, 2022
1 parent 03f32f8 commit 3dd7507
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
Expand Up @@ -124,7 +124,7 @@ <h3>Method Details</h3>

Args:
parent: string, GTM parent Container&#x27;s API relative path. Example: accounts/{account_id}/containers/{container_id} (required)
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.
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.
destinationId: string, Destination ID to be linked to the current container.
x__xgafv: string, V1 error format.
Allowed values
Expand Down
8 changes: 5 additions & 3 deletions docs/dyn/tagmanager_v2.accounts.containers.html
Expand Up @@ -128,7 +128,7 @@ <h2>Instance Methods</h2>
<p class="firstline">Move Tag ID out of a Container.</p>
<p class="toc_element">
<code><a href="#snippet">snippet(path, x__xgafv=None)</a></code></p>
<p class="firstline">Gets the JavaScript snippet for a Container.</p>
<p class="firstline">Gets the tagging snippet for a Container.</p>
<p class="toc_element">
<code><a href="#update">update(path, body=None, fingerprint=None, x__xgafv=None)</a></code></p>
<p class="firstline">Updates a Container.</p>
Expand Down Expand Up @@ -524,7 +524,7 @@ <h3>Method Details</h3>

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

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

&quot;A String&quot;</pre>
{
&quot;snippet&quot;: &quot;A String&quot;, # Tagging snippet for a Container.
}</pre>
</div>

<div class="method">
Expand Down
Expand Up @@ -1932,7 +1932,7 @@
}
}
},
"revision": "20221017",
"revision": "20221026",
"rootUrl": "https://tagmanager.googleapis.com/",
"schemas": {
"Account": {
Expand Down
18 changes: 14 additions & 4 deletions googleapiclient/discovery_cache/documents/tagmanager.v2.json
Expand Up @@ -451,7 +451,7 @@
]
},
"snippet": {
"description": "Gets the JavaScript snippet for a Container.",
"description": "Gets the tagging snippet for a Container.",
"flatPath": "tagmanager/v2/accounts/{accountsId}/containers/{containersId}:snippet",
"httpMethod": "GET",
"id": "tagmanager.accounts.containers.snippet",
Expand All @@ -469,7 +469,7 @@
},
"path": "tagmanager/v2/{+path}:snippet",
"response": {
"type": "string"
"$ref": "GetContainerSnippetResponse"
},
"scopes": [
"https://www.googleapis.com/auth/tagmanager.edit.containers",
Expand Down Expand Up @@ -549,7 +549,7 @@
],
"parameters": {
"allowUserPermissionFeatureUpdate": {
"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.",
"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.",
"location": "query",
"type": "boolean"
},
Expand Down Expand Up @@ -3710,7 +3710,7 @@
}
}
},
"revision": "20221017",
"revision": "20221026",
"rootUrl": "https://tagmanager.googleapis.com/",
"schemas": {
"Account": {
Expand Down Expand Up @@ -4920,6 +4920,16 @@
},
"type": "object"
},
"GetContainerSnippetResponse": {
"id": "GetContainerSnippetResponse",
"properties": {
"snippet": {
"description": "Tagging snippet for a Container.",
"type": "string"
}
},
"type": "object"
},
"GetWorkspaceStatusResponse": {
"description": "The changes that have occurred in the workspace since the base container version.",
"id": "GetWorkspaceStatusResponse",
Expand Down

0 comments on commit 3dd7507

Please sign in to comment.