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.
1879 1880 1881 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1879 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
1840 1841 1842 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1840 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
1852 1853 1854 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1852 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
1857 1858 1859 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1857 def display_name @display_name end |
#environment ⇒ String
The environment for the runtime.
Corresponds to the JSON property environment
1862 1863 1864 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1862 def environment @environment end |
#name ⇒ String
The name of the runtime, e.g., 'go113', 'nodejs12', etc.
Corresponds to the JSON property name
1867 1868 1869 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1867 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
1872 1873 1874 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1872 def stage @stage end |
#warnings ⇒ Array<String>
Warning messages, e.g., a deprecation warning.
Corresponds to the JSON property warnings
1877 1878 1879 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1877 def warnings @warnings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1884 1885 1886 1887 1888 1889 1890 1891 1892 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1884 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 |