Class: Azure::ServiceFabric::Mgmt::V2018_02_01::Models::ServerCertificateCommonNames
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::Mgmt::V2018_02_01::Models::ServerCertificateCommonNames
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_service_fabric/models/server_certificate_common_names.rb
Overview
Describes a list of server certificates referenced by common name that are used to secure the cluster.
Instance Attribute Summary collapse
-
#common_names ⇒ Array<ServerCertificateCommonName>
certificates referenced by common name that are used to secure the cluster.
-
#x509store_name ⇒ Enum
include: ‘AddressBook’, ‘AuthRoot’, ‘CertificateAuthority’, ‘Disallowed’, ‘My’, ‘Root’, ‘TrustedPeople’, ‘TrustedPublisher’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ServerCertificateCommonNames class as Ruby Hash.
Instance Attribute Details
#common_names ⇒ Array<ServerCertificateCommonName>
certificates referenced by common name that are used to secure the cluster.
19 20 21 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/server_certificate_common_names.rb', line 19 def common_names @common_names end |
#x509store_name ⇒ Enum
include: ‘AddressBook’, ‘AuthRoot’, ‘CertificateAuthority’, ‘Disallowed’, ‘My’, ‘Root’, ‘TrustedPeople’, ‘TrustedPublisher’
24 25 26 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/server_certificate_common_names.rb', line 24 def x509store_name @x509store_name end |
Class Method Details
.mapper ⇒ Object
Mapper for ServerCertificateCommonNames class as Ruby Hash. This will be used for serialization/deserialization.
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 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/server_certificate_common_names.rb', line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ServerCertificateCommonNames', type: { name: 'Composite', class_name: 'ServerCertificateCommonNames', model_properties: { common_names: { client_side_validation: true, required: false, serialized_name: 'commonNames', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ServerCertificateCommonNameElementType', type: { name: 'Composite', class_name: 'ServerCertificateCommonName' } } } }, x509store_name: { client_side_validation: true, required: false, serialized_name: 'x509StoreName', type: { name: 'String' } } } } } end |