Class: Google::Apis::CloudfunctionsV2::Runtime
- Inherits:
-
Object
- Object
- Google::Apis::CloudfunctionsV2::Runtime
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudfunctions_v2/classes.rb,
lib/google/apis/cloudfunctions_v2/representations.rb,
lib/google/apis/cloudfunctions_v2/representations.rb
Overview
Describes a runtime and any special information (e.g., deprecation status) related to it.
Instance Attribute Summary collapse
-
#decommission_date ⇒ Google::Apis::CloudfunctionsV2::Date
Represents a whole or partial calendar date, such as a birthday.
-
#deprecation_date ⇒ Google::Apis::CloudfunctionsV2::Date
Represents a whole or partial calendar date, such as a birthday.
-
#display_name ⇒ String
The user facing name, eg 'Go 1.13', 'Node.js 12', etc.
-
#environment ⇒ String
The environment for the runtime.
-
#name ⇒ String
The name of the runtime, e.g., 'go113', 'nodejs12', etc.
-
#stage ⇒ String
The stage of life this runtime is in, e.g., BETA, GA, etc.
-
#warnings ⇒ Array<String>
Warning messages, e.g., a deprecation warning.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Runtime
constructor
A new instance of Runtime.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Runtime
Returns a new instance of Runtime.
1502 1503 1504 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1502 def initialize(**args) update!(**args) end |
Instance Attribute Details
#decommission_date ⇒ Google::Apis::CloudfunctionsV2::Date
Represents a whole or partial calendar date, such as a birthday. The time of
day and time zone are either specified elsewhere or are insignificant. The
date is relative to the Gregorian Calendar. This can represent one of the
following: * A full date, with non-zero year, month, and day values. * A month
and day, with a zero year (for example, an anniversary). * A year on its own,
with a zero month and a zero day. * A year and month, with a zero day (for
example, a credit card expiration date). Related types: * google.type.
TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
Corresponds to the JSON property decommissionDate
1463 1464 1465 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1463 def decommission_date @decommission_date end |
#deprecation_date ⇒ Google::Apis::CloudfunctionsV2::Date
Represents a whole or partial calendar date, such as a birthday. The time of
day and time zone are either specified elsewhere or are insignificant. The
date is relative to the Gregorian Calendar. This can represent one of the
following: * A full date, with non-zero year, month, and day values. * A month
and day, with a zero year (for example, an anniversary). * A year on its own,
with a zero month and a zero day. * A year and month, with a zero day (for
example, a credit card expiration date). Related types: * google.type.
TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
Corresponds to the JSON property deprecationDate
1475 1476 1477 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1475 def deprecation_date @deprecation_date end |
#display_name ⇒ String
The user facing name, eg 'Go 1.13', 'Node.js 12', etc.
Corresponds to the JSON property displayName
1480 1481 1482 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1480 def display_name @display_name end |
#environment ⇒ String
The environment for the runtime.
Corresponds to the JSON property environment
1485 1486 1487 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1485 def environment @environment end |
#name ⇒ String
The name of the runtime, e.g., 'go113', 'nodejs12', etc.
Corresponds to the JSON property name
1490 1491 1492 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1490 def name @name end |
#stage ⇒ String
The stage of life this runtime is in, e.g., BETA, GA, etc.
Corresponds to the JSON property stage
1495 1496 1497 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1495 def stage @stage end |
#warnings ⇒ Array<String>
Warning messages, e.g., a deprecation warning.
Corresponds to the JSON property warnings
1500 1501 1502 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1500 def warnings @warnings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1507 1508 1509 1510 1511 1512 1513 1514 1515 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1507 def update!(**args) @decommission_date = args[:decommission_date] if args.key?(:decommission_date) @deprecation_date = args[:deprecation_date] if args.key?(:deprecation_date) @display_name = args[:display_name] if args.key?(:display_name) @environment = args[:environment] if args.key?(:environment) @name = args[:name] if args.key?(:name) @stage = args[:stage] if args.key?(:stage) @warnings = args[:warnings] if args.key?(:warnings) end |