vault/ui/api-client/dist/esm/models/PkiRotateRootRequest.js

147 lines
7.3 KiB
JavaScript

/* tslint:disable */
/* eslint-disable */
/**
* HashiCorp Vault API
* HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`.
*
* The version of the OpenAPI document: 1.21.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* @export
* @enum {string}
*/
export var PkiRotateRootRequestFormatEnum;
(function (PkiRotateRootRequestFormatEnum) {
PkiRotateRootRequestFormatEnum["PEM"] = "pem";
PkiRotateRootRequestFormatEnum["DER"] = "der";
PkiRotateRootRequestFormatEnum["PEM_BUNDLE"] = "pem_bundle";
})(PkiRotateRootRequestFormatEnum || (PkiRotateRootRequestFormatEnum = {}));
/**
* @export
* @enum {string}
*/
export var PkiRotateRootRequestKeyTypeEnum;
(function (PkiRotateRootRequestKeyTypeEnum) {
PkiRotateRootRequestKeyTypeEnum["RSA"] = "rsa";
PkiRotateRootRequestKeyTypeEnum["EC"] = "ec";
PkiRotateRootRequestKeyTypeEnum["ED25519"] = "ed25519";
})(PkiRotateRootRequestKeyTypeEnum || (PkiRotateRootRequestKeyTypeEnum = {}));
/**
* @export
* @enum {string}
*/
export var PkiRotateRootRequestPrivateKeyFormatEnum;
(function (PkiRotateRootRequestPrivateKeyFormatEnum) {
PkiRotateRootRequestPrivateKeyFormatEnum["EMPTY"] = "";
PkiRotateRootRequestPrivateKeyFormatEnum["DER"] = "der";
PkiRotateRootRequestPrivateKeyFormatEnum["PEM"] = "pem";
PkiRotateRootRequestPrivateKeyFormatEnum["PKCS8"] = "pkcs8";
})(PkiRotateRootRequestPrivateKeyFormatEnum || (PkiRotateRootRequestPrivateKeyFormatEnum = {}));
/**
* Check if a given object implements the PkiRotateRootRequest interface.
*/
export function instanceOfPkiRotateRootRequest(value) {
return true;
}
export function PkiRotateRootRequestFromJSON(json) {
return PkiRotateRootRequestFromJSONTyped(json, false);
}
export function PkiRotateRootRequestFromJSONTyped(json, ignoreDiscriminator) {
if (json == null) {
return json;
}
return {
'altNames': json['alt_names'] == null ? undefined : json['alt_names'],
'commonName': json['common_name'] == null ? undefined : json['common_name'],
'country': json['country'] == null ? undefined : json['country'],
'excludeCnFromSans': json['exclude_cn_from_sans'] == null ? undefined : json['exclude_cn_from_sans'],
'excludedDnsDomains': json['excluded_dns_domains'] == null ? undefined : json['excluded_dns_domains'],
'excludedEmailAddresses': json['excluded_email_addresses'] == null ? undefined : json['excluded_email_addresses'],
'excludedIpRanges': json['excluded_ip_ranges'] == null ? undefined : json['excluded_ip_ranges'],
'excludedUriDomains': json['excluded_uri_domains'] == null ? undefined : json['excluded_uri_domains'],
'format': json['format'] == null ? undefined : json['format'],
'ipSans': json['ip_sans'] == null ? undefined : json['ip_sans'],
'issuerName': json['issuer_name'] == null ? undefined : json['issuer_name'],
'keyBits': json['key_bits'] == null ? undefined : json['key_bits'],
'keyName': json['key_name'] == null ? undefined : json['key_name'],
'keyRef': json['key_ref'] == null ? undefined : json['key_ref'],
'keyType': json['key_type'] == null ? undefined : json['key_type'],
'keyUsage': json['key_usage'] == null ? undefined : json['key_usage'],
'locality': json['locality'] == null ? undefined : json['locality'],
'managedKeyId': json['managed_key_id'] == null ? undefined : json['managed_key_id'],
'managedKeyName': json['managed_key_name'] == null ? undefined : json['managed_key_name'],
'maxPathLength': json['max_path_length'] == null ? undefined : json['max_path_length'],
'notAfter': json['not_after'] == null ? undefined : json['not_after'],
'notBeforeDuration': json['not_before_duration'] == null ? undefined : json['not_before_duration'],
'organization': json['organization'] == null ? undefined : json['organization'],
'otherSans': json['other_sans'] == null ? undefined : json['other_sans'],
'ou': json['ou'] == null ? undefined : json['ou'],
'permittedDnsDomains': json['permitted_dns_domains'] == null ? undefined : json['permitted_dns_domains'],
'permittedEmailAddresses': json['permitted_email_addresses'] == null ? undefined : json['permitted_email_addresses'],
'permittedIpRanges': json['permitted_ip_ranges'] == null ? undefined : json['permitted_ip_ranges'],
'permittedUriDomains': json['permitted_uri_domains'] == null ? undefined : json['permitted_uri_domains'],
'postalCode': json['postal_code'] == null ? undefined : json['postal_code'],
'privateKeyFormat': json['private_key_format'] == null ? undefined : json['private_key_format'],
'province': json['province'] == null ? undefined : json['province'],
'serialNumber': json['serial_number'] == null ? undefined : json['serial_number'],
'signatureBits': json['signature_bits'] == null ? undefined : json['signature_bits'],
'streetAddress': json['street_address'] == null ? undefined : json['street_address'],
'ttl': json['ttl'] == null ? undefined : json['ttl'],
'uriSans': json['uri_sans'] == null ? undefined : json['uri_sans'],
'usePss': json['use_pss'] == null ? undefined : json['use_pss'],
};
}
export function PkiRotateRootRequestToJSON(json) {
return PkiRotateRootRequestToJSONTyped(json, false);
}
export function PkiRotateRootRequestToJSONTyped(value, ignoreDiscriminator = false) {
if (value == null) {
return value;
}
return {
'alt_names': value['altNames'],
'common_name': value['commonName'],
'country': value['country'],
'exclude_cn_from_sans': value['excludeCnFromSans'],
'excluded_dns_domains': value['excludedDnsDomains'],
'excluded_email_addresses': value['excludedEmailAddresses'],
'excluded_ip_ranges': value['excludedIpRanges'],
'excluded_uri_domains': value['excludedUriDomains'],
'format': value['format'],
'ip_sans': value['ipSans'],
'issuer_name': value['issuerName'],
'key_bits': value['keyBits'],
'key_name': value['keyName'],
'key_ref': value['keyRef'],
'key_type': value['keyType'],
'key_usage': value['keyUsage'],
'locality': value['locality'],
'managed_key_id': value['managedKeyId'],
'managed_key_name': value['managedKeyName'],
'max_path_length': value['maxPathLength'],
'not_after': value['notAfter'],
'not_before_duration': value['notBeforeDuration'],
'organization': value['organization'],
'other_sans': value['otherSans'],
'ou': value['ou'],
'permitted_dns_domains': value['permittedDnsDomains'],
'permitted_email_addresses': value['permittedEmailAddresses'],
'permitted_ip_ranges': value['permittedIpRanges'],
'permitted_uri_domains': value['permittedUriDomains'],
'postal_code': value['postalCode'],
'private_key_format': value['privateKeyFormat'],
'province': value['province'],
'serial_number': value['serialNumber'],
'signature_bits': value['signatureBits'],
'street_address': value['streetAddress'],
'ttl': value['ttl'],
'uri_sans': value['uriSans'],
'use_pss': value['usePss'],
};
}