Class: Google::Apis::AppengineV1::EndpointsApiService

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/appengine_v1/classes.rb,
generated/google/apis/appengine_v1/representations.rb,
generated/google/apis/appengine_v1/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.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



1610
1611
1612
# File 'generated/google/apis/appengine_v1/classes.rb', line 1610

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" Corresponds to the JSON property configId

Returns:

  • (String)


1608
1609
1610
# File 'generated/google/apis/appengine_v1/classes.rb', line 1608

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)


1602
1603
1604
# File 'generated/google/apis/appengine_v1/classes.rb', line 1602

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1615
1616
1617
1618
# File 'generated/google/apis/appengine_v1/classes.rb', line 1615

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