class Comet::MacOSCodeSignProperties

MacOSCodeSignProperties is a typed class wrapper around the underlying Comet Server API data structure.

def clear

def clear
  @level = 0
  @sshserver = Comet::SSHConnection.new
  @certificate_name = ''
  @app_certificate_name = ''
  @apple_id = ''
  @apple_idpass = ''
  @apple_idpass_format = 0
  @certificate_file = ''
  @app_certificate_file = ''
  @pfx_file_password = ''
  @pfx_file_password_format = 0
  @notary_apiissuer_id = ''
  @notary_apikey_id = ''
  @notary_apikey_file = ''
  @unknown_json_fields = {}
end

def from_hash(obj)

Parameters:
  • obj (Hash) -- The complete object as a Ruby hash
def from_hash(obj)
  raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
  obj.each do |k, v|
    case k
    when 'Level'
      raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
      @level = v
    when 'SignLocally'
      @sign_locally = v
    when 'SSHServer'
      @sshserver = Comet::SSHConnection.new
      @sshserver.from_hash(v)
    when 'CertificateName'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @certificate_name = v
    when 'AppCertificateName'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @app_certificate_name = v
    when 'AppleID'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @apple_id = v
    when 'AppleIDPass'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @apple_idpass = v
    when 'AppleIDPassFormat'
      raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
      @apple_idpass_format = v
    when 'CertificateFile'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @certificate_file = v
    when 'AppCertificateFile'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @app_certificate_file = v
    when 'PfxFilePassword'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @pfx_file_password = v
    when 'PfxFilePasswordFormat'
      raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
      @pfx_file_password_format = v
    when 'NotaryAPIIssuerID'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @notary_apiissuer_id = v
    when 'NotaryAPIKeyID'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @notary_apikey_id = v
    when 'NotaryAPIKeyFile'
      raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
      @notary_apikey_file = v
    else
      @unknown_json_fields[k] = v
    end
  end
end

def from_json(json_string)

Parameters:
  • json_string (String) -- The complete object in JSON format
def from_json(json_string)
  raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
  from_hash(JSON.parse(json_string))
end

def initialize

def initialize
  clear
end

def to_h

Returns:
  • (Hash) - The complete object as a Ruby hash
def to_h
  to_hash
end

def to_hash

Returns:
  • (Hash) - The complete object as a Ruby hash
def to_hash
  ret = {}
  ret['Level'] = @level
  ret['SignLocally'] = @sign_locally
  ret['SSHServer'] = @sshserver
  ret['CertificateName'] = @certificate_name
  ret['AppCertificateName'] = @app_certificate_name
  ret['AppleID'] = @apple_id
  ret['AppleIDPass'] = @apple_idpass
  ret['AppleIDPassFormat'] = @apple_idpass_format
  ret['CertificateFile'] = @certificate_file
  ret['AppCertificateFile'] = @app_certificate_file
  ret['PfxFilePassword'] = @pfx_file_password
  ret['PfxFilePasswordFormat'] = @pfx_file_password_format
  ret['NotaryAPIIssuerID'] = @notary_apiissuer_id
  ret['NotaryAPIKeyID'] = @notary_apikey_id
  ret['NotaryAPIKeyFile'] = @notary_apikey_file
  @unknown_json_fields.each do |k, v|
    ret[k] = v
  end
  ret
end

def to_json(options = {})

Returns:
  • (String) - The complete object as a JSON string
def to_json(options = {})
  to_hash.to_json(options)
end