Class: Google::Apis::AppengineV1::Reasons

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/appengine_v1/classes.rb,
lib/google/apis/appengine_v1/representations.rb,
lib/google/apis/appengine_v1/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Reasons

Returns a new instance of Reasons.



2367
2368
2369
# File 'lib/google/apis/appengine_v1/classes.rb', line 2367

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

Instance Attribute Details

#abuseString

Corresponds to the JSON property abuse

Returns:

  • (String)


2350
2351
2352
# File 'lib/google/apis/appengine_v1/classes.rb', line 2350

def abuse
  @abuse
end

#billingString

Corresponds to the JSON property billing

Returns:

  • (String)


2355
2356
2357
# File 'lib/google/apis/appengine_v1/classes.rb', line 2355

def billing
  @billing
end

#data_governanceString

Corresponds to the JSON property dataGovernance

Returns:

  • (String)


2360
2361
2362
# File 'lib/google/apis/appengine_v1/classes.rb', line 2360

def data_governance
  @data_governance
end

#service_managementString

Corresponds to the JSON property serviceManagement

Returns:

  • (String)


2365
2366
2367
# File 'lib/google/apis/appengine_v1/classes.rb', line 2365

def service_management
  @service_management
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2372
2373
2374
2375
2376
2377
# File 'lib/google/apis/appengine_v1/classes.rb', line 2372

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