class Google::Apis::ServiceusageV1beta1::EnableFailure

Provides error messages for the failing services.

Attributes

error_message[RW]

An error message describing why the service could not be enabled. Corresponds to the JSON property `errorMessage` @return [String]

service_id[RW]

The service id of a service that could not be enabled. Corresponds to the JSON property `serviceId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/serviceusage_v1beta1/classes.rb, line 1141
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/serviceusage_v1beta1/classes.rb, line 1146
def update!(**args)
  @error_message = args[:error_message] if args.key?(:error_message)
  @service_id = args[:service_id] if args.key?(:service_id)
end