# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10 module Models # # ApplyRecoveryPoint input specific to HyperVReplicaAzure provider. # class HyperVReplicaAzureApplyRecoveryPointInput < ApplyRecoveryPointProviderSpecificInput include MsRestAzure def initialize @instanceType = "HyperVReplicaAzure" end attr_accessor :instanceType # @return [String] The vault location where the recovery Vm resides. attr_accessor :vault_location # @return [String] The primary kek certificate pfx. attr_accessor :primary_kek_certificate_pfx # @return [String] The secondary kek certificate pfx. attr_accessor :secondary_kek_certificate_pfx # # Mapper for HyperVReplicaAzureApplyRecoveryPointInput class as Ruby # Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'HyperVReplicaAzure', type: { name: 'Composite', class_name: 'HyperVReplicaAzureApplyRecoveryPointInput', model_properties: { instanceType: { required: true, serialized_name: 'instanceType', type: { name: 'String' } }, vault_location: { required: false, serialized_name: 'vaultLocation', type: { name: 'String' } }, primary_kek_certificate_pfx: { required: false, serialized_name: 'primaryKekCertificatePfx', type: { name: 'String' } }, secondary_kek_certificate_pfx: { required: false, serialized_name: 'secondaryKekCertificatePfx', type: { name: 'String' } } } } } end end end end