import { Nullable } from "../../types"; export type Secret = { name: string; uid: string; id: string; createTime: string; updateTime: string; description: Nullable; value: Nullable; }; export type GetNamespaceSecretRequest = { namespaceId: string; secretId: string; }; export type GetNamespaceSecretResponse = { secret: Secret; }; export type ListNamespaceSecretsRequest = { namespaceId: string; pageSize?: number; pageToken?: string; }; export type ListNamespaceSecretResponse = { secrets: Secret[]; nextPageToken: string; totalSize: number; }; export type CreateNamespaceSecretRequest = { namespaceId: string; id: string; value: string; description?: string; }; export type CreateNamespaceSecretResponse = { secret: Secret; }; export type DeleteNamespaceSecretRequest = { namespaceId: string; secretId: string; }; export type UpdateNamespaceSecretRequest = { namespaceId: string; secretId: string; id?: string; value?: string; description?: string; }; export type UpdateNamespaceSecretResponse = { secret: Secret; }; //# sourceMappingURL=types.d.ts.map