Class: Google::Apis::RunV1::Route

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

Overview

Route is responsible for configuring ingress over a collection of Revisions. Some of the Revisions a Route distributes traffic over may be specified by referencing the Configuration responsible for creating them; in these cases the Route is additionally responsible for monitoring the Configuration for " latest ready" revision changes, and smoothly rolling out latest revisions. See also: https://github.com/knative/serving/blob/master/docs/spec/overview.md# route Cloud Run currently supports referencing a single Configuration to automatically deploy the "latest ready" Revision from that Configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Route

Returns a new instance of Route.



2239
2240
2241
# File 'generated/google/apis/run_v1/classes.rb', line 2239

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

Instance Attribute Details

#api_versionString

The API version for this call such as "serving.knative.dev/v1". Corresponds to the JSON property apiVersion

Returns:

  • (String)


2216
2217
2218
# File 'generated/google/apis/run_v1/classes.rb', line 2216

def api_version
  @api_version
end

#kindString

The kind of this resource, in this case always "Route". Corresponds to the JSON property kind

Returns:

  • (String)


2221
2222
2223
# File 'generated/google/apis/run_v1/classes.rb', line 2221

def kind
  @kind
end

#metadataGoogle::Apis::RunV1::ObjectMeta

k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. Corresponds to the JSON property metadata



2227
2228
2229
# File 'generated/google/apis/run_v1/classes.rb', line 2227

def 
  @metadata
end

#specGoogle::Apis::RunV1::RouteSpec

RouteSpec holds the desired state of the Route (from the client). Corresponds to the JSON property spec



2232
2233
2234
# File 'generated/google/apis/run_v1/classes.rb', line 2232

def spec
  @spec
end

#statusGoogle::Apis::RunV1::RouteStatus

RouteStatus communicates the observed state of the Route (from the controller). Corresponds to the JSON property status



2237
2238
2239
# File 'generated/google/apis/run_v1/classes.rb', line 2237

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2244
2245
2246
2247
2248
2249
2250
# File 'generated/google/apis/run_v1/classes.rb', line 2244

def update!(**args)
  @api_version = args[:api_version] if args.key?(:api_version)
  @kind = args[:kind] if args.key?(:kind)
  @metadata = args[:metadata] if args.key?(:metadata)
  @spec = args[:spec] if args.key?(:spec)
  @status = args[:status] if args.key?(:status)
end