mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-05 20:36:26 +02:00
more updates to api-client for sync (#30553)
This commit is contained in:
parent
71c1a72108
commit
59f2127d04
@ -27,6 +27,24 @@ export interface SystemPatchSyncDestinationsAwsSmNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemPatchSyncDestinationsAwsSmNameResponseFromJSONTyped(json,
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemPatchSyncDestinationsAwsSmNameResponseToJSONTyped(value, i
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemPatchSyncDestinationsAzureKvNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemPatchSyncDestinationsAzureKvNameResponseFromJSONTyped(json
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemPatchSyncDestinationsAzureKvNameResponseToJSONTyped(value,
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemPatchSyncDestinationsGcpSmNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemPatchSyncDestinationsGcpSmNameResponseFromJSONTyped(json,
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemPatchSyncDestinationsGcpSmNameResponseToJSONTyped(value, i
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemPatchSyncDestinationsGhNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsGhNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsGhNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemPatchSyncDestinationsGhNameResponseFromJSONTyped(json, ign
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemPatchSyncDestinationsGhNameResponseToJSONTyped(value, igno
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemPatchSyncDestinationsInMemNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemPatchSyncDestinationsInMemNameResponseFromJSONTyped(json,
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemPatchSyncDestinationsInMemNameResponseToJSONTyped(value, i
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemPatchSyncDestinationsVercelProjectNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemPatchSyncDestinationsVercelProjectNameResponseFromJSONType
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemPatchSyncDestinationsVercelProjectNameResponseToJSONTyped(
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemReadSyncDestinationsAwsSmNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemReadSyncDestinationsAwsSmNameResponseFromJSONTyped(json, i
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemReadSyncDestinationsAwsSmNameResponseToJSONTyped(value, ig
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemReadSyncDestinationsAzureKvNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemReadSyncDestinationsAzureKvNameResponseFromJSONTyped(json,
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemReadSyncDestinationsAzureKvNameResponseToJSONTyped(value,
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemReadSyncDestinationsGcpSmNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemReadSyncDestinationsGcpSmNameResponseFromJSONTyped(json, i
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemReadSyncDestinationsGcpSmNameResponseToJSONTyped(value, ig
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemReadSyncDestinationsGhNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsGhNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsGhNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemReadSyncDestinationsGhNameResponseFromJSONTyped(json, igno
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemReadSyncDestinationsGhNameResponseToJSONTyped(value, ignor
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemReadSyncDestinationsInMemNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemReadSyncDestinationsInMemNameResponseFromJSONTyped(json, i
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemReadSyncDestinationsInMemNameResponseToJSONTyped(value, ig
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemReadSyncDestinationsVercelProjectNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemReadSyncDestinationsVercelProjectNameResponseFromJSONTyped
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemReadSyncDestinationsVercelProjectNameResponseToJSONTyped(v
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemWriteSyncDestinationsAwsSmNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemWriteSyncDestinationsAwsSmNameResponseFromJSONTyped(json,
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemWriteSyncDestinationsAwsSmNameResponseToJSONTyped(value, i
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemWriteSyncDestinationsAzureKvNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemWriteSyncDestinationsAzureKvNameResponseFromJSONTyped(json
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemWriteSyncDestinationsAzureKvNameResponseToJSONTyped(value,
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemWriteSyncDestinationsGcpSmNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemWriteSyncDestinationsGcpSmNameResponseFromJSONTyped(json,
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemWriteSyncDestinationsGcpSmNameResponseToJSONTyped(value, i
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemWriteSyncDestinationsGhNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsGhNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsGhNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemWriteSyncDestinationsGhNameResponseFromJSONTyped(json, ign
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemWriteSyncDestinationsGhNameResponseToJSONTyped(value, igno
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemWriteSyncDestinationsInMemNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemWriteSyncDestinationsInMemNameResponseFromJSONTyped(json,
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemWriteSyncDestinationsInMemNameResponseToJSONTyped(value, i
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemWriteSyncDestinationsVercelProjectNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -27,6 +27,9 @@ export function SystemWriteSyncDestinationsVercelProjectNameResponseFromJSONType
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -40,6 +43,9 @@ export function SystemWriteSyncDestinationsVercelProjectNameResponseToJSONTyped(
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemPatchSyncDestinationsAwsSmNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemPatchSyncDestinationsAwsSmNameResponseFromJSONTyped(json, ignoreD
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemPatchSyncDestinationsAwsSmNameResponseToJSONTyped(value, ignoreDi
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemPatchSyncDestinationsAzureKvNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemPatchSyncDestinationsAzureKvNameResponseFromJSONTyped(json, ignor
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemPatchSyncDestinationsAzureKvNameResponseToJSONTyped(value, ignore
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemPatchSyncDestinationsGcpSmNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemPatchSyncDestinationsGcpSmNameResponseFromJSONTyped(json, ignoreD
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemPatchSyncDestinationsGcpSmNameResponseToJSONTyped(value, ignoreDi
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemPatchSyncDestinationsGhNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsGhNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsGhNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemPatchSyncDestinationsGhNameResponseFromJSONTyped(json, ignoreDisc
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemPatchSyncDestinationsGhNameResponseToJSONTyped(value, ignoreDiscr
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemPatchSyncDestinationsInMemNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemPatchSyncDestinationsInMemNameResponseFromJSONTyped(json, ignoreD
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemPatchSyncDestinationsInMemNameResponseToJSONTyped(value, ignoreDi
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemPatchSyncDestinationsVercelProjectNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemPatchSyncDestinationsVercelProjectNameResponseFromJSONTyped(json,
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemPatchSyncDestinationsVercelProjectNameResponseToJSONTyped(value,
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemReadSyncDestinationsAwsSmNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemReadSyncDestinationsAwsSmNameResponseFromJSONTyped(json, ignoreDi
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemReadSyncDestinationsAwsSmNameResponseToJSONTyped(value, ignoreDis
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemReadSyncDestinationsAzureKvNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemReadSyncDestinationsAzureKvNameResponseFromJSONTyped(json, ignore
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemReadSyncDestinationsAzureKvNameResponseToJSONTyped(value, ignoreD
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemReadSyncDestinationsGcpSmNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemReadSyncDestinationsGcpSmNameResponseFromJSONTyped(json, ignoreDi
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemReadSyncDestinationsGcpSmNameResponseToJSONTyped(value, ignoreDis
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemReadSyncDestinationsGhNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsGhNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsGhNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemReadSyncDestinationsGhNameResponseFromJSONTyped(json, ignoreDiscr
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemReadSyncDestinationsGhNameResponseToJSONTyped(value, ignoreDiscri
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemReadSyncDestinationsInMemNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemReadSyncDestinationsInMemNameResponseFromJSONTyped(json, ignoreDi
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemReadSyncDestinationsInMemNameResponseToJSONTyped(value, ignoreDis
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemReadSyncDestinationsVercelProjectNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemReadSyncDestinationsVercelProjectNameResponseFromJSONTyped(json,
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemReadSyncDestinationsVercelProjectNameResponseToJSONTyped(value, i
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemWriteSyncDestinationsAwsSmNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemWriteSyncDestinationsAwsSmNameResponseFromJSONTyped(json, ignoreD
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemWriteSyncDestinationsAwsSmNameResponseToJSONTyped(value, ignoreDi
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemWriteSyncDestinationsAzureKvNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemWriteSyncDestinationsAzureKvNameResponseFromJSONTyped(json, ignor
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemWriteSyncDestinationsAzureKvNameResponseToJSONTyped(value, ignore
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemWriteSyncDestinationsGcpSmNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemWriteSyncDestinationsGcpSmNameResponseFromJSONTyped(json, ignoreD
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemWriteSyncDestinationsGcpSmNameResponseToJSONTyped(value, ignoreDi
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemWriteSyncDestinationsGhNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsGhNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsGhNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemWriteSyncDestinationsGhNameResponseFromJSONTyped(json, ignoreDisc
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemWriteSyncDestinationsGhNameResponseToJSONTyped(value, ignoreDiscr
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemWriteSyncDestinationsInMemNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemWriteSyncDestinationsInMemNameResponseFromJSONTyped(json, ignoreD
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemWriteSyncDestinationsInMemNameResponseToJSONTyped(value, ignoreDi
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +27,24 @@ export interface SystemWriteSyncDestinationsVercelProjectNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
|
||||
@ -34,6 +34,9 @@ function SystemWriteSyncDestinationsVercelProjectNameResponseFromJSONTyped(json,
|
||||
return {
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -47,6 +50,9 @@ function SystemWriteSyncDestinationsVercelProjectNameResponseToJSONTyped(value,
|
||||
return {
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemPatchSyncDestinationsAwsSmNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemPatchSyncDestinationsAwsSmNameResponseFromJSONTyped(json:
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemPatchSyncDestinationsAwsSmNameResponseToJSONTyped(value?:
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemPatchSyncDestinationsAzureKvNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemPatchSyncDestinationsAzureKvNameResponseFromJSONTyped(json
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemPatchSyncDestinationsAzureKvNameResponseToJSONTyped(value?
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemPatchSyncDestinationsGcpSmNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemPatchSyncDestinationsGcpSmNameResponseFromJSONTyped(json:
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemPatchSyncDestinationsGcpSmNameResponseToJSONTyped(value?:
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemPatchSyncDestinationsGhNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsGhNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsGhNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemPatchSyncDestinationsGhNameResponseFromJSONTyped(json: any
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemPatchSyncDestinationsGhNameResponseToJSONTyped(value?: Sys
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemPatchSyncDestinationsInMemNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemPatchSyncDestinationsInMemNameResponseFromJSONTyped(json:
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemPatchSyncDestinationsInMemNameResponseToJSONTyped(value?:
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemPatchSyncDestinationsVercelProjectNameResponse {
|
||||
* @memberof SystemPatchSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemPatchSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemPatchSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemPatchSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemPatchSyncDestinationsVercelProjectNameResponseFromJSONType
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemPatchSyncDestinationsVercelProjectNameResponseToJSONTyped(
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemReadSyncDestinationsAwsSmNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemReadSyncDestinationsAwsSmNameResponseFromJSONTyped(json: a
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemReadSyncDestinationsAwsSmNameResponseToJSONTyped(value?: S
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemReadSyncDestinationsAzureKvNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemReadSyncDestinationsAzureKvNameResponseFromJSONTyped(json:
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemReadSyncDestinationsAzureKvNameResponseToJSONTyped(value?:
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemReadSyncDestinationsGcpSmNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemReadSyncDestinationsGcpSmNameResponseFromJSONTyped(json: a
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemReadSyncDestinationsGcpSmNameResponseToJSONTyped(value?: S
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemReadSyncDestinationsGhNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsGhNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsGhNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemReadSyncDestinationsGhNameResponseFromJSONTyped(json: any,
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemReadSyncDestinationsGhNameResponseToJSONTyped(value?: Syst
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemReadSyncDestinationsInMemNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemReadSyncDestinationsInMemNameResponseFromJSONTyped(json: a
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemReadSyncDestinationsInMemNameResponseToJSONTyped(value?: S
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemReadSyncDestinationsVercelProjectNameResponse {
|
||||
* @memberof SystemReadSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemReadSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemReadSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemReadSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemReadSyncDestinationsVercelProjectNameResponseFromJSONTyped
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemReadSyncDestinationsVercelProjectNameResponseToJSONTyped(v
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemWriteSyncDestinationsAwsSmNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsAwsSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemWriteSyncDestinationsAwsSmNameResponseFromJSONTyped(json:
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemWriteSyncDestinationsAwsSmNameResponseToJSONTyped(value?:
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemWriteSyncDestinationsAzureKvNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsAzureKvNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemWriteSyncDestinationsAzureKvNameResponseFromJSONTyped(json
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemWriteSyncDestinationsAzureKvNameResponseToJSONTyped(value?
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemWriteSyncDestinationsGcpSmNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsGcpSmNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemWriteSyncDestinationsGcpSmNameResponseFromJSONTyped(json:
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemWriteSyncDestinationsGcpSmNameResponseToJSONTyped(value?:
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemWriteSyncDestinationsGhNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsGhNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsGhNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsGhNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemWriteSyncDestinationsGhNameResponseFromJSONTyped(json: any
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemWriteSyncDestinationsGhNameResponseToJSONTyped(value?: Sys
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemWriteSyncDestinationsInMemNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsInMemNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemWriteSyncDestinationsInMemNameResponseFromJSONTyped(json:
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemWriteSyncDestinationsInMemNameResponseToJSONTyped(value?:
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
@ -31,6 +31,24 @@ export interface SystemWriteSyncDestinationsVercelProjectNameResponse {
|
||||
* @memberof SystemWriteSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* List of key value pairs of Vault configuration options.
|
||||
* @type {object}
|
||||
* @memberof SystemWriteSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
options?: object;
|
||||
/**
|
||||
* Error message if the purge job failed.
|
||||
* @type {string}
|
||||
* @memberof SystemWriteSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeError?: string;
|
||||
/**
|
||||
* Timestamp of when a purge job was initiated when deleting a destination.
|
||||
* @type {Date}
|
||||
* @memberof SystemWriteSyncDestinationsVercelProjectNameResponse
|
||||
*/
|
||||
purgeInitiatedAt?: Date;
|
||||
/**
|
||||
* Type of this secrets store.
|
||||
* @type {string}
|
||||
@ -58,6 +76,9 @@ export function SystemWriteSyncDestinationsVercelProjectNameResponseFromJSONType
|
||||
|
||||
'connectionDetails': json['connection_details'] == null ? undefined : json['connection_details'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'options': json['options'] == null ? undefined : json['options'],
|
||||
'purgeError': json['purge_error'] == null ? undefined : json['purge_error'],
|
||||
'purgeInitiatedAt': json['purge_initiated_at'] == null ? undefined : (new Date(json['purge_initiated_at'])),
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
};
|
||||
}
|
||||
@ -75,6 +96,9 @@ export function SystemWriteSyncDestinationsVercelProjectNameResponseToJSONTyped(
|
||||
|
||||
'connection_details': value['connectionDetails'],
|
||||
'name': value['name'],
|
||||
'options': value['options'],
|
||||
'purge_error': value['purgeError'],
|
||||
'purge_initiated_at': value['purgeInitiatedAt'] == null ? undefined : ((value['purgeInitiatedAt']).toISOString()),
|
||||
'type': value['type'],
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user