Class: Google::Apis::AppengineV1beta5::EndpointsApiService
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta5::EndpointsApiService
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1beta5/classes.rb,
generated/google/apis/appengine_v1beta5/representations.rb,
generated/google/apis/appengine_v1beta5/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
-
#config_id ⇒ String
Endpoints service configuration id as specified by the Service Management API.
-
#name ⇒ String
Endpoints service name which is the name of the "service" resource in the Service Management API.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EndpointsApiService
constructor
A new instance of EndpointsApiService.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ EndpointsApiService
Returns a new instance of EndpointsApiService
1442 1443 1444 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1442 def initialize(**args) update!(**args) end |
Instance Attribute Details
#config_id ⇒ String
Endpoints service configuration id as specified by the Service Management API.
For example "2016-09-19r1"
Corresponds to the JSON property configId
1440 1441 1442 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1440 def config_id @config_id end |
#name ⇒ String
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
1434 1435 1436 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1434 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1447 1448 1449 1450 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1447 def update!(**args) @name = args[:name] if args.key?(:name) @config_id = args[:config_id] if args.key?(:config_id) end |