Class: Azure::Security::Mgmt::V2020_08_06_preview::Models::PackageDownloadsCentralManagerFullOvf
- Inherits:
-
Object
- Object
- Azure::Security::Mgmt::V2020_08_06_preview::Models::PackageDownloadsCentralManagerFullOvf
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-08-06-preview/generated/azure_mgmt_security/models/package_downloads_central_manager_full_ovf.rb
Overview
Contains all OVF (virtual machine) full versions of the Central Manager
Instance Attribute Summary collapse
-
#enterprise ⇒ Array<PackageDownloadInfo>
The Enterprise package type.
-
#enterprise_high_availability ⇒ Array<PackageDownloadInfo>
package type.
-
#medium ⇒ Array<PackageDownloadInfo>
The Medium package type.
-
#medium_high_availability ⇒ Array<PackageDownloadInfo>
type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PackageDownloadsCentralManagerFullOvf class as Ruby Hash.
Instance Attribute Details
#enterprise ⇒ Array<PackageDownloadInfo>
16 17 18 |
# File 'lib/2020-08-06-preview/generated/azure_mgmt_security/models/package_downloads_central_manager_full_ovf.rb', line 16 def enterprise @enterprise end |
#enterprise_high_availability ⇒ Array<PackageDownloadInfo>
package type
20 21 22 |
# File 'lib/2020-08-06-preview/generated/azure_mgmt_security/models/package_downloads_central_manager_full_ovf.rb', line 20 def enterprise_high_availability @enterprise_high_availability end |
#medium ⇒ Array<PackageDownloadInfo>
23 24 25 |
# File 'lib/2020-08-06-preview/generated/azure_mgmt_security/models/package_downloads_central_manager_full_ovf.rb', line 23 def medium @medium end |
#medium_high_availability ⇒ Array<PackageDownloadInfo>
type
27 28 29 |
# File 'lib/2020-08-06-preview/generated/azure_mgmt_security/models/package_downloads_central_manager_full_ovf.rb', line 27 def medium_high_availability @medium_high_availability end |
Class Method Details
.mapper ⇒ Object
Mapper for PackageDownloadsCentralManagerFullOvf class as Ruby Hash. This will be used for serialization/deserialization.
34 35 36 37 38 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 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-08-06-preview/generated/azure_mgmt_security/models/package_downloads_central_manager_full_ovf.rb', line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PackageDownloads_centralManager_full_ovf', type: { name: 'Composite', class_name: 'PackageDownloadsCentralManagerFullOvf', model_properties: { enterprise: { client_side_validation: true, required: false, read_only: true, serialized_name: 'enterprise', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'PackageDownloadInfoElementType', type: { name: 'Composite', class_name: 'PackageDownloadInfo' } } } }, enterprise_high_availability: { client_side_validation: true, required: false, read_only: true, serialized_name: 'enterpriseHighAvailability', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'PackageDownloadInfoElementType', type: { name: 'Composite', class_name: 'PackageDownloadInfo' } } } }, medium: { client_side_validation: true, required: false, read_only: true, serialized_name: 'medium', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'PackageDownloadInfoElementType', type: { name: 'Composite', class_name: 'PackageDownloadInfo' } } } }, medium_high_availability: { client_side_validation: true, required: false, read_only: true, serialized_name: 'mediumHighAvailability', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'PackageDownloadInfoElementType', type: { name: 'Composite', class_name: 'PackageDownloadInfo' } } } } } } } end |