google-apis-apigee_v1 0.14.0 → 0.15.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: 18d952a7a23dc590334ffdb6798bef02518af3ac64b36978e68f7e3deba31c76
         | 
| 4 | 
            +
              data.tar.gz: afde5d2260b5f16d57ca7c6d0631b16e25676af1b083eab18b57d865bda7bed2
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 899df1430faeab5cdea97f965a499dff0246304110eb3d2487a7da371b6f12a7f8085cb2ca187b2d1964abba1d6b2cc7cbcc736fc9887a333ea3e3508da1194d
         | 
| 7 | 
            +
              data.tar.gz: 657b35425ae16b0e40f5fb57fd49499e26211b55abe04c6ef211a2f94ae060afbec7b093d6cace3934f776d23c9e70dd171e0c0c509d30bb72f98e62043718de
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    
| @@ -5892,6 +5892,49 @@ module Google | |
| 5892 5892 | 
             
                    end
         | 
| 5893 5893 | 
             
                  end
         | 
| 5894 5894 |  | 
| 5895 | 
            +
                  # Runtime configuration for the organization. Response for GetRuntimeConfig.
         | 
| 5896 | 
            +
                  class GoogleCloudApigeeV1RuntimeConfig
         | 
| 5897 | 
            +
                    include Google::Apis::Core::Hashable
         | 
| 5898 | 
            +
                  
         | 
| 5899 | 
            +
                    # Cloud Storage bucket used for uploading Analytics records.
         | 
| 5900 | 
            +
                    # Corresponds to the JSON property `analyticsBucket`
         | 
| 5901 | 
            +
                    # @return [String]
         | 
| 5902 | 
            +
                    attr_accessor :analytics_bucket
         | 
| 5903 | 
            +
                  
         | 
| 5904 | 
            +
                    # Name of the resource in the following format: `organizations/`org`/
         | 
| 5905 | 
            +
                    # runtimeConfig`.
         | 
| 5906 | 
            +
                    # Corresponds to the JSON property `name`
         | 
| 5907 | 
            +
                    # @return [String]
         | 
| 5908 | 
            +
                    attr_accessor :name
         | 
| 5909 | 
            +
                  
         | 
| 5910 | 
            +
                    # Output only. Tenant project ID associated with the Apigee organization. The
         | 
| 5911 | 
            +
                    # tenant project is used to host Google-managed resources that are dedicated to
         | 
| 5912 | 
            +
                    # this Apigee organization. Clients have limited access to resources within the
         | 
| 5913 | 
            +
                    # tenant project used to support Apigee runtime instances. Access to the tenant
         | 
| 5914 | 
            +
                    # project is managed using SetSyncAuthorization. It can be empty if the tenant
         | 
| 5915 | 
            +
                    # project hasn't been created yet.
         | 
| 5916 | 
            +
                    # Corresponds to the JSON property `tenantProjectId`
         | 
| 5917 | 
            +
                    # @return [String]
         | 
| 5918 | 
            +
                    attr_accessor :tenant_project_id
         | 
| 5919 | 
            +
                  
         | 
| 5920 | 
            +
                    # Cloud Storage bucket used for uploading Trace records.
         | 
| 5921 | 
            +
                    # Corresponds to the JSON property `traceBucket`
         | 
| 5922 | 
            +
                    # @return [String]
         | 
| 5923 | 
            +
                    attr_accessor :trace_bucket
         | 
| 5924 | 
            +
                  
         | 
| 5925 | 
            +
                    def initialize(**args)
         | 
| 5926 | 
            +
                       update!(**args)
         | 
| 5927 | 
            +
                    end
         | 
| 5928 | 
            +
                  
         | 
| 5929 | 
            +
                    # Update properties of this object
         | 
| 5930 | 
            +
                    def update!(**args)
         | 
| 5931 | 
            +
                      @analytics_bucket = args[:analytics_bucket] if args.key?(:analytics_bucket)
         | 
| 5932 | 
            +
                      @name = args[:name] if args.key?(:name)
         | 
| 5933 | 
            +
                      @tenant_project_id = args[:tenant_project_id] if args.key?(:tenant_project_id)
         | 
| 5934 | 
            +
                      @trace_bucket = args[:trace_bucket] if args.key?(:trace_bucket)
         | 
| 5935 | 
            +
                    end
         | 
| 5936 | 
            +
                  end
         | 
| 5937 | 
            +
                  
         | 
| 5895 5938 | 
             
                  # NEXT ID: 8 RuntimeTraceConfig defines the configurations for distributed trace
         | 
| 5896 5939 | 
             
                  # in an environment.
         | 
| 5897 5940 | 
             
                  class GoogleCloudApigeeV1RuntimeTraceConfig
         | 
| @@ -16,13 +16,13 @@ module Google | |
| 16 16 | 
             
              module Apis
         | 
| 17 17 | 
             
                module ApigeeV1
         | 
| 18 18 | 
             
                  # Version of the google-apis-apigee_v1 gem
         | 
| 19 | 
            -
                  GEM_VERSION = "0. | 
| 19 | 
            +
                  GEM_VERSION = "0.15.0"
         | 
| 20 20 |  | 
| 21 21 | 
             
                  # Version of the code generator used to generate this client
         | 
| 22 22 | 
             
                  GENERATOR_VERSION = "0.3.0"
         | 
| 23 23 |  | 
| 24 24 | 
             
                  # Revision of the discovery document this client was generated from
         | 
| 25 | 
            -
                  REVISION = " | 
| 25 | 
            +
                  REVISION = "20210618"
         | 
| 26 26 | 
             
                end
         | 
| 27 27 | 
             
              end
         | 
| 28 28 | 
             
            end
         | 
| @@ -868,6 +868,12 @@ module Google | |
| 868 868 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 869 869 | 
             
                  end
         | 
| 870 870 |  | 
| 871 | 
            +
                  class GoogleCloudApigeeV1RuntimeConfig
         | 
| 872 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 873 | 
            +
                  
         | 
| 874 | 
            +
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 875 | 
            +
                  end
         | 
| 876 | 
            +
                  
         | 
| 871 877 | 
             
                  class GoogleCloudApigeeV1RuntimeTraceConfig
         | 
| 872 878 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 873 879 |  | 
| @@ -2670,6 +2676,16 @@ module Google | |
| 2670 2676 | 
             
                    end
         | 
| 2671 2677 | 
             
                  end
         | 
| 2672 2678 |  | 
| 2679 | 
            +
                  class GoogleCloudApigeeV1RuntimeConfig
         | 
| 2680 | 
            +
                    # @private
         | 
| 2681 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 2682 | 
            +
                      property :analytics_bucket, as: 'analyticsBucket'
         | 
| 2683 | 
            +
                      property :name, as: 'name'
         | 
| 2684 | 
            +
                      property :tenant_project_id, as: 'tenantProjectId'
         | 
| 2685 | 
            +
                      property :trace_bucket, as: 'traceBucket'
         | 
| 2686 | 
            +
                    end
         | 
| 2687 | 
            +
                  end
         | 
| 2688 | 
            +
                  
         | 
| 2673 2689 | 
             
                  class GoogleCloudApigeeV1RuntimeTraceConfig
         | 
| 2674 2690 | 
             
                    # @private
         | 
| 2675 2691 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| @@ -219,6 +219,37 @@ module Google | |
| 219 219 | 
             
                      execute_or_queue_command(command, &block)
         | 
| 220 220 | 
             
                    end
         | 
| 221 221 |  | 
| 222 | 
            +
                    # Get runtime config for an organization.
         | 
| 223 | 
            +
                    # @param [String] name
         | 
| 224 | 
            +
                    #   Required. Name of the runtime config for the organization in the following
         | 
| 225 | 
            +
                    #   format: 'organizations/`org`/runtimeConfig'.
         | 
| 226 | 
            +
                    # @param [String] fields
         | 
| 227 | 
            +
                    #   Selector specifying which fields to include in a partial response.
         | 
| 228 | 
            +
                    # @param [String] quota_user
         | 
| 229 | 
            +
                    #   Available to use for quota purposes for server-side applications. Can be any
         | 
| 230 | 
            +
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         | 
| 231 | 
            +
                    # @param [Google::Apis::RequestOptions] options
         | 
| 232 | 
            +
                    #   Request-specific options
         | 
| 233 | 
            +
                    #
         | 
| 234 | 
            +
                    # @yield [result, err] Result & error if block supplied
         | 
| 235 | 
            +
                    # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeConfig] parsed result object
         | 
| 236 | 
            +
                    # @yieldparam err [StandardError] error object if request failed
         | 
| 237 | 
            +
                    #
         | 
| 238 | 
            +
                    # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeConfig]
         | 
| 239 | 
            +
                    #
         | 
| 240 | 
            +
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 241 | 
            +
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 242 | 
            +
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 243 | 
            +
                    def get_organization_runtime_config(name, fields: nil, quota_user: nil, options: nil, &block)
         | 
| 244 | 
            +
                      command = make_simple_command(:get, 'v1/{+name}', options)
         | 
| 245 | 
            +
                      command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeConfig::Representation
         | 
| 246 | 
            +
                      command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeConfig
         | 
| 247 | 
            +
                      command.params['name'] = name unless name.nil?
         | 
| 248 | 
            +
                      command.query['fields'] = fields unless fields.nil?
         | 
| 249 | 
            +
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 250 | 
            +
                      execute_or_queue_command(command, &block)
         | 
| 251 | 
            +
                    end
         | 
| 252 | 
            +
                    
         | 
| 222 253 | 
             
                    # Lists the service accounts with the permissions required to allow the
         | 
| 223 254 | 
             
                    # Synchronizer to download environment data from the control plane. An ETag is
         | 
| 224 255 | 
             
                    # returned in the response to `getSyncAuthorization`. Pass that ETag when
         | 
    
        metadata
    CHANGED
    
    | @@ -1,29 +1,35 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: google-apis-apigee_v1
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0. | 
| 4 | 
            +
              version: 0.15.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: 2021-06- | 
| 11 | 
            +
            date: 2021-06-28 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: google-apis-core
         | 
| 15 15 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 16 16 | 
             
                requirements:
         | 
| 17 | 
            -
                - - " | 
| 17 | 
            +
                - - ">="
         | 
| 18 18 | 
             
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            -
                    version: '0. | 
| 19 | 
            +
                    version: '0.3'
         | 
| 20 | 
            +
                - - "<"
         | 
| 21 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 22 | 
            +
                    version: 2.a
         | 
| 20 23 | 
             
              type: :runtime
         | 
| 21 24 | 
             
              prerelease: false
         | 
| 22 25 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 23 26 | 
             
                requirements:
         | 
| 24 | 
            -
                - - " | 
| 27 | 
            +
                - - ">="
         | 
| 28 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 29 | 
            +
                    version: '0.3'
         | 
| 30 | 
            +
                - - "<"
         | 
| 25 31 | 
             
                  - !ruby/object:Gem::Version
         | 
| 26 | 
            -
                    version:  | 
| 32 | 
            +
                    version: 2.a
         | 
| 27 33 | 
             
            description: This is the simple REST client for Apigee API V1. Simple REST clients
         | 
| 28 34 | 
             
              are Ruby client libraries that provide access to Google services via their HTTP
         | 
| 29 35 | 
             
              REST API endpoints. These libraries are generated and updated automatically based
         | 
| @@ -52,7 +58,7 @@ licenses: | |
| 52 58 | 
             
            metadata:
         | 
| 53 59 | 
             
              bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
         | 
| 54 60 | 
             
              changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-apigee_v1/CHANGELOG.md
         | 
| 55 | 
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0. | 
| 61 | 
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.15.0
         | 
| 56 62 | 
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-apigee_v1
         | 
| 57 63 | 
             
            post_install_message: 
         | 
| 58 64 | 
             
            rdoc_options: []
         |