class Google::Apis::AppengineV1beta5::EndpointsApiService

Cloud Endpoints (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 (cloud.google.com/service-management/ overview).

Attributes

config_id[RW]

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` @return [String]

disable_trace_sampling[RW]

Enable or disable trace sampling. By default, this is set to false for enabled. Corresponds to the JSON property `disableTraceSampling` @return [Boolean]

disable_trace_sampling?[RW]

Enable or disable trace sampling. By default, this is set to false for enabled. Corresponds to the JSON property `disableTraceSampling` @return [Boolean]

name[RW]

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` @return [String]

rollout_strategy[RW]

Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted. Corresponds to the JSON property `rolloutStrategy` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/appengine_v1beta5/classes.rb, line 541
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/appengine_v1beta5/classes.rb, line 546
def update!(**args)
  @config_id = args[:config_id] if args.key?(:config_id)
  @disable_trace_sampling = args[:disable_trace_sampling] if args.key?(:disable_trace_sampling)
  @name = args[:name] if args.key?(:name)
  @rollout_strategy = args[:rollout_strategy] if args.key?(:rollout_strategy)
end