Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeleteResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeleteResponse
- 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
-
#error_code ⇒ String
ID that can be used to find errors in the log files.
-
#gcp_resource ⇒ String
GCP name of deleted resource.
-
#message ⇒ String
Description of the operation.
-
#request_id ⇒ String
ID that can be used to find request details in the log files.
-
#status ⇒ String
Status of the operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1DeleteResponse
constructor
A new instance of GoogleCloudApigeeV1DeleteResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1DeleteResponse
Returns a new instance of GoogleCloudApigeeV1DeleteResponse.
2706 2707 2708 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2706 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_code ⇒ String
ID that can be used to find errors in the log files.
Corresponds to the JSON property errorCode
2684 2685 2686 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2684 def error_code @error_code end |
#gcp_resource ⇒ String
GCP name of deleted resource.
Corresponds to the JSON property gcpResource
2689 2690 2691 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2689 def gcp_resource @gcp_resource end |
#message ⇒ String
Description of the operation.
Corresponds to the JSON property message
2694 2695 2696 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2694 def @message end |
#request_id ⇒ String
ID that can be used to find request details in the log files.
Corresponds to the JSON property requestId
2699 2700 2701 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2699 def request_id @request_id end |
#status ⇒ String
Status of the operation.
Corresponds to the JSON property status
2704 2705 2706 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2704 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2711 2712 2713 2714 2715 2716 2717 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2711 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 |