Class: Google::Apis::CloudfunctionsV2beta::Runtime
- Inherits:
-
Object
- Object
- Google::Apis::CloudfunctionsV2beta::Runtime
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudfunctions_v2beta/classes.rb,
lib/google/apis/cloudfunctions_v2beta/representations.rb,
lib/google/apis/cloudfunctions_v2beta/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::CloudfunctionsV2beta::Date
Represents a whole or partial calendar date, such as a birthday.
-
#deprecation_date ⇒ Google::Apis::CloudfunctionsV2beta::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.
1860 1861 1862 |
# File 'lib/google/apis/cloudfunctions_v2beta/classes.rb', line 1860 def initialize(**args) update!(**args) end |
Instance Attribute Details
#decommission_date ⇒ Google::Apis::CloudfunctionsV2beta::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
1821 1822 1823 |
# File 'lib/google/apis/cloudfunctions_v2beta/classes.rb', line 1821 def decommission_date @decommission_date end |
#deprecation_date ⇒ Google::Apis::CloudfunctionsV2beta::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
1833 1834 1835 |
# File 'lib/google/apis/cloudfunctions_v2beta/classes.rb', line 1833 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
1838 1839 1840 |
# File 'lib/google/apis/cloudfunctions_v2beta/classes.rb', line 1838 def display_name @display_name end |
#environment ⇒ String
The environment for the runtime.
Corresponds to the JSON property environment
1843 1844 1845 |
# File 'lib/google/apis/cloudfunctions_v2beta/classes.rb', line 1843 def environment @environment end |
#name ⇒ String
The name of the runtime, e.g., 'go113', 'nodejs12', etc.
Corresponds to the JSON property name
1848 1849 1850 |
# File 'lib/google/apis/cloudfunctions_v2beta/classes.rb', line 1848 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
1853 1854 1855 |
# File 'lib/google/apis/cloudfunctions_v2beta/classes.rb', line 1853 def stage @stage end |
#warnings ⇒ Array<String>
Warning messages, e.g., a deprecation warning.
Corresponds to the JSON property warnings
1858 1859 1860 |
# File 'lib/google/apis/cloudfunctions_v2beta/classes.rb', line 1858 def warnings @warnings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1865 1866 1867 1868 1869 1870 1871 1872 1873 |
# File 'lib/google/apis/cloudfunctions_v2beta/classes.rb', line 1865 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 |