google-apis-tagmanager_v2 0.23.0 → 0.25.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: a62e2198eccab0767186d3f03c52c965fbaf1493886e816fd96c1a8ae440f472
         | 
| 4 | 
            +
              data.tar.gz: 123eb849444cf4e02874dc0a3dcede73cbc4cc1b4d661d6d937a127f96884268
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 570e7f36abd7cf67b8486bd2657769cc1a9230692f82ced0df7693ad332838886979efc4bfe6830ea92db5c371888968733be14075cb921458a28441c3046d74
         | 
| 7 | 
            +
              data.tar.gz: a276406c537a875e5d7898894337e15a256384add38114bfa7f6d6d6c3f33798c669ccad007c8a6b626fdeccf75064925fd9b622c0fb709ceccc0d025344d752
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,5 +1,13 @@ | |
| 1 1 | 
             
            # Release history for google-apis-tagmanager_v2
         | 
| 2 2 |  | 
| 3 | 
            +
            ### v0.25.0 (2023-08-27)
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            * Regenerated from discovery document revision 20230823
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            ### v0.24.0 (2023-08-13)
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            * Regenerated from discovery document revision 20230807
         | 
| 10 | 
            +
             | 
| 3 11 | 
             
            ### v0.23.0 (2023-06-18)
         | 
| 4 12 |  | 
| 5 13 | 
             
            * Regenerated from discovery document revision 20230614
         | 
| @@ -1937,6 +1937,15 @@ module Google | |
| 1937 1937 | 
             
                  class Parameter
         | 
| 1938 1938 | 
             
                    include Google::Apis::Core::Hashable
         | 
| 1939 1939 |  | 
| 1940 | 
            +
                    # Whether or not a reference type parameter is strongly or weakly referenced.
         | 
| 1941 | 
            +
                    # Only used by Transformations. @mutable tagmanager.accounts.containers.
         | 
| 1942 | 
            +
                    # workspaces.transformations.create @mutable tagmanager.accounts.containers.
         | 
| 1943 | 
            +
                    # workspaces.transformations.update
         | 
| 1944 | 
            +
                    # Corresponds to the JSON property `isWeakReference`
         | 
| 1945 | 
            +
                    # @return [Boolean]
         | 
| 1946 | 
            +
                    attr_accessor :is_weak_reference
         | 
| 1947 | 
            +
                    alias_method :is_weak_reference?, :is_weak_reference
         | 
| 1948 | 
            +
                  
         | 
| 1940 1949 | 
             
                    # The named key that uniquely identifies a parameter. Required for top-level
         | 
| 1941 1950 | 
             
                    # parameters, as well as map values. Ignored for list values. @mutable
         | 
| 1942 1951 | 
             
                    # tagmanager.accounts.containers.workspaces.variables.create @mutable tagmanager.
         | 
| @@ -2003,6 +2012,7 @@ module Google | |
| 2003 2012 |  | 
| 2004 2013 | 
             
                    # Update properties of this object
         | 
| 2005 2014 | 
             
                    def update!(**args)
         | 
| 2015 | 
            +
                      @is_weak_reference = args[:is_weak_reference] if args.key?(:is_weak_reference)
         | 
| 2006 2016 | 
             
                      @key = args[:key] if args.key?(:key)
         | 
| 2007 2017 | 
             
                      @list = args[:list] if args.key?(:list)
         | 
| 2008 2018 | 
             
                      @map = args[:map] if args.key?(:map)
         | 
| @@ -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.25.0"
         | 
| 20 20 |  | 
| 21 21 | 
             
                  # Version of the code generator used to generate this client
         | 
| 22 22 | 
             
                  GENERATOR_VERSION = "0.12.0"
         | 
| 23 23 |  | 
| 24 24 | 
             
                  # Revision of the discovery document this client was generated from
         | 
| 25 | 
            -
                  REVISION = " | 
| 25 | 
            +
                  REVISION = "20230823"
         | 
| 26 26 | 
             
                end
         | 
| 27 27 | 
             
              end
         | 
| 28 28 | 
             
            end
         | 
| @@ -957,6 +957,7 @@ module Google | |
| 957 957 | 
             
                  class Parameter
         | 
| 958 958 | 
             
                    # @private
         | 
| 959 959 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 960 | 
            +
                      property :is_weak_reference, as: 'isWeakReference'
         | 
| 960 961 | 
             
                      property :key, as: 'key'
         | 
| 961 962 | 
             
                      collection :list, as: 'list', class: Google::Apis::TagmanagerV2::Parameter, decorator: Google::Apis::TagmanagerV2::Parameter::Representation
         | 
| 962 963 |  | 
| @@ -1902,7 +1902,8 @@ module Google | |
| 1902 1902 | 
             
                      execute_or_queue_command(command, &block)
         | 
| 1903 1903 | 
             
                    end
         | 
| 1904 1904 |  | 
| 1905 | 
            -
                    # Moves entities to a GTM Folder.
         | 
| 1905 | 
            +
                    # Moves entities to a GTM Folder. If `folder_id` in the request path equals 0,
         | 
| 1906 | 
            +
                    # this will instead move entities out of the folder they currently belong to.
         | 
| 1906 1907 | 
             
                    # @param [String] path
         | 
| 1907 1908 | 
             
                    #   GTM Folder's API relative path. Example: accounts/`account_id`/containers/`
         | 
| 1908 1909 | 
             
                    #   container_id`/workspaces/`workspace_id`/folders/`folder_id`
         | 
    
        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.25.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: 2023- | 
| 11 | 
            +
            date: 2023-09-03 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.25.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.4. | 
| 78 | 
            +
            rubygems_version: 3.4.19
         | 
| 79 79 | 
             
            signing_key: 
         | 
| 80 80 | 
             
            specification_version: 4
         | 
| 81 81 | 
             
            summary: Simple REST client for Tag Manager API V2
         |