Class: Google::Apis::AppengineV1beta::ProjectState
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta::ProjectState
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/appengine_v1beta/classes.rb,
lib/google/apis/appengine_v1beta/representations.rb,
lib/google/apis/appengine_v1beta/representations.rb
Overview
ProjectState contains the externally-visible project state that is used to communicate the state and reasoning for that state to the CLH. This data is not persisted by CCFE, but is instead derived from CCFE's internal representation of the project state.
Instance Attribute Summary collapse
-
#current_reasons ⇒ Google::Apis::AppengineV1beta::Reasons
Projects transition between and within states based on reasons sent from various systems.
-
#previous_reasons ⇒ Google::Apis::AppengineV1beta::Reasons
Projects transition between and within states based on reasons sent from various systems.
-
#state ⇒ String
The current state of the project.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProjectState
constructor
A new instance of ProjectState.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ProjectState
Returns a new instance of ProjectState.
2332 2333 2334 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2332 def initialize(**args) update!(**args) end |
Instance Attribute Details
#current_reasons ⇒ Google::Apis::AppengineV1beta::Reasons
Projects transition between and within states based on reasons sent from
various systems. CCFE will provide the CLH with reasons for the current state
per system.The current systems that CCFE supports are: Service Management (
Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
Billing API)
Corresponds to the JSON property currentReasons
2315 2316 2317 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2315 def current_reasons @current_reasons end |
#previous_reasons ⇒ Google::Apis::AppengineV1beta::Reasons
Projects transition between and within states based on reasons sent from
various systems. CCFE will provide the CLH with reasons for the current state
per system.The current systems that CCFE supports are: Service Management (
Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
Billing API)
Corresponds to the JSON property previousReasons
2324 2325 2326 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2324 def previous_reasons @previous_reasons end |
#state ⇒ String
The current state of the project. This state is the culmination of all of the
opinions from external systems that CCFE knows about of the project.
Corresponds to the JSON property state
2330 2331 2332 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2330 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2337 2338 2339 2340 2341 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2337 def update!(**args) @current_reasons = args[:current_reasons] if args.key?(:current_reasons) @previous_reasons = args[:previous_reasons] if args.key?(:previous_reasons) @state = args[:state] if args.key?(:state) end |