Function$_State class final

Describes the current state of the function.

Inheritance
  • Object
  • ProtoEnum
  • Function$_State

Constructors

Function$_State(String value)
const
Function$_State.fromJson(Object? json)
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
isNotDefault bool
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value String
finalinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() String
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

$default → const Function$_State
The default value for Function$_State.
active → const Function$_State
Function has been successfully deployed and is serving.
deleting → const Function$_State
Function is being deleted.
deploying → const Function$_State
Function is being created or updated.
failed → const Function$_State
Function deployment failed and the function is not serving.
stateUnspecified → const Function$_State
Not specified. Invalid state.
unknown → const Function$_State
Function deployment failed and the function serving state is undefined. The function should be updated or deleted to move it out of this state.