Class: Azure::Compute::Mgmt::V2020_12_01::Models::PatchInstallationDetail
- Inherits:
-
Object
- Object
- Azure::Compute::Mgmt::V2020_12_01::Models::PatchInstallationDetail
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-12-01/generated/azure_mgmt_compute/models/patch_installation_detail.rb
Overview
Information about a specific patch that was encountered during an installation action.
Instance Attribute Summary collapse
-
#classifications ⇒ Array<String>
by the patch publisher.
-
#installation_state ⇒ PatchInstallationState
installation operation completed.
-
#kb_id ⇒ String
patches.
-
#name ⇒ String
The friendly name of the patch.
-
#patch_id ⇒ String
A unique identifier for the patch.
-
#version ⇒ String
Semantic Versioning.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PatchInstallationDetail class as Ruby Hash.
Instance Attribute Details
#classifications ⇒ Array<String>
by the patch publisher.
32 33 34 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/patch_installation_detail.rb', line 32 def classifications @classifications end |
#installation_state ⇒ PatchInstallationState
installation operation completed. Possible values include: ‘Unknown’, ‘Installed’, ‘Failed’, ‘Excluded’, ‘NotSelected’, ‘Pending’
37 38 39 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/patch_installation_detail.rb', line 37 def installation_state @installation_state end |
#kb_id ⇒ String
patches.
28 29 30 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/patch_installation_detail.rb', line 28 def kb_id @kb_id end |
#name ⇒ String
Returns The friendly name of the patch.
20 21 22 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/patch_installation_detail.rb', line 20 def name @name end |
#patch_id ⇒ String
Returns A unique identifier for the patch.
17 18 19 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/patch_installation_detail.rb', line 17 def patch_id @patch_id end |
#version ⇒ String
Semantic Versioning. Only applies to Linux.
24 25 26 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/patch_installation_detail.rb', line 24 def version @version end |
Class Method Details
.mapper ⇒ Object
Mapper for PatchInstallationDetail class as Ruby Hash. This will be used for serialization/deserialization.
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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/patch_installation_detail.rb', line 44 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PatchInstallationDetail', type: { name: 'Composite', class_name: 'PatchInstallationDetail', model_properties: { patch_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'patchId', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, version: { client_side_validation: true, required: false, read_only: true, serialized_name: 'version', type: { name: 'String' } }, kb_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'kbId', type: { name: 'String' } }, classifications: { client_side_validation: true, required: false, read_only: true, serialized_name: 'classifications', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, installation_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'installationState', type: { name: 'String' } } } } } end |