Class: Google::Apis::AppengineV1beta::Reasons
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta::Reasons
- 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
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)
Instance Attribute Summary collapse
-
#abuse ⇒ String
Corresponds to the JSON property
abuse. -
#billing ⇒ String
Corresponds to the JSON property
billing. -
#data_governance ⇒ String
Corresponds to the JSON property
dataGovernance. -
#service_management ⇒ String
Corresponds to the JSON property
serviceManagement.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Reasons
constructor
A new instance of Reasons.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Reasons
Returns a new instance of Reasons.
2447 2448 2449 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2447 def initialize(**args) update!(**args) end |
Instance Attribute Details
#abuse ⇒ String
Corresponds to the JSON property abuse
2430 2431 2432 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2430 def abuse @abuse end |
#billing ⇒ String
Corresponds to the JSON property billing
2435 2436 2437 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2435 def billing @billing end |
#data_governance ⇒ String
Corresponds to the JSON property dataGovernance
2440 2441 2442 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2440 def data_governance @data_governance end |
#service_management ⇒ String
Corresponds to the JSON property serviceManagement
2445 2446 2447 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2445 def service_management @service_management end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2452 2453 2454 2455 2456 2457 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 2452 def update!(**args) @abuse = args[:abuse] if args.key?(:abuse) @billing = args[:billing] if args.key?(:billing) @data_governance = args[:data_governance] if args.key?(:data_governance) @service_management = args[:service_management] if args.key?(:service_management) end |