feat: add labels to terraform provider

This commit is contained in:
allanice001
2025-11-03 19:07:15 +00:00
parent ee824a9c5a
commit 3ca77c097d
20 changed files with 644 additions and 13 deletions

View File

@@ -6,8 +6,11 @@
Name | Type
------------ | -------------
`created_at` | string
`id` | string
`key` | string
`organization_id` | string
`updated_at` | string
`value` | string
## Example
@@ -17,8 +20,11 @@ import type { DtoLabelResponse } from '@glueops/autoglue-sdk-go'
// TODO: Update the object below with actual values
const example = {
"created_at": null,
"id": null,
"key": null,
"organization_id": null,
"updated_at": null,
"value": null,
} satisfies DtoLabelResponse

View File

@@ -19,6 +19,12 @@ import { mapValues } from '../runtime';
* @interface DtoLabelResponse
*/
export interface DtoLabelResponse {
/**
*
* @type {string}
* @memberof DtoLabelResponse
*/
created_at?: string;
/**
*
* @type {string}
@@ -31,6 +37,18 @@ export interface DtoLabelResponse {
* @memberof DtoLabelResponse
*/
key?: string;
/**
*
* @type {string}
* @memberof DtoLabelResponse
*/
organization_id?: string;
/**
*
* @type {string}
* @memberof DtoLabelResponse
*/
updated_at?: string;
/**
*
* @type {string}
@@ -56,8 +74,11 @@ export function DtoLabelResponseFromJSONTyped(json: any, ignoreDiscriminator: bo
}
return {
'created_at': json['created_at'] == null ? undefined : json['created_at'],
'id': json['id'] == null ? undefined : json['id'],
'key': json['key'] == null ? undefined : json['key'],
'organization_id': json['organization_id'] == null ? undefined : json['organization_id'],
'updated_at': json['updated_at'] == null ? undefined : json['updated_at'],
'value': json['value'] == null ? undefined : json['value'],
};
}
@@ -73,8 +94,11 @@ export function DtoLabelResponseToJSONTyped(value?: DtoLabelResponse | null, ign
return {
'created_at': value['created_at'],
'id': value['id'],
'key': value['key'],
'organization_id': value['organization_id'],
'updated_at': value['updated_at'],
'value': value['value'],
};
}