Class: Google::Apis::AppengineV1beta::EndpointsApiService

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/appengine_v1beta/classes.rb,
generated/google/apis/appengine_v1beta/representations.rb,
generated/google/apis/appengine_v1beta/representations.rb

Overview

Cloud Endpoints (https://cloud.google.com/endpoints) configuration. The Endpoints API Service provides tooling for serving Open API and gRPC endpoints via an NGINX proxy. Only valid for App Engine Flexible environment deployments. The fields here refer to the name and configuration id of a "service" resource in the Service Management API (https://cloud.google.com/service-management/ overview).

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ EndpointsApiService

Returns a new instance of EndpointsApiService



920
921
922
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 920

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#config_idString

Endpoints service configuration id as specified by the Service Management API. For example "2016-09-19r1"By default, the Endpoints service configuration id is fixed and config_id must be specified. To keep the Endpoints service configuration id updated with each rollout, specify RolloutStrategy.MANAGED and omit config_id. Corresponds to the JSON property configId

Returns:

  • (String)


906
907
908
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 906

def config_id
  @config_id
end

#nameString

Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog" Corresponds to the JSON property name

Returns:

  • (String)


912
913
914
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 912

def name
  @name
end

#rollout_strategyString

Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted. Corresponds to the JSON property rolloutStrategy

Returns:

  • (String)


918
919
920
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 918

def rollout_strategy
  @rollout_strategy
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



925
926
927
928
929
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 925

def update!(**args)
  @config_id = args[:config_id] if args.key?(:config_id)
  @name = args[:name] if args.key?(:name)
  @rollout_strategy = args[:rollout_strategy] if args.key?(:rollout_strategy)
end