diff --git a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAwsSmNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAwsSmNameResponse.d.ts index afe2f045bb..e02ac6388f 100644 --- a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAwsSmNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAwsSmNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAwsSmNameResponse.js b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAwsSmNameResponse.js index b3cd68c1ff..5637a06d70 100644 --- a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAwsSmNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAwsSmNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAzureKvNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAzureKvNameResponse.d.ts index ada60feb9d..0ca0159d96 100644 --- a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAzureKvNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAzureKvNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAzureKvNameResponse.js b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAzureKvNameResponse.js index 00fb2ca65c..66ad55cf9f 100644 --- a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAzureKvNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsAzureKvNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGcpSmNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGcpSmNameResponse.d.ts index 634555792d..f2ffe76816 100644 --- a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGcpSmNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGcpSmNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGcpSmNameResponse.js b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGcpSmNameResponse.js index 6049539ace..23933a7313 100644 --- a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGcpSmNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGcpSmNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGhNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGhNameResponse.d.ts index 97c143be0a..3766d27753 100644 --- a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGhNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGhNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGhNameResponse.js b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGhNameResponse.js index d939794fae..ff59fda7f8 100644 --- a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGhNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsGhNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsInMemNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsInMemNameResponse.d.ts index 052416ec00..3cf92cf16e 100644 --- a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsInMemNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsInMemNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsInMemNameResponse.js b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsInMemNameResponse.js index 59bdd38130..91cb8e38a9 100644 --- a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsInMemNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsInMemNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsVercelProjectNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsVercelProjectNameResponse.d.ts index 2fa7717b59..d978aca5d5 100644 --- a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsVercelProjectNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsVercelProjectNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsVercelProjectNameResponse.js b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsVercelProjectNameResponse.js index bdefce9f00..a4d6964c2d 100644 --- a/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsVercelProjectNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemPatchSyncDestinationsVercelProjectNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAwsSmNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAwsSmNameResponse.d.ts index dbbd820466..0ff3a43c2b 100644 --- a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAwsSmNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAwsSmNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAwsSmNameResponse.js b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAwsSmNameResponse.js index 4b85d6c62f..b62e8c92b9 100644 --- a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAwsSmNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAwsSmNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAzureKvNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAzureKvNameResponse.d.ts index 5d6a817d63..25cb294780 100644 --- a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAzureKvNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAzureKvNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAzureKvNameResponse.js b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAzureKvNameResponse.js index 31cb4eda80..faf59e643f 100644 --- a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAzureKvNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsAzureKvNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGcpSmNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGcpSmNameResponse.d.ts index 878ebb3757..669df12c74 100644 --- a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGcpSmNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGcpSmNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGcpSmNameResponse.js b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGcpSmNameResponse.js index efc9c9d48e..1aa98e4ac8 100644 --- a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGcpSmNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGcpSmNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGhNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGhNameResponse.d.ts index c70f429c7c..95cba6649d 100644 --- a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGhNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGhNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGhNameResponse.js b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGhNameResponse.js index 75a768d6ef..19d346684c 100644 --- a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGhNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsGhNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsInMemNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsInMemNameResponse.d.ts index 6959f19100..49a23dc693 100644 --- a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsInMemNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsInMemNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsInMemNameResponse.js b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsInMemNameResponse.js index 297cb93498..117220738b 100644 --- a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsInMemNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsInMemNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsVercelProjectNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsVercelProjectNameResponse.d.ts index c7a7d58862..da862913ee 100644 --- a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsVercelProjectNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsVercelProjectNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsVercelProjectNameResponse.js b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsVercelProjectNameResponse.js index 05b07ea126..daa3554d89 100644 --- a/ui/api-client/dist/esm/models/SystemReadSyncDestinationsVercelProjectNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemReadSyncDestinationsVercelProjectNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAwsSmNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAwsSmNameResponse.d.ts index 0f53b86246..c6f7e35b79 100644 --- a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAwsSmNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAwsSmNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAwsSmNameResponse.js b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAwsSmNameResponse.js index a60b49cad8..72abe6bc33 100644 --- a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAwsSmNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAwsSmNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAzureKvNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAzureKvNameResponse.d.ts index 4a475ab5bd..edb7429b62 100644 --- a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAzureKvNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAzureKvNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAzureKvNameResponse.js b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAzureKvNameResponse.js index 0fd5b561d5..74a45ed4c7 100644 --- a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAzureKvNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsAzureKvNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGcpSmNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGcpSmNameResponse.d.ts index 1e9950b852..19eeb2ad30 100644 --- a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGcpSmNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGcpSmNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGcpSmNameResponse.js b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGcpSmNameResponse.js index ece8d8179f..603dcbb936 100644 --- a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGcpSmNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGcpSmNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGhNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGhNameResponse.d.ts index 2de58a4f29..12ce0e88ff 100644 --- a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGhNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGhNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGhNameResponse.js b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGhNameResponse.js index c22561cd96..016a2f9cb3 100644 --- a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGhNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsGhNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsInMemNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsInMemNameResponse.d.ts index 6939133438..32842caee3 100644 --- a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsInMemNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsInMemNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsInMemNameResponse.js b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsInMemNameResponse.js index f4c6c9a804..36508f4deb 100644 --- a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsInMemNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsInMemNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsVercelProjectNameResponse.d.ts b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsVercelProjectNameResponse.d.ts index b7ac51462f..8ed8189801 100644 --- a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsVercelProjectNameResponse.d.ts +++ b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsVercelProjectNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsVercelProjectNameResponse.js b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsVercelProjectNameResponse.js index ddf4d1b7d3..e9537a27fa 100644 --- a/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsVercelProjectNameResponse.js +++ b/ui/api-client/dist/esm/models/SystemWriteSyncDestinationsVercelProjectNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemPatchSyncDestinationsAwsSmNameResponse.d.ts b/ui/api-client/dist/models/SystemPatchSyncDestinationsAwsSmNameResponse.d.ts index afe2f045bb..e02ac6388f 100644 --- a/ui/api-client/dist/models/SystemPatchSyncDestinationsAwsSmNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemPatchSyncDestinationsAwsSmNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemPatchSyncDestinationsAwsSmNameResponse.js b/ui/api-client/dist/models/SystemPatchSyncDestinationsAwsSmNameResponse.js index fd6916b79e..60a80610d6 100644 --- a/ui/api-client/dist/models/SystemPatchSyncDestinationsAwsSmNameResponse.js +++ b/ui/api-client/dist/models/SystemPatchSyncDestinationsAwsSmNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemPatchSyncDestinationsAzureKvNameResponse.d.ts b/ui/api-client/dist/models/SystemPatchSyncDestinationsAzureKvNameResponse.d.ts index ada60feb9d..0ca0159d96 100644 --- a/ui/api-client/dist/models/SystemPatchSyncDestinationsAzureKvNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemPatchSyncDestinationsAzureKvNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemPatchSyncDestinationsAzureKvNameResponse.js b/ui/api-client/dist/models/SystemPatchSyncDestinationsAzureKvNameResponse.js index 88d1c93f2b..6dd70e4fa6 100644 --- a/ui/api-client/dist/models/SystemPatchSyncDestinationsAzureKvNameResponse.js +++ b/ui/api-client/dist/models/SystemPatchSyncDestinationsAzureKvNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemPatchSyncDestinationsGcpSmNameResponse.d.ts b/ui/api-client/dist/models/SystemPatchSyncDestinationsGcpSmNameResponse.d.ts index 634555792d..f2ffe76816 100644 --- a/ui/api-client/dist/models/SystemPatchSyncDestinationsGcpSmNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemPatchSyncDestinationsGcpSmNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemPatchSyncDestinationsGcpSmNameResponse.js b/ui/api-client/dist/models/SystemPatchSyncDestinationsGcpSmNameResponse.js index f5031825b8..4eb00a1325 100644 --- a/ui/api-client/dist/models/SystemPatchSyncDestinationsGcpSmNameResponse.js +++ b/ui/api-client/dist/models/SystemPatchSyncDestinationsGcpSmNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemPatchSyncDestinationsGhNameResponse.d.ts b/ui/api-client/dist/models/SystemPatchSyncDestinationsGhNameResponse.d.ts index 97c143be0a..3766d27753 100644 --- a/ui/api-client/dist/models/SystemPatchSyncDestinationsGhNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemPatchSyncDestinationsGhNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemPatchSyncDestinationsGhNameResponse.js b/ui/api-client/dist/models/SystemPatchSyncDestinationsGhNameResponse.js index d244ec2026..85a09ea65c 100644 --- a/ui/api-client/dist/models/SystemPatchSyncDestinationsGhNameResponse.js +++ b/ui/api-client/dist/models/SystemPatchSyncDestinationsGhNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemPatchSyncDestinationsInMemNameResponse.d.ts b/ui/api-client/dist/models/SystemPatchSyncDestinationsInMemNameResponse.d.ts index 052416ec00..3cf92cf16e 100644 --- a/ui/api-client/dist/models/SystemPatchSyncDestinationsInMemNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemPatchSyncDestinationsInMemNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemPatchSyncDestinationsInMemNameResponse.js b/ui/api-client/dist/models/SystemPatchSyncDestinationsInMemNameResponse.js index bf92640237..a4121374aa 100644 --- a/ui/api-client/dist/models/SystemPatchSyncDestinationsInMemNameResponse.js +++ b/ui/api-client/dist/models/SystemPatchSyncDestinationsInMemNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemPatchSyncDestinationsVercelProjectNameResponse.d.ts b/ui/api-client/dist/models/SystemPatchSyncDestinationsVercelProjectNameResponse.d.ts index 2fa7717b59..d978aca5d5 100644 --- a/ui/api-client/dist/models/SystemPatchSyncDestinationsVercelProjectNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemPatchSyncDestinationsVercelProjectNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemPatchSyncDestinationsVercelProjectNameResponse.js b/ui/api-client/dist/models/SystemPatchSyncDestinationsVercelProjectNameResponse.js index f205fef15d..e7815cc681 100644 --- a/ui/api-client/dist/models/SystemPatchSyncDestinationsVercelProjectNameResponse.js +++ b/ui/api-client/dist/models/SystemPatchSyncDestinationsVercelProjectNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemReadSyncDestinationsAwsSmNameResponse.d.ts b/ui/api-client/dist/models/SystemReadSyncDestinationsAwsSmNameResponse.d.ts index dbbd820466..0ff3a43c2b 100644 --- a/ui/api-client/dist/models/SystemReadSyncDestinationsAwsSmNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemReadSyncDestinationsAwsSmNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemReadSyncDestinationsAwsSmNameResponse.js b/ui/api-client/dist/models/SystemReadSyncDestinationsAwsSmNameResponse.js index e93ddcd166..5d84fd70b4 100644 --- a/ui/api-client/dist/models/SystemReadSyncDestinationsAwsSmNameResponse.js +++ b/ui/api-client/dist/models/SystemReadSyncDestinationsAwsSmNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemReadSyncDestinationsAzureKvNameResponse.d.ts b/ui/api-client/dist/models/SystemReadSyncDestinationsAzureKvNameResponse.d.ts index 5d6a817d63..25cb294780 100644 --- a/ui/api-client/dist/models/SystemReadSyncDestinationsAzureKvNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemReadSyncDestinationsAzureKvNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemReadSyncDestinationsAzureKvNameResponse.js b/ui/api-client/dist/models/SystemReadSyncDestinationsAzureKvNameResponse.js index 3be2ce81e1..8937c6e0fc 100644 --- a/ui/api-client/dist/models/SystemReadSyncDestinationsAzureKvNameResponse.js +++ b/ui/api-client/dist/models/SystemReadSyncDestinationsAzureKvNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemReadSyncDestinationsGcpSmNameResponse.d.ts b/ui/api-client/dist/models/SystemReadSyncDestinationsGcpSmNameResponse.d.ts index 878ebb3757..669df12c74 100644 --- a/ui/api-client/dist/models/SystemReadSyncDestinationsGcpSmNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemReadSyncDestinationsGcpSmNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemReadSyncDestinationsGcpSmNameResponse.js b/ui/api-client/dist/models/SystemReadSyncDestinationsGcpSmNameResponse.js index a169c8a797..38a90b0c5c 100644 --- a/ui/api-client/dist/models/SystemReadSyncDestinationsGcpSmNameResponse.js +++ b/ui/api-client/dist/models/SystemReadSyncDestinationsGcpSmNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemReadSyncDestinationsGhNameResponse.d.ts b/ui/api-client/dist/models/SystemReadSyncDestinationsGhNameResponse.d.ts index c70f429c7c..95cba6649d 100644 --- a/ui/api-client/dist/models/SystemReadSyncDestinationsGhNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemReadSyncDestinationsGhNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemReadSyncDestinationsGhNameResponse.js b/ui/api-client/dist/models/SystemReadSyncDestinationsGhNameResponse.js index cd7dd8f8ab..883cffaa2f 100644 --- a/ui/api-client/dist/models/SystemReadSyncDestinationsGhNameResponse.js +++ b/ui/api-client/dist/models/SystemReadSyncDestinationsGhNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemReadSyncDestinationsInMemNameResponse.d.ts b/ui/api-client/dist/models/SystemReadSyncDestinationsInMemNameResponse.d.ts index 6959f19100..49a23dc693 100644 --- a/ui/api-client/dist/models/SystemReadSyncDestinationsInMemNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemReadSyncDestinationsInMemNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemReadSyncDestinationsInMemNameResponse.js b/ui/api-client/dist/models/SystemReadSyncDestinationsInMemNameResponse.js index 76b75df24c..20243ef201 100644 --- a/ui/api-client/dist/models/SystemReadSyncDestinationsInMemNameResponse.js +++ b/ui/api-client/dist/models/SystemReadSyncDestinationsInMemNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemReadSyncDestinationsVercelProjectNameResponse.d.ts b/ui/api-client/dist/models/SystemReadSyncDestinationsVercelProjectNameResponse.d.ts index c7a7d58862..da862913ee 100644 --- a/ui/api-client/dist/models/SystemReadSyncDestinationsVercelProjectNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemReadSyncDestinationsVercelProjectNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemReadSyncDestinationsVercelProjectNameResponse.js b/ui/api-client/dist/models/SystemReadSyncDestinationsVercelProjectNameResponse.js index 636eb5d3bf..3b23bdacc5 100644 --- a/ui/api-client/dist/models/SystemReadSyncDestinationsVercelProjectNameResponse.js +++ b/ui/api-client/dist/models/SystemReadSyncDestinationsVercelProjectNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemWriteSyncDestinationsAwsSmNameResponse.d.ts b/ui/api-client/dist/models/SystemWriteSyncDestinationsAwsSmNameResponse.d.ts index 0f53b86246..c6f7e35b79 100644 --- a/ui/api-client/dist/models/SystemWriteSyncDestinationsAwsSmNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemWriteSyncDestinationsAwsSmNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemWriteSyncDestinationsAwsSmNameResponse.js b/ui/api-client/dist/models/SystemWriteSyncDestinationsAwsSmNameResponse.js index 56358a4f21..99c24491a1 100644 --- a/ui/api-client/dist/models/SystemWriteSyncDestinationsAwsSmNameResponse.js +++ b/ui/api-client/dist/models/SystemWriteSyncDestinationsAwsSmNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemWriteSyncDestinationsAzureKvNameResponse.d.ts b/ui/api-client/dist/models/SystemWriteSyncDestinationsAzureKvNameResponse.d.ts index 4a475ab5bd..edb7429b62 100644 --- a/ui/api-client/dist/models/SystemWriteSyncDestinationsAzureKvNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemWriteSyncDestinationsAzureKvNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemWriteSyncDestinationsAzureKvNameResponse.js b/ui/api-client/dist/models/SystemWriteSyncDestinationsAzureKvNameResponse.js index 572641031d..739dbb6bcf 100644 --- a/ui/api-client/dist/models/SystemWriteSyncDestinationsAzureKvNameResponse.js +++ b/ui/api-client/dist/models/SystemWriteSyncDestinationsAzureKvNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemWriteSyncDestinationsGcpSmNameResponse.d.ts b/ui/api-client/dist/models/SystemWriteSyncDestinationsGcpSmNameResponse.d.ts index 1e9950b852..19eeb2ad30 100644 --- a/ui/api-client/dist/models/SystemWriteSyncDestinationsGcpSmNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemWriteSyncDestinationsGcpSmNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemWriteSyncDestinationsGcpSmNameResponse.js b/ui/api-client/dist/models/SystemWriteSyncDestinationsGcpSmNameResponse.js index 5d4d408970..af41116044 100644 --- a/ui/api-client/dist/models/SystemWriteSyncDestinationsGcpSmNameResponse.js +++ b/ui/api-client/dist/models/SystemWriteSyncDestinationsGcpSmNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemWriteSyncDestinationsGhNameResponse.d.ts b/ui/api-client/dist/models/SystemWriteSyncDestinationsGhNameResponse.d.ts index 2de58a4f29..12ce0e88ff 100644 --- a/ui/api-client/dist/models/SystemWriteSyncDestinationsGhNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemWriteSyncDestinationsGhNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemWriteSyncDestinationsGhNameResponse.js b/ui/api-client/dist/models/SystemWriteSyncDestinationsGhNameResponse.js index c7a52695fe..616ae87dc9 100644 --- a/ui/api-client/dist/models/SystemWriteSyncDestinationsGhNameResponse.js +++ b/ui/api-client/dist/models/SystemWriteSyncDestinationsGhNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemWriteSyncDestinationsInMemNameResponse.d.ts b/ui/api-client/dist/models/SystemWriteSyncDestinationsInMemNameResponse.d.ts index 6939133438..32842caee3 100644 --- a/ui/api-client/dist/models/SystemWriteSyncDestinationsInMemNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemWriteSyncDestinationsInMemNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemWriteSyncDestinationsInMemNameResponse.js b/ui/api-client/dist/models/SystemWriteSyncDestinationsInMemNameResponse.js index 755e6dfbe0..9f12ac5f21 100644 --- a/ui/api-client/dist/models/SystemWriteSyncDestinationsInMemNameResponse.js +++ b/ui/api-client/dist/models/SystemWriteSyncDestinationsInMemNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/dist/models/SystemWriteSyncDestinationsVercelProjectNameResponse.d.ts b/ui/api-client/dist/models/SystemWriteSyncDestinationsVercelProjectNameResponse.d.ts index b7ac51462f..8ed8189801 100644 --- a/ui/api-client/dist/models/SystemWriteSyncDestinationsVercelProjectNameResponse.d.ts +++ b/ui/api-client/dist/models/SystemWriteSyncDestinationsVercelProjectNameResponse.d.ts @@ -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} diff --git a/ui/api-client/dist/models/SystemWriteSyncDestinationsVercelProjectNameResponse.js b/ui/api-client/dist/models/SystemWriteSyncDestinationsVercelProjectNameResponse.js index c1f8c3267d..9d67017c6b 100644 --- a/ui/api-client/dist/models/SystemWriteSyncDestinationsVercelProjectNameResponse.js +++ b/ui/api-client/dist/models/SystemWriteSyncDestinationsVercelProjectNameResponse.js @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemPatchSyncDestinationsAwsSmNameResponse.ts b/ui/api-client/src/models/SystemPatchSyncDestinationsAwsSmNameResponse.ts index b25149eeec..cf80aa62b6 100644 --- a/ui/api-client/src/models/SystemPatchSyncDestinationsAwsSmNameResponse.ts +++ b/ui/api-client/src/models/SystemPatchSyncDestinationsAwsSmNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemPatchSyncDestinationsAzureKvNameResponse.ts b/ui/api-client/src/models/SystemPatchSyncDestinationsAzureKvNameResponse.ts index 5143079a6f..45f5f31dd7 100644 --- a/ui/api-client/src/models/SystemPatchSyncDestinationsAzureKvNameResponse.ts +++ b/ui/api-client/src/models/SystemPatchSyncDestinationsAzureKvNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemPatchSyncDestinationsGcpSmNameResponse.ts b/ui/api-client/src/models/SystemPatchSyncDestinationsGcpSmNameResponse.ts index ec1f17472b..27eea22573 100644 --- a/ui/api-client/src/models/SystemPatchSyncDestinationsGcpSmNameResponse.ts +++ b/ui/api-client/src/models/SystemPatchSyncDestinationsGcpSmNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemPatchSyncDestinationsGhNameResponse.ts b/ui/api-client/src/models/SystemPatchSyncDestinationsGhNameResponse.ts index e69d98e92b..edb2bf78d5 100644 --- a/ui/api-client/src/models/SystemPatchSyncDestinationsGhNameResponse.ts +++ b/ui/api-client/src/models/SystemPatchSyncDestinationsGhNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemPatchSyncDestinationsInMemNameResponse.ts b/ui/api-client/src/models/SystemPatchSyncDestinationsInMemNameResponse.ts index 81bd70699a..edeee001ba 100644 --- a/ui/api-client/src/models/SystemPatchSyncDestinationsInMemNameResponse.ts +++ b/ui/api-client/src/models/SystemPatchSyncDestinationsInMemNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemPatchSyncDestinationsVercelProjectNameResponse.ts b/ui/api-client/src/models/SystemPatchSyncDestinationsVercelProjectNameResponse.ts index 50befcf636..344073e9b2 100644 --- a/ui/api-client/src/models/SystemPatchSyncDestinationsVercelProjectNameResponse.ts +++ b/ui/api-client/src/models/SystemPatchSyncDestinationsVercelProjectNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemReadSyncDestinationsAwsSmNameResponse.ts b/ui/api-client/src/models/SystemReadSyncDestinationsAwsSmNameResponse.ts index e1dbcab13b..5a6168158b 100644 --- a/ui/api-client/src/models/SystemReadSyncDestinationsAwsSmNameResponse.ts +++ b/ui/api-client/src/models/SystemReadSyncDestinationsAwsSmNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemReadSyncDestinationsAzureKvNameResponse.ts b/ui/api-client/src/models/SystemReadSyncDestinationsAzureKvNameResponse.ts index 8094b830f8..dcff3c37b6 100644 --- a/ui/api-client/src/models/SystemReadSyncDestinationsAzureKvNameResponse.ts +++ b/ui/api-client/src/models/SystemReadSyncDestinationsAzureKvNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemReadSyncDestinationsGcpSmNameResponse.ts b/ui/api-client/src/models/SystemReadSyncDestinationsGcpSmNameResponse.ts index 95ac67a369..83315861b7 100644 --- a/ui/api-client/src/models/SystemReadSyncDestinationsGcpSmNameResponse.ts +++ b/ui/api-client/src/models/SystemReadSyncDestinationsGcpSmNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemReadSyncDestinationsGhNameResponse.ts b/ui/api-client/src/models/SystemReadSyncDestinationsGhNameResponse.ts index f449d1334c..27a5c7a117 100644 --- a/ui/api-client/src/models/SystemReadSyncDestinationsGhNameResponse.ts +++ b/ui/api-client/src/models/SystemReadSyncDestinationsGhNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemReadSyncDestinationsInMemNameResponse.ts b/ui/api-client/src/models/SystemReadSyncDestinationsInMemNameResponse.ts index 04baf5d7e0..1e374b720c 100644 --- a/ui/api-client/src/models/SystemReadSyncDestinationsInMemNameResponse.ts +++ b/ui/api-client/src/models/SystemReadSyncDestinationsInMemNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemReadSyncDestinationsVercelProjectNameResponse.ts b/ui/api-client/src/models/SystemReadSyncDestinationsVercelProjectNameResponse.ts index fd8bdabe15..adc0eec343 100644 --- a/ui/api-client/src/models/SystemReadSyncDestinationsVercelProjectNameResponse.ts +++ b/ui/api-client/src/models/SystemReadSyncDestinationsVercelProjectNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemWriteSyncDestinationsAwsSmNameResponse.ts b/ui/api-client/src/models/SystemWriteSyncDestinationsAwsSmNameResponse.ts index 675301371a..71f641c4e0 100644 --- a/ui/api-client/src/models/SystemWriteSyncDestinationsAwsSmNameResponse.ts +++ b/ui/api-client/src/models/SystemWriteSyncDestinationsAwsSmNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemWriteSyncDestinationsAzureKvNameResponse.ts b/ui/api-client/src/models/SystemWriteSyncDestinationsAzureKvNameResponse.ts index 7b38cfae4d..7588848e46 100644 --- a/ui/api-client/src/models/SystemWriteSyncDestinationsAzureKvNameResponse.ts +++ b/ui/api-client/src/models/SystemWriteSyncDestinationsAzureKvNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemWriteSyncDestinationsGcpSmNameResponse.ts b/ui/api-client/src/models/SystemWriteSyncDestinationsGcpSmNameResponse.ts index e4fe31c10c..a197ca64e1 100644 --- a/ui/api-client/src/models/SystemWriteSyncDestinationsGcpSmNameResponse.ts +++ b/ui/api-client/src/models/SystemWriteSyncDestinationsGcpSmNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemWriteSyncDestinationsGhNameResponse.ts b/ui/api-client/src/models/SystemWriteSyncDestinationsGhNameResponse.ts index b6e68425ed..60c8d01a72 100644 --- a/ui/api-client/src/models/SystemWriteSyncDestinationsGhNameResponse.ts +++ b/ui/api-client/src/models/SystemWriteSyncDestinationsGhNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemWriteSyncDestinationsInMemNameResponse.ts b/ui/api-client/src/models/SystemWriteSyncDestinationsInMemNameResponse.ts index d75f86e44a..e96bf446e5 100644 --- a/ui/api-client/src/models/SystemWriteSyncDestinationsInMemNameResponse.ts +++ b/ui/api-client/src/models/SystemWriteSyncDestinationsInMemNameResponse.ts @@ -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'], }; } diff --git a/ui/api-client/src/models/SystemWriteSyncDestinationsVercelProjectNameResponse.ts b/ui/api-client/src/models/SystemWriteSyncDestinationsVercelProjectNameResponse.ts index 4754481565..43c032b78c 100644 --- a/ui/api-client/src/models/SystemWriteSyncDestinationsVercelProjectNameResponse.ts +++ b/ui/api-client/src/models/SystemWriteSyncDestinationsVercelProjectNameResponse.ts @@ -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'], }; }