import { PageDirection } from "./resource_pb.mjs"; import { OTLPExporter, ResourceAttributesConfig } from "./telemetryrouter_resource_pb.mjs"; import { GenMessage } from "@bufbuild/protobuf/codegenv2"; import { Message } from "@bufbuild/protobuf"; //#region ../tailor-proto/src/tailor/v1/telemetryrouter_pb.d.ts /** * @generated from message tailor.v1.CreateOTLPExporterRequest */ export declare type CreateOTLPExporterRequest = Message<"tailor.v1.CreateOTLPExporterRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: tailor.v1.OTLPExporter otlp_exporter = 2; */ otlpExporter?: OTLPExporter; }; /** * Describes the message tailor.v1.CreateOTLPExporterRequest. * Use `create(CreateOTLPExporterRequestSchema)` to create a new message. */ export declare const CreateOTLPExporterRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateOTLPExporterResponse */ export declare type CreateOTLPExporterResponse = Message<"tailor.v1.CreateOTLPExporterResponse"> & { /** * @generated from field: tailor.v1.OTLPExporter otlp_exporter = 1; */ otlpExporter?: OTLPExporter; }; /** * Describes the message tailor.v1.CreateOTLPExporterResponse. * Use `create(CreateOTLPExporterResponseSchema)` to create a new message. */ export declare const CreateOTLPExporterResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateOTLPExporterRequest */ export declare type UpdateOTLPExporterRequest = Message<"tailor.v1.UpdateOTLPExporterRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: tailor.v1.OTLPExporter otlp_exporter = 2; */ otlpExporter?: OTLPExporter; }; /** * Describes the message tailor.v1.UpdateOTLPExporterRequest. * Use `create(UpdateOTLPExporterRequestSchema)` to create a new message. */ export declare const UpdateOTLPExporterRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateOTLPExporterResponse */ export declare type UpdateOTLPExporterResponse = Message<"tailor.v1.UpdateOTLPExporterResponse"> & { /** * @generated from field: tailor.v1.OTLPExporter otlp_exporter = 1; */ otlpExporter?: OTLPExporter; }; /** * Describes the message tailor.v1.UpdateOTLPExporterResponse. * Use `create(UpdateOTLPExporterResponseSchema)` to create a new message. */ export declare const UpdateOTLPExporterResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetOTLPExporterRequest */ export declare type GetOTLPExporterRequest = Message<"tailor.v1.GetOTLPExporterRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string name = 2; */ name: string; }; /** * Describes the message tailor.v1.GetOTLPExporterRequest. * Use `create(GetOTLPExporterRequestSchema)` to create a new message. */ export declare const GetOTLPExporterRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetOTLPExporterResponse */ export declare type GetOTLPExporterResponse = Message<"tailor.v1.GetOTLPExporterResponse"> & { /** * @generated from field: tailor.v1.OTLPExporter otlp_exporter = 1; */ otlpExporter?: OTLPExporter; }; /** * Describes the message tailor.v1.GetOTLPExporterResponse. * Use `create(GetOTLPExporterResponseSchema)` to create a new message. */ export declare const GetOTLPExporterResponseSchema: GenMessage; /** * @generated from message tailor.v1.ListOTLPExportersRequest */ export declare type ListOTLPExportersRequest = Message<"tailor.v1.ListOTLPExportersRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string page_token = 2; */ pageToken: string; /** * @generated from field: uint32 page_size = 3; */ pageSize: number; /** * @generated from field: tailor.v1.PageDirection page_direction = 4; */ pageDirection: PageDirection; }; /** * Describes the message tailor.v1.ListOTLPExportersRequest. * Use `create(ListOTLPExportersRequestSchema)` to create a new message. */ export declare const ListOTLPExportersRequestSchema: GenMessage; /** * @generated from message tailor.v1.ListOTLPExportersResponse */ export declare type ListOTLPExportersResponse = Message<"tailor.v1.ListOTLPExportersResponse"> & { /** * @generated from field: repeated tailor.v1.OTLPExporter otlp_exporters = 1; */ otlpExporters: OTLPExporter[]; /** * @generated from field: string next_page_token = 2; */ nextPageToken: string; /** * @generated from field: int64 total_count = 3; */ totalCount: bigint; }; /** * Describes the message tailor.v1.ListOTLPExportersResponse. * Use `create(ListOTLPExportersResponseSchema)` to create a new message. */ export declare const ListOTLPExportersResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteOTLPExporterRequest */ export declare type DeleteOTLPExporterRequest = Message<"tailor.v1.DeleteOTLPExporterRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string name = 2; */ name: string; }; /** * Describes the message tailor.v1.DeleteOTLPExporterRequest. * Use `create(DeleteOTLPExporterRequestSchema)` to create a new message. */ export declare const DeleteOTLPExporterRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteOTLPExporterResponse */ export declare type DeleteOTLPExporterResponse = Message<"tailor.v1.DeleteOTLPExporterResponse"> & {}; /** * Describes the message tailor.v1.DeleteOTLPExporterResponse. * Use `create(DeleteOTLPExporterResponseSchema)` to create a new message. */ export declare const DeleteOTLPExporterResponseSchema: GenMessage; /** * @generated from message tailor.v1.TestOTLPExporterRequest */ export declare type TestOTLPExporterRequest = Message<"tailor.v1.TestOTLPExporterRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string name = 2; */ name: string; }; /** * Describes the message tailor.v1.TestOTLPExporterRequest. * Use `create(TestOTLPExporterRequestSchema)` to create a new message. */ export declare const TestOTLPExporterRequestSchema: GenMessage; /** * @generated from message tailor.v1.TestOTLPExporterResponse */ export declare type TestOTLPExporterResponse = Message<"tailor.v1.TestOTLPExporterResponse"> & { /** * @generated from field: bool success = 1; */ success: boolean; /** * @generated from field: string message = 2; */ message: string; }; /** * Describes the message tailor.v1.TestOTLPExporterResponse. * Use `create(TestOTLPExporterResponseSchema)` to create a new message. */ export declare const TestOTLPExporterResponseSchema: GenMessage; /** * @generated from message tailor.v1.CreateResourceAttributesConfigRequest */ export declare type CreateResourceAttributesConfigRequest = Message<"tailor.v1.CreateResourceAttributesConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: tailor.v1.ResourceAttributesConfig resource_attributes_config = 2; */ resourceAttributesConfig?: ResourceAttributesConfig; }; /** * Describes the message tailor.v1.CreateResourceAttributesConfigRequest. * Use `create(CreateResourceAttributesConfigRequestSchema)` to create a new message. */ export declare const CreateResourceAttributesConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateResourceAttributesConfigResponse */ export declare type CreateResourceAttributesConfigResponse = Message<"tailor.v1.CreateResourceAttributesConfigResponse"> & { /** * @generated from field: tailor.v1.ResourceAttributesConfig resource_attributes_config = 1; */ resourceAttributesConfig?: ResourceAttributesConfig; }; /** * Describes the message tailor.v1.CreateResourceAttributesConfigResponse. * Use `create(CreateResourceAttributesConfigResponseSchema)` to create a new message. */ export declare const CreateResourceAttributesConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetResourceAttributesConfigRequest */ export declare type GetResourceAttributesConfigRequest = Message<"tailor.v1.GetResourceAttributesConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; }; /** * Describes the message tailor.v1.GetResourceAttributesConfigRequest. * Use `create(GetResourceAttributesConfigRequestSchema)` to create a new message. */ export declare const GetResourceAttributesConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetResourceAttributesConfigResponse */ export declare type GetResourceAttributesConfigResponse = Message<"tailor.v1.GetResourceAttributesConfigResponse"> & { /** * @generated from field: tailor.v1.ResourceAttributesConfig resource_attributes_config = 1; */ resourceAttributesConfig?: ResourceAttributesConfig; }; /** * Describes the message tailor.v1.GetResourceAttributesConfigResponse. * Use `create(GetResourceAttributesConfigResponseSchema)` to create a new message. */ export declare const GetResourceAttributesConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateResourceAttributesConfigRequest */ export declare type UpdateResourceAttributesConfigRequest = Message<"tailor.v1.UpdateResourceAttributesConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: tailor.v1.ResourceAttributesConfig resource_attributes_config = 2; */ resourceAttributesConfig?: ResourceAttributesConfig; }; /** * Describes the message tailor.v1.UpdateResourceAttributesConfigRequest. * Use `create(UpdateResourceAttributesConfigRequestSchema)` to create a new message. */ export declare const UpdateResourceAttributesConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateResourceAttributesConfigResponse */ export declare type UpdateResourceAttributesConfigResponse = Message<"tailor.v1.UpdateResourceAttributesConfigResponse"> & { /** * @generated from field: tailor.v1.ResourceAttributesConfig resource_attributes_config = 1; */ resourceAttributesConfig?: ResourceAttributesConfig; }; /** * Describes the message tailor.v1.UpdateResourceAttributesConfigResponse. * Use `create(UpdateResourceAttributesConfigResponseSchema)` to create a new message. */ export declare const UpdateResourceAttributesConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteResourceAttributesConfigRequest */ export declare type DeleteResourceAttributesConfigRequest = Message<"tailor.v1.DeleteResourceAttributesConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; }; /** * Describes the message tailor.v1.DeleteResourceAttributesConfigRequest. * Use `create(DeleteResourceAttributesConfigRequestSchema)` to create a new message. */ export declare const DeleteResourceAttributesConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteResourceAttributesConfigResponse */ export declare type DeleteResourceAttributesConfigResponse = Message<"tailor.v1.DeleteResourceAttributesConfigResponse"> & {}; /** * Describes the message tailor.v1.DeleteResourceAttributesConfigResponse. * Use `create(DeleteResourceAttributesConfigResponseSchema)` to create a new message. */ export declare const DeleteResourceAttributesConfigResponseSchema: GenMessage; //#endregion