class Google::Apis::RunV1beta1::ExternalDocumentation

ExternalDocumentation allows referencing an external resource for extended documentation.

Attributes

description[RW]

Corresponds to the JSON property `description` @return [String]

url[RW]

Corresponds to the JSON property `url` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/run_v1beta1/classes.rb, line 427
def update!(**args)
  @description = args[:description] if args.key?(:description)
  @url = args[:url] if args.key?(:url)
end