Class: Azure::ApiManagement::Mgmt::V2017_03_01::Models::CertificateCreateOrUpdateParameters
- Inherits:
-
Object
- Object
- Azure::ApiManagement::Mgmt::V2017_03_01::Models::CertificateCreateOrUpdateParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-03-01/generated/azure_mgmt_api_management/models/certificate_create_or_update_parameters.rb
Overview
Certificate create or update details.
Instance Attribute Summary collapse
-
#data ⇒ String
application/x-pkcs12 representation.
-
#password ⇒ String
Password for the Certificate.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CertificateCreateOrUpdateParameters class as Ruby Hash.
Instance Attribute Details
#data ⇒ String
application/x-pkcs12 representation.
17 18 19 |
# File 'lib/2017-03-01/generated/azure_mgmt_api_management/models/certificate_create_or_update_parameters.rb', line 17 def data @data end |
#password ⇒ String
Returns Password for the Certificate.
20 21 22 |
# File 'lib/2017-03-01/generated/azure_mgmt_api_management/models/certificate_create_or_update_parameters.rb', line 20 def password @password end |
Class Method Details
.mapper ⇒ Object
Mapper for CertificateCreateOrUpdateParameters class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/2017-03-01/generated/azure_mgmt_api_management/models/certificate_create_or_update_parameters.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CertificateCreateOrUpdateParameters', type: { name: 'Composite', class_name: 'CertificateCreateOrUpdateParameters', model_properties: { data: { client_side_validation: true, required: true, serialized_name: 'properties.data', type: { name: 'String' } }, password: { client_side_validation: true, required: true, serialized_name: 'properties.password', type: { name: 'String' } } } } } end |