google-apis-appengine_v1alpha 0.26.0 → 0.28.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: 4faf7b51f564ee63b146dda5970ca948626121b8e8ba5c6a04445f3dcfa40dd2
         | 
| 4 | 
            +
              data.tar.gz: f2e4b04168a14ca9cd8254b0499d4743a3c39f88efd2f28b269b5b3f3acdb816
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: e73c8fe49c13b961db2558f6b246d41665a00551d4146d9d4ad726072083700b3e64bdd63d0c9a8c846874223baa08c7e57e1ec2e114d761128b48726c08c71c
         | 
| 7 | 
            +
              data.tar.gz: e484189903ba0ed39b04541d16f3cced4fec1d7afa15d3804a0816c057aff2c0bdc98f826ebc728f65c6c0c3efe571a14d44f980f095984242f71a51bbbfa4f9
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,5 +1,13 @@ | |
| 1 1 | 
             
            # Release history for google-apis-appengine_v1alpha
         | 
| 2 2 |  | 
| 3 | 
            +
            ### v0.28.0 (2023-10-15)
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            * Regenerated from discovery document revision 20231004
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            ### v0.27.0 (2023-08-13)
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            * Regenerated from discovery document revision 20230807
         | 
| 10 | 
            +
             | 
| 3 11 | 
             
            ### v0.26.0 (2023-04-30)
         | 
| 4 12 |  | 
| 5 13 | 
             
            * Regenerated from discovery document revision 20230424
         | 
| @@ -165,6 +165,49 @@ module Google | |
| 165 165 | 
             
                    end
         | 
| 166 166 | 
             
                  end
         | 
| 167 167 |  | 
| 168 | 
            +
                  # ContainerState contains the externally-visible container state that is used to
         | 
| 169 | 
            +
                  # communicate the state and reasoning for that state to the CLH. This data is
         | 
| 170 | 
            +
                  # not persisted by CCFE, but is instead derived from CCFE's internal
         | 
| 171 | 
            +
                  # representation of the container state.
         | 
| 172 | 
            +
                  class ContainerState
         | 
| 173 | 
            +
                    include Google::Apis::Core::Hashable
         | 
| 174 | 
            +
                  
         | 
| 175 | 
            +
                    # Containers transition between and within states based on reasons sent from
         | 
| 176 | 
            +
                    # various systems. CCFE will provide the CLH with reasons for the current state
         | 
| 177 | 
            +
                    # per system.The current systems that CCFE supports are: Service Management (
         | 
| 178 | 
            +
                    # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
         | 
| 179 | 
            +
                    # Billing API)
         | 
| 180 | 
            +
                    # Corresponds to the JSON property `currentReasons`
         | 
| 181 | 
            +
                    # @return [Google::Apis::AppengineV1alpha::Reasons]
         | 
| 182 | 
            +
                    attr_accessor :current_reasons
         | 
| 183 | 
            +
                  
         | 
| 184 | 
            +
                    # Containers transition between and within states based on reasons sent from
         | 
| 185 | 
            +
                    # various systems. CCFE will provide the CLH with reasons for the current state
         | 
| 186 | 
            +
                    # per system.The current systems that CCFE supports are: Service Management (
         | 
| 187 | 
            +
                    # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
         | 
| 188 | 
            +
                    # Billing API)
         | 
| 189 | 
            +
                    # Corresponds to the JSON property `previousReasons`
         | 
| 190 | 
            +
                    # @return [Google::Apis::AppengineV1alpha::Reasons]
         | 
| 191 | 
            +
                    attr_accessor :previous_reasons
         | 
| 192 | 
            +
                  
         | 
| 193 | 
            +
                    # The current state of the container. This state is the culmination of all of
         | 
| 194 | 
            +
                    # the opinions from external systems that CCFE knows about of the container.
         | 
| 195 | 
            +
                    # Corresponds to the JSON property `state`
         | 
| 196 | 
            +
                    # @return [String]
         | 
| 197 | 
            +
                    attr_accessor :state
         | 
| 198 | 
            +
                  
         | 
| 199 | 
            +
                    def initialize(**args)
         | 
| 200 | 
            +
                       update!(**args)
         | 
| 201 | 
            +
                    end
         | 
| 202 | 
            +
                  
         | 
| 203 | 
            +
                    # Update properties of this object
         | 
| 204 | 
            +
                    def update!(**args)
         | 
| 205 | 
            +
                      @current_reasons = args[:current_reasons] if args.key?(:current_reasons)
         | 
| 206 | 
            +
                      @previous_reasons = args[:previous_reasons] if args.key?(:previous_reasons)
         | 
| 207 | 
            +
                      @state = args[:state] if args.key?(:state)
         | 
| 208 | 
            +
                    end
         | 
| 209 | 
            +
                  end
         | 
| 210 | 
            +
                  
         | 
| 168 211 | 
             
                  # Metadata for the given google.longrunning.Operation during a google.appengine.
         | 
| 169 212 | 
             
                  # v1.CreateVersionRequest.
         | 
| 170 213 | 
             
                  class CreateVersionMetadataV1
         | 
| @@ -591,12 +634,12 @@ module Google | |
| 591 634 | 
             
                    # @return [String]
         | 
| 592 635 | 
             
                    attr_accessor :name
         | 
| 593 636 |  | 
| 594 | 
            -
                    # The normal response of the operation | 
| 595 | 
            -
                    #  | 
| 596 | 
            -
                    #  | 
| 597 | 
            -
                    #  | 
| 598 | 
            -
                    #  | 
| 599 | 
            -
                    #  | 
| 637 | 
            +
                    # The normal, successful response of the operation. If the original method
         | 
| 638 | 
            +
                    # returns no data on success, such as Delete, the response is google.protobuf.
         | 
| 639 | 
            +
                    # Empty. If the original method is standard Get/Create/Update, the response
         | 
| 640 | 
            +
                    # should be the resource. For other methods, the response should have the type
         | 
| 641 | 
            +
                    # XxxResponse, where Xxx is the original method name. For example, if the
         | 
| 642 | 
            +
                    # original method name is TakeSnapshot(), the inferred response type is
         | 
| 600 643 | 
             
                    # TakeSnapshotResponse.
         | 
| 601 644 | 
             
                    # Corresponds to the JSON property `response`
         | 
| 602 645 | 
             
                    # @return [Hash<String,Object>]
         | 
| @@ -832,12 +875,12 @@ module Google | |
| 832 875 | 
             
                    # @return [Google::Apis::AppengineV1alpha::ProjectsMetadata]
         | 
| 833 876 | 
             
                    attr_accessor :project_metadata
         | 
| 834 877 |  | 
| 835 | 
            -
                    #  | 
| 878 | 
            +
                    # ContainerState contains the externally-visible container state that is used to
         | 
| 836 879 | 
             
                    # communicate the state and reasoning for that state to the CLH. This data is
         | 
| 837 880 | 
             
                    # not persisted by CCFE, but is instead derived from CCFE's internal
         | 
| 838 | 
            -
                    # representation of the  | 
| 881 | 
            +
                    # representation of the container state.
         | 
| 839 882 | 
             
                    # Corresponds to the JSON property `state`
         | 
| 840 | 
            -
                    # @return [Google::Apis::AppengineV1alpha:: | 
| 883 | 
            +
                    # @return [Google::Apis::AppengineV1alpha::ContainerState]
         | 
| 841 884 | 
             
                    attr_accessor :state
         | 
| 842 885 |  | 
| 843 886 | 
             
                    def initialize(**args)
         | 
| @@ -853,49 +896,6 @@ module Google | |
| 853 896 | 
             
                    end
         | 
| 854 897 | 
             
                  end
         | 
| 855 898 |  | 
| 856 | 
            -
                  # ProjectState contains the externally-visible project state that is used to
         | 
| 857 | 
            -
                  # communicate the state and reasoning for that state to the CLH. This data is
         | 
| 858 | 
            -
                  # not persisted by CCFE, but is instead derived from CCFE's internal
         | 
| 859 | 
            -
                  # representation of the project state.
         | 
| 860 | 
            -
                  class ProjectState
         | 
| 861 | 
            -
                    include Google::Apis::Core::Hashable
         | 
| 862 | 
            -
                  
         | 
| 863 | 
            -
                    # Projects transition between and within states based on reasons sent from
         | 
| 864 | 
            -
                    # various systems. CCFE will provide the CLH with reasons for the current state
         | 
| 865 | 
            -
                    # per system.The current systems that CCFE supports are: Service Management (
         | 
| 866 | 
            -
                    # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
         | 
| 867 | 
            -
                    # Billing API)
         | 
| 868 | 
            -
                    # Corresponds to the JSON property `currentReasons`
         | 
| 869 | 
            -
                    # @return [Google::Apis::AppengineV1alpha::Reasons]
         | 
| 870 | 
            -
                    attr_accessor :current_reasons
         | 
| 871 | 
            -
                  
         | 
| 872 | 
            -
                    # Projects transition between and within states based on reasons sent from
         | 
| 873 | 
            -
                    # various systems. CCFE will provide the CLH with reasons for the current state
         | 
| 874 | 
            -
                    # per system.The current systems that CCFE supports are: Service Management (
         | 
| 875 | 
            -
                    # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
         | 
| 876 | 
            -
                    # Billing API)
         | 
| 877 | 
            -
                    # Corresponds to the JSON property `previousReasons`
         | 
| 878 | 
            -
                    # @return [Google::Apis::AppengineV1alpha::Reasons]
         | 
| 879 | 
            -
                    attr_accessor :previous_reasons
         | 
| 880 | 
            -
                  
         | 
| 881 | 
            -
                    # The current state of the project. This state is the culmination of all of the
         | 
| 882 | 
            -
                    # opinions from external systems that CCFE knows about of the project.
         | 
| 883 | 
            -
                    # Corresponds to the JSON property `state`
         | 
| 884 | 
            -
                    # @return [String]
         | 
| 885 | 
            -
                    attr_accessor :state
         | 
| 886 | 
            -
                  
         | 
| 887 | 
            -
                    def initialize(**args)
         | 
| 888 | 
            -
                       update!(**args)
         | 
| 889 | 
            -
                    end
         | 
| 890 | 
            -
                  
         | 
| 891 | 
            -
                    # Update properties of this object
         | 
| 892 | 
            -
                    def update!(**args)
         | 
| 893 | 
            -
                      @current_reasons = args[:current_reasons] if args.key?(:current_reasons)
         | 
| 894 | 
            -
                      @previous_reasons = args[:previous_reasons] if args.key?(:previous_reasons)
         | 
| 895 | 
            -
                      @state = args[:state] if args.key?(:state)
         | 
| 896 | 
            -
                    end
         | 
| 897 | 
            -
                  end
         | 
| 898 | 
            -
                  
         | 
| 899 899 | 
             
                  # ProjectsMetadata is the metadata CCFE stores about the all the relevant
         | 
| 900 900 | 
             
                  # projects (tenant, consumer, producer).
         | 
| 901 901 | 
             
                  class ProjectsMetadata
         | 
| @@ -962,7 +962,7 @@ module Google | |
| 962 962 | 
             
                    end
         | 
| 963 963 | 
             
                  end
         | 
| 964 964 |  | 
| 965 | 
            -
                  #  | 
| 965 | 
            +
                  # Containers transition between and within states based on reasons sent from
         | 
| 966 966 | 
             
                  # various systems. CCFE will provide the CLH with reasons for the current state
         | 
| 967 967 | 
             
                  # per system.The current systems that CCFE supports are: Service Management (
         | 
| 968 968 | 
             
                  # Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
         | 
| @@ -16,13 +16,13 @@ module Google | |
| 16 16 | 
             
              module Apis
         | 
| 17 17 | 
             
                module AppengineV1alpha
         | 
| 18 18 | 
             
                  # Version of the google-apis-appengine_v1alpha gem
         | 
| 19 | 
            -
                  GEM_VERSION = "0. | 
| 19 | 
            +
                  GEM_VERSION = "0.28.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 = "20231004"
         | 
| 26 26 | 
             
                end
         | 
| 27 27 | 
             
              end
         | 
| 28 28 | 
             
            end
         | 
| @@ -40,6 +40,12 @@ module Google | |
| 40 40 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 41 41 | 
             
                  end
         | 
| 42 42 |  | 
| 43 | 
            +
                  class ContainerState
         | 
| 44 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 45 | 
            +
                  
         | 
| 46 | 
            +
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 47 | 
            +
                  end
         | 
| 48 | 
            +
                  
         | 
| 43 49 | 
             
                  class CreateVersionMetadataV1
         | 
| 44 50 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 45 51 |  | 
| @@ -154,12 +160,6 @@ module Google | |
| 154 160 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 155 161 | 
             
                  end
         | 
| 156 162 |  | 
| 157 | 
            -
                  class ProjectState
         | 
| 158 | 
            -
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 159 | 
            -
                  
         | 
| 160 | 
            -
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 161 | 
            -
                  end
         | 
| 162 | 
            -
                  
         | 
| 163 163 | 
             
                  class ProjectsMetadata
         | 
| 164 164 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 165 165 |  | 
| @@ -223,6 +223,17 @@ module Google | |
| 223 223 | 
             
                    end
         | 
| 224 224 | 
             
                  end
         | 
| 225 225 |  | 
| 226 | 
            +
                  class ContainerState
         | 
| 227 | 
            +
                    # @private
         | 
| 228 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 229 | 
            +
                      property :current_reasons, as: 'currentReasons', class: Google::Apis::AppengineV1alpha::Reasons, decorator: Google::Apis::AppengineV1alpha::Reasons::Representation
         | 
| 230 | 
            +
                  
         | 
| 231 | 
            +
                      property :previous_reasons, as: 'previousReasons', class: Google::Apis::AppengineV1alpha::Reasons, decorator: Google::Apis::AppengineV1alpha::Reasons::Representation
         | 
| 232 | 
            +
                  
         | 
| 233 | 
            +
                      property :state, as: 'state'
         | 
| 234 | 
            +
                    end
         | 
| 235 | 
            +
                  end
         | 
| 236 | 
            +
                  
         | 
| 226 237 | 
             
                  class CreateVersionMetadataV1
         | 
| 227 238 | 
             
                    # @private
         | 
| 228 239 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| @@ -408,19 +419,8 @@ module Google | |
| 408 419 | 
             
                      property :phase, as: 'phase'
         | 
| 409 420 | 
             
                      property :project_metadata, as: 'projectMetadata', class: Google::Apis::AppengineV1alpha::ProjectsMetadata, decorator: Google::Apis::AppengineV1alpha::ProjectsMetadata::Representation
         | 
| 410 421 |  | 
| 411 | 
            -
                      property :state, as: 'state', class: Google::Apis::AppengineV1alpha:: | 
| 412 | 
            -
                  
         | 
| 413 | 
            -
                    end
         | 
| 414 | 
            -
                  end
         | 
| 422 | 
            +
                      property :state, as: 'state', class: Google::Apis::AppengineV1alpha::ContainerState, decorator: Google::Apis::AppengineV1alpha::ContainerState::Representation
         | 
| 415 423 |  | 
| 416 | 
            -
                  class ProjectState
         | 
| 417 | 
            -
                    # @private
         | 
| 418 | 
            -
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 419 | 
            -
                      property :current_reasons, as: 'currentReasons', class: Google::Apis::AppengineV1alpha::Reasons, decorator: Google::Apis::AppengineV1alpha::Reasons::Representation
         | 
| 420 | 
            -
                  
         | 
| 421 | 
            -
                      property :previous_reasons, as: 'previousReasons', class: Google::Apis::AppengineV1alpha::Reasons, decorator: Google::Apis::AppengineV1alpha::Reasons::Representation
         | 
| 422 | 
            -
                  
         | 
| 423 | 
            -
                      property :state, as: 'state'
         | 
| 424 424 | 
             
                    end
         | 
| 425 425 | 
             
                  end
         | 
| 426 426 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: google-apis-appengine_v1alpha
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0. | 
| 4 | 
            +
              version: 0.28.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-10-22 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-appengine_v1alpha/CHANGELOG.md
         | 
| 61 | 
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1alpha/v0. | 
| 61 | 
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1alpha/v0.28.0
         | 
| 62 62 | 
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1alpha
         | 
| 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 App Engine Admin API V1alpha
         |