Class: Google::Apis::AppengineV1::Service
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1::Service
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/appengine_v1/classes.rb,
lib/google/apis/appengine_v1/representations.rb,
lib/google/apis/appengine_v1/representations.rb
Overview
A Service resource is a logical component of an application that can share state and communicate in a secure fashion with other services. For example, an application that handles customer requests might include separate services to handle tasks such as backend data analysis or API requests from mobile devices. Each service has a collection of versions that define a specific set of code used to implement the functionality of that service.
Instance Attribute Summary collapse
-
#id ⇒ String
Relative name of the service within the application.
-
#labels ⇒ Hash<String,String>
A set of labels to apply to this service.
-
#name ⇒ String
Full path to the Service resource in the API.
-
#network_settings ⇒ Google::Apis::AppengineV1::NetworkSettings
A NetworkSettings resource is a container for ingress settings for a version or service.
-
#split ⇒ Google::Apis::AppengineV1::TrafficSplit
Traffic routing configuration for versions within a single service.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Service
constructor
A new instance of Service.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Service
Returns a new instance of Service.
2587 2588 2589 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 2587 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Relative name of the service within the application. Example: default.@
OutputOnly
Corresponds to the JSON property id
2553 2554 2555 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 2553 def id @id end |
#labels ⇒ Hash<String,String>
A set of labels to apply to this service. Labels are key/value pairs that
describe the service and all resources that belong to it (e.g., versions). The
labels can be used to search and group resources, and are propagated to the
usage and billing reports, enabling fine-grain analysis of costs. An example
of using labels is to tag resources belonging to different environments (e.g.,
"env=prod", "env=qa"). Label keys and values can be no longer than 63
characters and can only contain lowercase letters, numeric characters,
underscores, dashes, and international characters. Label keys must start with
a lowercase letter or an international character. Each service can have at
most 32 labels.
Corresponds to the JSON property labels
2567 2568 2569 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 2567 def labels @labels end |
#name ⇒ String
Full path to the Service resource in the API. Example: apps/myapp/services/
default.@OutputOnly
Corresponds to the JSON property name
2573 2574 2575 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 2573 def name @name end |
#network_settings ⇒ Google::Apis::AppengineV1::NetworkSettings
A NetworkSettings resource is a container for ingress settings for a version
or service.
Corresponds to the JSON property networkSettings
2579 2580 2581 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 2579 def network_settings @network_settings end |
#split ⇒ Google::Apis::AppengineV1::TrafficSplit
Traffic routing configuration for versions within a single service. Traffic
splits define how traffic directed to the service is assigned to versions.
Corresponds to the JSON property split
2585 2586 2587 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 2585 def split @split end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2592 2593 2594 2595 2596 2597 2598 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 2592 def update!(**args) @id = args[:id] if args.key?(:id) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @network_settings = args[:network_settings] if args.key?(:network_settings) @split = args[:split] if args.key?(:split) end |