Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeleteResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb

Overview

Response for certain delete operations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1DeleteResponse

Returns a new instance of GoogleCloudApigeeV1DeleteResponse.



2407
2408
2409
# File 'lib/google/apis/apigee_v1/classes.rb', line 2407

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

Instance Attribute Details

#error_codeString

ID that can be used to find errors in the log files. Corresponds to the JSON property errorCode

Returns:

  • (String)


2385
2386
2387
# File 'lib/google/apis/apigee_v1/classes.rb', line 2385

def error_code
  @error_code
end

#gcp_resourceString

GCP name of deleted resource. Corresponds to the JSON property gcpResource

Returns:

  • (String)


2390
2391
2392
# File 'lib/google/apis/apigee_v1/classes.rb', line 2390

def gcp_resource
  @gcp_resource
end

#messageString

Description of the operation. Corresponds to the JSON property message

Returns:

  • (String)


2395
2396
2397
# File 'lib/google/apis/apigee_v1/classes.rb', line 2395

def message
  @message
end

#request_idString

ID that can be used to find request details in the log files. Corresponds to the JSON property requestId

Returns:

  • (String)


2400
2401
2402
# File 'lib/google/apis/apigee_v1/classes.rb', line 2400

def request_id
  @request_id
end

#statusString

Status of the operation. Corresponds to the JSON property status

Returns:

  • (String)


2405
2406
2407
# File 'lib/google/apis/apigee_v1/classes.rb', line 2405

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2412
2413
2414
2415
2416
2417
2418
# File 'lib/google/apis/apigee_v1/classes.rb', line 2412

def update!(**args)
  @error_code = args[:error_code] if args.key?(:error_code)
  @gcp_resource = args[:gcp_resource] if args.key?(:gcp_resource)
  @message = args[:message] if args.key?(:message)
  @request_id = args[:request_id] if args.key?(:request_id)
  @status = args[:status] if args.key?(:status)
end