Class: Google::Apis::CloudfunctionsV2::Runtime

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Runtime

Returns a new instance of Runtime.



1792
1793
1794
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1792

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

Instance Attribute Details

#decommission_dateGoogle::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



1753
1754
1755
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1753

def decommission_date
  @decommission_date
end

#deprecation_dateGoogle::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



1765
1766
1767
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1765

def deprecation_date
  @deprecation_date
end

#display_nameString

The user facing name, eg 'Go 1.13', 'Node.js 12', etc. Corresponds to the JSON property displayName

Returns:

  • (String)


1770
1771
1772
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1770

def display_name
  @display_name
end

#environmentString

The environment for the runtime. Corresponds to the JSON property environment

Returns:

  • (String)


1775
1776
1777
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1775

def environment
  @environment
end

#nameString

The name of the runtime, e.g., 'go113', 'nodejs12', etc. Corresponds to the JSON property name

Returns:

  • (String)


1780
1781
1782
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1780

def name
  @name
end

#stageString

The stage of life this runtime is in, e.g., BETA, GA, etc. Corresponds to the JSON property stage

Returns:

  • (String)


1785
1786
1787
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1785

def stage
  @stage
end

#warningsArray<String>

Warning messages, e.g., a deprecation warning. Corresponds to the JSON property warnings

Returns:

  • (Array<String>)


1790
1791
1792
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1790

def warnings
  @warnings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1797
1798
1799
1800
1801
1802
1803
1804
1805
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1797

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