Class: Azure::Automation::Mgmt::V2015_10_31::Models::RunbookDraftUndoEditResult
- Inherits:
-
Object
- Object
- Azure::Automation::Mgmt::V2015_10_31::Models::RunbookDraftUndoEditResult
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_draft_undo_edit_result.rb
Overview
The response model for the undoedit runbook operation.
Instance Attribute Summary collapse
- #request_id ⇒ String
-
#status_code ⇒ HttpStatusCode
‘SwitchingProtocols’, ‘OK’, ‘Created’, ‘Accepted’, ‘NonAuthoritativeInformation’, ‘NoContent’, ‘ResetContent’, ‘PartialContent’, ‘MultipleChoices’, ‘Ambiguous’, ‘MovedPermanently’, ‘Moved’, ‘Found’, ‘Redirect’, ‘SeeOther’, ‘RedirectMethod’, ‘NotModified’, ‘UseProxy’, ‘Unused’, ‘TemporaryRedirect’, ‘RedirectKeepVerb’, ‘BadRequest’, ‘Unauthorized’, ‘PaymentRequired’, ‘Forbidden’, ‘NotFound’, ‘MethodNotAllowed’, ‘NotAcceptable’, ‘ProxyAuthenticationRequired’, ‘RequestTimeout’, ‘Conflict’, ‘Gone’, ‘LengthRequired’, ‘PreconditionFailed’, ‘RequestEntityTooLarge’, ‘RequestUriTooLong’, ‘UnsupportedMediaType’, ‘RequestedRangeNotSatisfiable’, ‘ExpectationFailed’, ‘UpgradeRequired’, ‘InternalServerError’, ‘NotImplemented’, ‘BadGateway’, ‘ServiceUnavailable’, ‘GatewayTimeout’, ‘HttpVersionNotSupported’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for RunbookDraftUndoEditResult class as Ruby Hash.
Instance Attribute Details
#request_id ⇒ String
32 33 34 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_draft_undo_edit_result.rb', line 32 def request_id @request_id end |
#status_code ⇒ HttpStatusCode
‘SwitchingProtocols’, ‘OK’, ‘Created’, ‘Accepted’, ‘NonAuthoritativeInformation’, ‘NoContent’, ‘ResetContent’, ‘PartialContent’, ‘MultipleChoices’, ‘Ambiguous’, ‘MovedPermanently’, ‘Moved’, ‘Found’, ‘Redirect’, ‘SeeOther’, ‘RedirectMethod’, ‘NotModified’, ‘UseProxy’, ‘Unused’, ‘TemporaryRedirect’, ‘RedirectKeepVerb’, ‘BadRequest’, ‘Unauthorized’, ‘PaymentRequired’, ‘Forbidden’, ‘NotFound’, ‘MethodNotAllowed’, ‘NotAcceptable’, ‘ProxyAuthenticationRequired’, ‘RequestTimeout’, ‘Conflict’, ‘Gone’, ‘LengthRequired’, ‘PreconditionFailed’, ‘RequestEntityTooLarge’, ‘RequestUriTooLong’, ‘UnsupportedMediaType’, ‘RequestedRangeNotSatisfiable’, ‘ExpectationFailed’, ‘UpgradeRequired’, ‘InternalServerError’, ‘NotImplemented’, ‘BadGateway’, ‘ServiceUnavailable’, ‘GatewayTimeout’, ‘HttpVersionNotSupported’
29 30 31 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_draft_undo_edit_result.rb', line 29 def status_code @status_code end |
Class Method Details
.mapper ⇒ Object
Mapper for RunbookDraftUndoEditResult class as Ruby Hash. This will be used for serialization/deserialization.
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_draft_undo_edit_result.rb', line 39 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RunbookDraftUndoEditResult', type: { name: 'Composite', class_name: 'RunbookDraftUndoEditResult', model_properties: { status_code: { client_side_validation: true, required: false, serialized_name: 'statusCode', type: { name: 'Enum', module: 'HttpStatusCode' } }, request_id: { client_side_validation: true, required: false, serialized_name: 'requestId', type: { name: 'String' } } } } } end |