Skip to content

Commit 2d5b157

Browse files
feat: Automated regeneration of tagmanager v2 client (googleapis#21846)
Auto-created at 2025-02-26 21:03:19 +0000 using the toys pull request generator.
1 parent baab38e commit 2d5b157

File tree

5 files changed

+25
-3
lines changed

5 files changed

+25
-3
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335028,6 +335028,7 @@
335028335028
"/tagmanager:v2/FolderEntities/variable": variable
335029335029
"/tagmanager:v2/FolderEntities/variable/variable": variable
335030335030
"/tagmanager:v2/GalleryReference": gallery_reference
335031+
"/tagmanager:v2/GalleryReference/galleryTemplateId": gallery_template_id
335031335032
"/tagmanager:v2/GalleryReference/host": host
335032335033
"/tagmanager:v2/GalleryReference/isModified": is_modified
335033335034
"/tagmanager:v2/GalleryReference/owner": owner
@@ -335036,6 +335037,7 @@
335036335037
"/tagmanager:v2/GalleryReference/templateDeveloperId": template_developer_id
335037335038
"/tagmanager:v2/GalleryReference/version": version
335038335039
"/tagmanager:v2/GetContainerSnippetResponse": get_container_snippet_response
335040+
"/tagmanager:v2/GetContainerSnippetResponse/containerConfig": container_config
335039335041
"/tagmanager:v2/GetContainerSnippetResponse/snippet": snippet
335040335042
"/tagmanager:v2/GetWorkspaceStatusResponse": get_workspace_status_response
335041335043
"/tagmanager:v2/GetWorkspaceStatusResponse/mergeConflict": merge_conflict

generated/google-apis-tagmanager_v2/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release history for google-apis-tagmanager_v2
22

3+
### v0.32.0 (2025-02-26)
4+
5+
* Regenerated from discovery document revision 20250218
6+
* Regenerated using generator version 0.16.0
7+
38
### v0.31.0 (2024-12-08)
49

510
* Regenerated from discovery document revision 20241204

generated/google-apis-tagmanager_v2/lib/google/apis/tagmanager_v2/classes.rb

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1342,6 +1342,12 @@ def update!(**args)
13421342
class GalleryReference
13431343
include Google::Apis::Core::Hashable
13441344

1345+
# ID for the gallery template that is generated once during first sync and
1346+
# travels with the template redirects.
1347+
# Corresponds to the JSON property `galleryTemplateId`
1348+
# @return [String]
1349+
attr_accessor :gallery_template_id
1350+
13451351
# The name of the host for the community gallery template.
13461352
# Corresponds to the JSON property `host`
13471353
# @return [String]
@@ -1386,6 +1392,7 @@ def initialize(**args)
13861392

13871393
# Update properties of this object
13881394
def update!(**args)
1395+
@gallery_template_id = args[:gallery_template_id] if args.key?(:gallery_template_id)
13891396
@host = args[:host] if args.key?(:host)
13901397
@is_modified = args[:is_modified] if args.key?(:is_modified)
13911398
@owner = args[:owner] if args.key?(:owner)
@@ -1400,6 +1407,11 @@ def update!(**args)
14001407
class GetContainerSnippetResponse
14011408
include Google::Apis::Core::Hashable
14021409

1410+
# Server container config param for manually provisioning a tagging server.
1411+
# Corresponds to the JSON property `containerConfig`
1412+
# @return [String]
1413+
attr_accessor :container_config
1414+
14031415
# Tagging snippet for a Container.
14041416
# Corresponds to the JSON property `snippet`
14051417
# @return [String]
@@ -1411,6 +1423,7 @@ def initialize(**args)
14111423

14121424
# Update properties of this object
14131425
def update!(**args)
1426+
@container_config = args[:container_config] if args.key?(:container_config)
14141427
@snippet = args[:snippet] if args.key?(:snippet)
14151428
end
14161429
end

generated/google-apis-tagmanager_v2/lib/google/apis/tagmanager_v2/gem_version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module TagmanagerV2
1818
# Version of the google-apis-tagmanager_v2 gem
19-
GEM_VERSION = "0.31.0"
19+
GEM_VERSION = "0.32.0"
2020

2121
# Version of the code generator used to generate this client
22-
GENERATOR_VERSION = "0.15.1"
22+
GENERATOR_VERSION = "0.16.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20241204"
25+
REVISION = "20250218"
2626
end
2727
end
2828
end

generated/google-apis-tagmanager_v2/lib/google/apis/tagmanager_v2/representations.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -757,6 +757,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
757757
class GalleryReference
758758
# @private
759759
class Representation < Google::Apis::Core::JsonRepresentation
760+
property :gallery_template_id, as: 'galleryTemplateId'
760761
property :host, as: 'host'
761762
property :is_modified, as: 'isModified'
762763
property :owner, as: 'owner'
@@ -770,6 +771,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
770771
class GetContainerSnippetResponse
771772
# @private
772773
class Representation < Google::Apis::Core::JsonRepresentation
774+
property :container_config, as: 'containerConfig'
773775
property :snippet, as: 'snippet'
774776
end
775777
end

0 commit comments

Comments
 (0)