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

@@ -2,11 +2,14 @@
## Properties
| Name | Type |
| ------- | ------ |
| `id` | string |
| `key` | string |
| `value` | string |
| Name | Type |
| ----------------- | ------ |
| `created_at` | string |
| `id` | string |
| `key` | string |
| `organization_id` | string |
| `updated_at` | string |
| `value` | string |
## Example
@@ -15,8 +18,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}
@@ -60,8 +78,12 @@ export function DtoLabelResponseFromJSONTyped(
return json;
}
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"],
};
}
@@ -79,8 +101,11 @@ export function DtoLabelResponseToJSONTyped(
}
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"],
};
}