import { PageDirection } from "./resource_pb.mjs"; import { AuthConnection, AuthHook, AuthHookPoint, AuthIDPConfig, AuthOAuth2Client, AuthSCIMConfig, AuthSCIMResource, AuthService, ControlplaneMachineUser, MachineUser, PATScope, PersonalAccessToken, TenantProviderConfig, UserProfileProviderConfig } from "./auth_resource_pb.mjs"; import { GenMessage } from "@bufbuild/protobuf/codegenv2"; import { Message } from "@bufbuild/protobuf"; import { FieldMask, Timestamp, Value } from "@bufbuild/protobuf/wkt"; //#region ../tailor-proto/src/tailor/v1/auth_pb.d.ts /** * @generated from message tailor.v1.CreateAuthServiceRequest */ export declare type CreateAuthServiceRequest = Message<"tailor.v1.CreateAuthServiceRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * Enable publishing session lifecycle events (issued, revoked, refreshed). * * @generated from field: bool publish_session_events = 3; */ publishSessionEvents: boolean; }; /** * Describes the message tailor.v1.CreateAuthServiceRequest. * Use `create(CreateAuthServiceRequestSchema)` to create a new message. */ export declare const CreateAuthServiceRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateAuthServiceResponse */ export declare type CreateAuthServiceResponse = Message<"tailor.v1.CreateAuthServiceResponse"> & { /** * @generated from field: tailor.v1.AuthService auth_service = 1; */ authService?: AuthService; }; /** * Describes the message tailor.v1.CreateAuthServiceResponse. * Use `create(CreateAuthServiceResponseSchema)` to create a new message. */ export declare const CreateAuthServiceResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthServiceRequest */ export declare type UpdateAuthServiceRequest = Message<"tailor.v1.UpdateAuthServiceRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * Enable publishing session lifecycle events (issued, revoked, refreshed). * * @generated from field: bool publish_session_events = 3; */ publishSessionEvents: boolean; }; /** * Describes the message tailor.v1.UpdateAuthServiceRequest. * Use `create(UpdateAuthServiceRequestSchema)` to create a new message. */ export declare const UpdateAuthServiceRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthServiceResponse */ export declare type UpdateAuthServiceResponse = Message<"tailor.v1.UpdateAuthServiceResponse"> & { /** * @generated from field: tailor.v1.AuthService auth_service = 1; */ authService?: AuthService; }; /** * Describes the message tailor.v1.UpdateAuthServiceResponse. * Use `create(UpdateAuthServiceResponseSchema)` to create a new message. */ export declare const UpdateAuthServiceResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthServiceRequest */ export declare type DeleteAuthServiceRequest = Message<"tailor.v1.DeleteAuthServiceRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; }; /** * Describes the message tailor.v1.DeleteAuthServiceRequest. * Use `create(DeleteAuthServiceRequestSchema)` to create a new message. */ export declare const DeleteAuthServiceRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthServiceResponse */ export declare type DeleteAuthServiceResponse = Message<"tailor.v1.DeleteAuthServiceResponse"> & {}; /** * Describes the message tailor.v1.DeleteAuthServiceResponse. * Use `create(DeleteAuthServiceResponseSchema)` to create a new message. */ export declare const DeleteAuthServiceResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthServiceRequest */ export declare type GetAuthServiceRequest = Message<"tailor.v1.GetAuthServiceRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; }; /** * Describes the message tailor.v1.GetAuthServiceRequest. * Use `create(GetAuthServiceRequestSchema)` to create a new message. */ export declare const GetAuthServiceRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthServiceResponse */ export declare type GetAuthServiceResponse = Message<"tailor.v1.GetAuthServiceResponse"> & { /** * @generated from field: tailor.v1.AuthService auth_service = 1; */ authService?: AuthService; }; /** * Describes the message tailor.v1.GetAuthServiceResponse. * Use `create(GetAuthServiceResponseSchema)` to create a new message. */ export declare const GetAuthServiceResponseSchema: GenMessage; /** * @generated from message tailor.v1.ListAuthServicesRequest */ export declare type ListAuthServicesRequest = Message<"tailor.v1.ListAuthServicesRequest"> & { /** * @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.ListAuthServicesRequest. * Use `create(ListAuthServicesRequestSchema)` to create a new message. */ export declare const ListAuthServicesRequestSchema: GenMessage; /** * @generated from message tailor.v1.ListAuthServicesResponse */ export declare type ListAuthServicesResponse = Message<"tailor.v1.ListAuthServicesResponse"> & { /** * @generated from field: repeated tailor.v1.AuthService auth_services = 1; */ authServices: AuthService[]; /** * @generated from field: string next_page_token = 2; */ nextPageToken: string; /** * @generated from field: int64 total_count = 3; */ totalCount: bigint; }; /** * Describes the message tailor.v1.ListAuthServicesResponse. * Use `create(ListAuthServicesResponseSchema)` to create a new message. */ export declare const ListAuthServicesResponseSchema: GenMessage; /** * @generated from message tailor.v1.CreateAuthIDPConfigRequest */ export declare type CreateAuthIDPConfigRequest = Message<"tailor.v1.CreateAuthIDPConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.AuthIDPConfig idp_config = 3; */ idpConfig?: AuthIDPConfig; }; /** * Describes the message tailor.v1.CreateAuthIDPConfigRequest. * Use `create(CreateAuthIDPConfigRequestSchema)` to create a new message. */ export declare const CreateAuthIDPConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateAuthIDPConfigResponse */ export declare type CreateAuthIDPConfigResponse = Message<"tailor.v1.CreateAuthIDPConfigResponse"> & { /** * @generated from field: tailor.v1.AuthIDPConfig idp_config = 1; */ idpConfig?: AuthIDPConfig; }; /** * Describes the message tailor.v1.CreateAuthIDPConfigResponse. * Use `create(CreateAuthIDPConfigResponseSchema)` to create a new message. */ export declare const CreateAuthIDPConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthIDPConfigRequest */ export declare type UpdateAuthIDPConfigRequest = Message<"tailor.v1.UpdateAuthIDPConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.AuthIDPConfig idp_config = 3; */ idpConfig?: AuthIDPConfig; }; /** * Describes the message tailor.v1.UpdateAuthIDPConfigRequest. * Use `create(UpdateAuthIDPConfigRequestSchema)` to create a new message. */ export declare const UpdateAuthIDPConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthIDPConfigResponse */ export declare type UpdateAuthIDPConfigResponse = Message<"tailor.v1.UpdateAuthIDPConfigResponse"> & { /** * @generated from field: tailor.v1.AuthIDPConfig idp_config = 1; */ idpConfig?: AuthIDPConfig; }; /** * Describes the message tailor.v1.UpdateAuthIDPConfigResponse. * Use `create(UpdateAuthIDPConfigResponseSchema)` to create a new message. */ export declare const UpdateAuthIDPConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthIDPConfigRequest */ export declare type DeleteAuthIDPConfigRequest = Message<"tailor.v1.DeleteAuthIDPConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: string name = 3; */ name: string; }; /** * Describes the message tailor.v1.DeleteAuthIDPConfigRequest. * Use `create(DeleteAuthIDPConfigRequestSchema)` to create a new message. */ export declare const DeleteAuthIDPConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthIDPConfigResponse */ export declare type DeleteAuthIDPConfigResponse = Message<"tailor.v1.DeleteAuthIDPConfigResponse"> & {}; /** * Describes the message tailor.v1.DeleteAuthIDPConfigResponse. * Use `create(DeleteAuthIDPConfigResponseSchema)` to create a new message. */ export declare const DeleteAuthIDPConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthIDPConfigRequest */ export declare type GetAuthIDPConfigRequest = Message<"tailor.v1.GetAuthIDPConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: string name = 3; */ name: string; }; /** * Describes the message tailor.v1.GetAuthIDPConfigRequest. * Use `create(GetAuthIDPConfigRequestSchema)` to create a new message. */ export declare const GetAuthIDPConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthIDPConfigResponse */ export declare type GetAuthIDPConfigResponse = Message<"tailor.v1.GetAuthIDPConfigResponse"> & { /** * @generated from field: tailor.v1.AuthIDPConfig idp_config = 1; */ idpConfig?: AuthIDPConfig; }; /** * Describes the message tailor.v1.GetAuthIDPConfigResponse. * Use `create(GetAuthIDPConfigResponseSchema)` to create a new message. */ export declare const GetAuthIDPConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.ListAuthIDPConfigsRequest */ export declare type ListAuthIDPConfigsRequest = Message<"tailor.v1.ListAuthIDPConfigsRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: string page_token = 3; */ pageToken: string; /** * @generated from field: uint32 page_size = 4; */ pageSize: number; /** * @generated from field: tailor.v1.PageDirection page_direction = 5; */ pageDirection: PageDirection; }; /** * Describes the message tailor.v1.ListAuthIDPConfigsRequest. * Use `create(ListAuthIDPConfigsRequestSchema)` to create a new message. */ export declare const ListAuthIDPConfigsRequestSchema: GenMessage; /** * @generated from message tailor.v1.ListAuthIDPConfigsResponse */ export declare type ListAuthIDPConfigsResponse = Message<"tailor.v1.ListAuthIDPConfigsResponse"> & { /** * @generated from field: repeated tailor.v1.AuthIDPConfig idp_configs = 1; */ idpConfigs: AuthIDPConfig[]; /** * @generated from field: string next_page_token = 2; */ nextPageToken: string; /** * @generated from field: int64 total_count = 3; */ totalCount: bigint; }; /** * Describes the message tailor.v1.ListAuthIDPConfigsResponse. * Use `create(ListAuthIDPConfigsResponseSchema)` to create a new message. */ export declare const ListAuthIDPConfigsResponseSchema: GenMessage; /** * @generated from message tailor.v1.CreateUserProfileConfigRequest */ export declare type CreateUserProfileConfigRequest = Message<"tailor.v1.CreateUserProfileConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 3; */ userProfileProviderConfig?: UserProfileProviderConfig; }; /** * Describes the message tailor.v1.CreateUserProfileConfigRequest. * Use `create(CreateUserProfileConfigRequestSchema)` to create a new message. */ export declare const CreateUserProfileConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateUserProfileConfigResponse */ export declare type CreateUserProfileConfigResponse = Message<"tailor.v1.CreateUserProfileConfigResponse"> & { /** * @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 1; */ userProfileProviderConfig?: UserProfileProviderConfig; }; /** * Describes the message tailor.v1.CreateUserProfileConfigResponse. * Use `create(CreateUserProfileConfigResponseSchema)` to create a new message. */ export declare const CreateUserProfileConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateUserProfileConfigRequest */ export declare type UpdateUserProfileConfigRequest = Message<"tailor.v1.UpdateUserProfileConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 3; */ userProfileProviderConfig?: UserProfileProviderConfig; }; /** * Describes the message tailor.v1.UpdateUserProfileConfigRequest. * Use `create(UpdateUserProfileConfigRequestSchema)` to create a new message. */ export declare const UpdateUserProfileConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateUserProfileConfigResponse */ export declare type UpdateUserProfileConfigResponse = Message<"tailor.v1.UpdateUserProfileConfigResponse"> & { /** * @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 1; */ userProfileProviderConfig?: UserProfileProviderConfig; }; /** * Describes the message tailor.v1.UpdateUserProfileConfigResponse. * Use `create(UpdateUserProfileConfigResponseSchema)` to create a new message. */ export declare const UpdateUserProfileConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteUserProfileConfigRequest */ export declare type DeleteUserProfileConfigRequest = Message<"tailor.v1.DeleteUserProfileConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; }; /** * Describes the message tailor.v1.DeleteUserProfileConfigRequest. * Use `create(DeleteUserProfileConfigRequestSchema)` to create a new message. */ export declare const DeleteUserProfileConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteUserProfileConfigResponse */ export declare type DeleteUserProfileConfigResponse = Message<"tailor.v1.DeleteUserProfileConfigResponse"> & {}; /** * Describes the message tailor.v1.DeleteUserProfileConfigResponse. * Use `create(DeleteUserProfileConfigResponseSchema)` to create a new message. */ export declare const DeleteUserProfileConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetUserProfileConfigRequest */ export declare type GetUserProfileConfigRequest = Message<"tailor.v1.GetUserProfileConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; }; /** * Describes the message tailor.v1.GetUserProfileConfigRequest. * Use `create(GetUserProfileConfigRequestSchema)` to create a new message. */ export declare const GetUserProfileConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetUserProfileConfigResponse */ export declare type GetUserProfileConfigResponse = Message<"tailor.v1.GetUserProfileConfigResponse"> & { /** * @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 1; */ userProfileProviderConfig?: UserProfileProviderConfig; }; /** * Describes the message tailor.v1.GetUserProfileConfigResponse. * Use `create(GetUserProfileConfigResponseSchema)` to create a new message. */ export declare const GetUserProfileConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.CreateTenantConfigRequest */ export declare type CreateTenantConfigRequest = Message<"tailor.v1.CreateTenantConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 3; */ tenantProviderConfig?: TenantProviderConfig; }; /** * Describes the message tailor.v1.CreateTenantConfigRequest. * Use `create(CreateTenantConfigRequestSchema)` to create a new message. */ export declare const CreateTenantConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateTenantConfigResponse */ export declare type CreateTenantConfigResponse = Message<"tailor.v1.CreateTenantConfigResponse"> & { /** * @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 1; */ tenantProviderConfig?: TenantProviderConfig; }; /** * Describes the message tailor.v1.CreateTenantConfigResponse. * Use `create(CreateTenantConfigResponseSchema)` to create a new message. */ export declare const CreateTenantConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateTenantConfigRequest */ export declare type UpdateTenantConfigRequest = Message<"tailor.v1.UpdateTenantConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 3; */ tenantProviderConfig?: TenantProviderConfig; }; /** * Describes the message tailor.v1.UpdateTenantConfigRequest. * Use `create(UpdateTenantConfigRequestSchema)` to create a new message. */ export declare const UpdateTenantConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateTenantConfigResponse */ export declare type UpdateTenantConfigResponse = Message<"tailor.v1.UpdateTenantConfigResponse"> & { /** * @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 1; */ tenantProviderConfig?: TenantProviderConfig; }; /** * Describes the message tailor.v1.UpdateTenantConfigResponse. * Use `create(UpdateTenantConfigResponseSchema)` to create a new message. */ export declare const UpdateTenantConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteTenantConfigRequest */ export declare type DeleteTenantConfigRequest = Message<"tailor.v1.DeleteTenantConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; }; /** * Describes the message tailor.v1.DeleteTenantConfigRequest. * Use `create(DeleteTenantConfigRequestSchema)` to create a new message. */ export declare const DeleteTenantConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteTenantConfigResponse */ export declare type DeleteTenantConfigResponse = Message<"tailor.v1.DeleteTenantConfigResponse"> & {}; /** * Describes the message tailor.v1.DeleteTenantConfigResponse. * Use `create(DeleteTenantConfigResponseSchema)` to create a new message. */ export declare const DeleteTenantConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetTenantConfigRequest */ export declare type GetTenantConfigRequest = Message<"tailor.v1.GetTenantConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; }; /** * Describes the message tailor.v1.GetTenantConfigRequest. * Use `create(GetTenantConfigRequestSchema)` to create a new message. */ export declare const GetTenantConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetTenantConfigResponse */ export declare type GetTenantConfigResponse = Message<"tailor.v1.GetTenantConfigResponse"> & { /** * @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 1; */ tenantProviderConfig?: TenantProviderConfig; }; /** * Describes the message tailor.v1.GetTenantConfigResponse. * Use `create(GetTenantConfigResponseSchema)` to create a new message. */ export declare const GetTenantConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.CreatePersonalAccessTokenRequest */ export declare type CreatePersonalAccessTokenRequest = Message<"tailor.v1.CreatePersonalAccessTokenRequest"> & { /** * @generated from field: string name = 1; */ name: string; /** * @generated from field: repeated tailor.v1.PATScope scopes = 2; */ scopes: PATScope[]; }; /** * Describes the message tailor.v1.CreatePersonalAccessTokenRequest. * Use `create(CreatePersonalAccessTokenRequestSchema)` to create a new message. */ export declare const CreatePersonalAccessTokenRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreatePersonalAccessTokenResponse */ export declare type CreatePersonalAccessTokenResponse = Message<"tailor.v1.CreatePersonalAccessTokenResponse"> & { /** * @generated from field: string access_token = 1; */ accessToken: string; }; /** * Describes the message tailor.v1.CreatePersonalAccessTokenResponse. * Use `create(CreatePersonalAccessTokenResponseSchema)` to create a new message. */ export declare const CreatePersonalAccessTokenResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeletePersonalAccessTokenRequest */ export declare type DeletePersonalAccessTokenRequest = Message<"tailor.v1.DeletePersonalAccessTokenRequest"> & { /** * @generated from field: string name = 1; */ name: string; }; /** * Describes the message tailor.v1.DeletePersonalAccessTokenRequest. * Use `create(DeletePersonalAccessTokenRequestSchema)` to create a new message. */ export declare const DeletePersonalAccessTokenRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeletePersonalAccessTokenResponse */ export declare type DeletePersonalAccessTokenResponse = Message<"tailor.v1.DeletePersonalAccessTokenResponse"> & {}; /** * Describes the message tailor.v1.DeletePersonalAccessTokenResponse. * Use `create(DeletePersonalAccessTokenResponseSchema)` to create a new message. */ export declare const DeletePersonalAccessTokenResponseSchema: GenMessage; /** * @generated from message tailor.v1.ListPersonalAccessTokensRequest */ export declare type ListPersonalAccessTokensRequest = Message<"tailor.v1.ListPersonalAccessTokensRequest"> & { /** * @generated from field: string page_token = 1; */ pageToken: string; /** * @generated from field: uint32 page_size = 2; */ pageSize: number; /** * @generated from field: tailor.v1.PageDirection page_direction = 3; */ pageDirection: PageDirection; }; /** * Describes the message tailor.v1.ListPersonalAccessTokensRequest. * Use `create(ListPersonalAccessTokensRequestSchema)` to create a new message. */ export declare const ListPersonalAccessTokensRequestSchema: GenMessage; /** * @generated from message tailor.v1.ListPersonalAccessTokensResponse */ export declare type ListPersonalAccessTokensResponse = Message<"tailor.v1.ListPersonalAccessTokensResponse"> & { /** * @generated from field: repeated tailor.v1.PersonalAccessToken personal_access_tokens = 1; */ personalAccessTokens: PersonalAccessToken[]; /** * @generated from field: string next_page_token = 2; */ nextPageToken: string; /** * @generated from field: int64 total_count = 3; */ totalCount: bigint; }; /** * Describes the message tailor.v1.ListPersonalAccessTokensResponse. * Use `create(ListPersonalAccessTokensResponseSchema)` to create a new message. */ export declare const ListPersonalAccessTokensResponseSchema: GenMessage; /** * @generated from message tailor.v1.CreateAuthMachineUserRequest */ export declare type CreateAuthMachineUserRequest = Message<"tailor.v1.CreateAuthMachineUserRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string auth_namespace = 2; */ authNamespace: string; /** * @generated from field: string name = 3; */ name: string; /** * @generated from field: repeated string attributes = 4; */ attributes: string[]; /** * @generated from field: map attribute_map = 5; */ attributeMap: { [key: string]: Value; }; }; /** * Describes the message tailor.v1.CreateAuthMachineUserRequest. * Use `create(CreateAuthMachineUserRequestSchema)` to create a new message. */ export declare const CreateAuthMachineUserRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateAuthMachineUserResponse */ export declare type CreateAuthMachineUserResponse = Message<"tailor.v1.CreateAuthMachineUserResponse"> & { /** * @generated from field: tailor.v1.MachineUser machine_user = 1; */ machineUser?: MachineUser; }; /** * Describes the message tailor.v1.CreateAuthMachineUserResponse. * Use `create(CreateAuthMachineUserResponseSchema)` to create a new message. */ export declare const CreateAuthMachineUserResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthMachineUserRequest */ export declare type UpdateAuthMachineUserRequest = Message<"tailor.v1.UpdateAuthMachineUserRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string auth_namespace = 2; */ authNamespace: string; /** * @generated from field: string name = 3; */ name: string; /** * @generated from field: repeated string attributes = 4; */ attributes: string[]; /** * @generated from field: map attribute_map = 5; */ attributeMap: { [key: string]: Value; }; }; /** * Describes the message tailor.v1.UpdateAuthMachineUserRequest. * Use `create(UpdateAuthMachineUserRequestSchema)` to create a new message. */ export declare const UpdateAuthMachineUserRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthMachineUserResponse */ export declare type UpdateAuthMachineUserResponse = Message<"tailor.v1.UpdateAuthMachineUserResponse"> & { /** * @generated from field: tailor.v1.MachineUser machine_user = 1; */ machineUser?: MachineUser; }; /** * Describes the message tailor.v1.UpdateAuthMachineUserResponse. * Use `create(UpdateAuthMachineUserResponseSchema)` to create a new message. */ export declare const UpdateAuthMachineUserResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthMachineUserRequest */ export declare type DeleteAuthMachineUserRequest = Message<"tailor.v1.DeleteAuthMachineUserRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string auth_namespace = 2; */ authNamespace: string; /** * @generated from field: string name = 3; */ name: string; }; /** * Describes the message tailor.v1.DeleteAuthMachineUserRequest. * Use `create(DeleteAuthMachineUserRequestSchema)` to create a new message. */ export declare const DeleteAuthMachineUserRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthMachineUserResponse */ export declare type DeleteAuthMachineUserResponse = Message<"tailor.v1.DeleteAuthMachineUserResponse"> & {}; /** * Describes the message tailor.v1.DeleteAuthMachineUserResponse. * Use `create(DeleteAuthMachineUserResponseSchema)` to create a new message. */ export declare const DeleteAuthMachineUserResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthMachineUserRequest */ export declare type GetAuthMachineUserRequest = Message<"tailor.v1.GetAuthMachineUserRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string auth_namespace = 2; */ authNamespace: string; /** * @generated from field: string name = 3; */ name: string; }; /** * Describes the message tailor.v1.GetAuthMachineUserRequest. * Use `create(GetAuthMachineUserRequestSchema)` to create a new message. */ export declare const GetAuthMachineUserRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthMachineUserResponse */ export declare type GetAuthMachineUserResponse = Message<"tailor.v1.GetAuthMachineUserResponse"> & { /** * @generated from field: tailor.v1.MachineUser machine_user = 1; */ machineUser?: MachineUser; }; /** * Describes the message tailor.v1.GetAuthMachineUserResponse. * Use `create(GetAuthMachineUserResponseSchema)` to create a new message. */ export declare const GetAuthMachineUserResponseSchema: GenMessage; /** * @generated from message tailor.v1.ListAuthMachineUsersRequest */ export declare type ListAuthMachineUsersRequest = Message<"tailor.v1.ListAuthMachineUsersRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string auth_namespace = 2; */ authNamespace: string; /** * @generated from field: string page_token = 3; */ pageToken: string; /** * @generated from field: uint32 page_size = 4; */ pageSize: number; /** * @generated from field: tailor.v1.PageDirection page_direction = 5; */ pageDirection: PageDirection; }; /** * Describes the message tailor.v1.ListAuthMachineUsersRequest. * Use `create(ListAuthMachineUsersRequestSchema)` to create a new message. */ export declare const ListAuthMachineUsersRequestSchema: GenMessage; /** * @generated from message tailor.v1.ListAuthMachineUsersResponse */ export declare type ListAuthMachineUsersResponse = Message<"tailor.v1.ListAuthMachineUsersResponse"> & { /** * @generated from field: repeated tailor.v1.MachineUser machine_users = 1; */ machineUsers: MachineUser[]; /** * @generated from field: string next_page_token = 2; */ nextPageToken: string; /** * @generated from field: int64 total_count = 3; */ totalCount: bigint; }; /** * Describes the message tailor.v1.ListAuthMachineUsersResponse. * Use `create(ListAuthMachineUsersResponseSchema)` to create a new message. */ export declare const ListAuthMachineUsersResponseSchema: GenMessage; /** * @generated from message tailor.v1.CreateAuthSCIMConfigRequest */ export declare type CreateAuthSCIMConfigRequest = Message<"tailor.v1.CreateAuthSCIMConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.AuthSCIMConfig scim_config = 3; */ scimConfig?: AuthSCIMConfig; }; /** * Describes the message tailor.v1.CreateAuthSCIMConfigRequest. * Use `create(CreateAuthSCIMConfigRequestSchema)` to create a new message. */ export declare const CreateAuthSCIMConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateAuthSCIMConfigResponse */ export declare type CreateAuthSCIMConfigResponse = Message<"tailor.v1.CreateAuthSCIMConfigResponse"> & { /** * @generated from field: tailor.v1.AuthSCIMConfig scim_config = 1; */ scimConfig?: AuthSCIMConfig; }; /** * Describes the message tailor.v1.CreateAuthSCIMConfigResponse. * Use `create(CreateAuthSCIMConfigResponseSchema)` to create a new message. */ export declare const CreateAuthSCIMConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthSCIMConfigRequest */ export declare type UpdateAuthSCIMConfigRequest = Message<"tailor.v1.UpdateAuthSCIMConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.AuthSCIMConfig scim_config = 3; */ scimConfig?: AuthSCIMConfig; }; /** * Describes the message tailor.v1.UpdateAuthSCIMConfigRequest. * Use `create(UpdateAuthSCIMConfigRequestSchema)` to create a new message. */ export declare const UpdateAuthSCIMConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthSCIMConfigResponse */ export declare type UpdateAuthSCIMConfigResponse = Message<"tailor.v1.UpdateAuthSCIMConfigResponse"> & { /** * @generated from field: tailor.v1.AuthSCIMConfig scim_config = 1; */ scimConfig?: AuthSCIMConfig; }; /** * Describes the message tailor.v1.UpdateAuthSCIMConfigResponse. * Use `create(UpdateAuthSCIMConfigResponseSchema)` to create a new message. */ export declare const UpdateAuthSCIMConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthSCIMConfigRequest */ export declare type GetAuthSCIMConfigRequest = Message<"tailor.v1.GetAuthSCIMConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; }; /** * Describes the message tailor.v1.GetAuthSCIMConfigRequest. * Use `create(GetAuthSCIMConfigRequestSchema)` to create a new message. */ export declare const GetAuthSCIMConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthSCIMConfigResponse */ export declare type GetAuthSCIMConfigResponse = Message<"tailor.v1.GetAuthSCIMConfigResponse"> & { /** * @generated from field: tailor.v1.AuthSCIMConfig scim_config = 1; */ scimConfig?: AuthSCIMConfig; }; /** * Describes the message tailor.v1.GetAuthSCIMConfigResponse. * Use `create(GetAuthSCIMConfigResponseSchema)` to create a new message. */ export declare const GetAuthSCIMConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthSCIMConfigRequest */ export declare type DeleteAuthSCIMConfigRequest = Message<"tailor.v1.DeleteAuthSCIMConfigRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; }; /** * Describes the message tailor.v1.DeleteAuthSCIMConfigRequest. * Use `create(DeleteAuthSCIMConfigRequestSchema)` to create a new message. */ export declare const DeleteAuthSCIMConfigRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthSCIMConfigResponse */ export declare type DeleteAuthSCIMConfigResponse = Message<"tailor.v1.DeleteAuthSCIMConfigResponse"> & {}; /** * Describes the message tailor.v1.DeleteAuthSCIMConfigResponse. * Use `create(DeleteAuthSCIMConfigResponseSchema)` to create a new message. */ export declare const DeleteAuthSCIMConfigResponseSchema: GenMessage; /** * @generated from message tailor.v1.CreateAuthSCIMResourceRequest */ export declare type CreateAuthSCIMResourceRequest = Message<"tailor.v1.CreateAuthSCIMResourceRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.AuthSCIMResource scim_resource = 3; */ scimResource?: AuthSCIMResource; }; /** * Describes the message tailor.v1.CreateAuthSCIMResourceRequest. * Use `create(CreateAuthSCIMResourceRequestSchema)` to create a new message. */ export declare const CreateAuthSCIMResourceRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateAuthSCIMResourceResponse */ export declare type CreateAuthSCIMResourceResponse = Message<"tailor.v1.CreateAuthSCIMResourceResponse"> & { /** * @generated from field: tailor.v1.AuthSCIMResource scim_resource = 1; */ scimResource?: AuthSCIMResource; }; /** * Describes the message tailor.v1.CreateAuthSCIMResourceResponse. * Use `create(CreateAuthSCIMResourceResponseSchema)` to create a new message. */ export declare const CreateAuthSCIMResourceResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthSCIMResourceRequest */ export declare type UpdateAuthSCIMResourceRequest = Message<"tailor.v1.UpdateAuthSCIMResourceRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.AuthSCIMResource scim_resource = 3; */ scimResource?: AuthSCIMResource; }; /** * Describes the message tailor.v1.UpdateAuthSCIMResourceRequest. * Use `create(UpdateAuthSCIMResourceRequestSchema)` to create a new message. */ export declare const UpdateAuthSCIMResourceRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthSCIMResourceResponse */ export declare type UpdateAuthSCIMResourceResponse = Message<"tailor.v1.UpdateAuthSCIMResourceResponse"> & { /** * @generated from field: tailor.v1.AuthSCIMResource scim_resource = 1; */ scimResource?: AuthSCIMResource; }; /** * Describes the message tailor.v1.UpdateAuthSCIMResourceResponse. * Use `create(UpdateAuthSCIMResourceResponseSchema)` to create a new message. */ export declare const UpdateAuthSCIMResourceResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthSCIMResourceRequest */ export declare type DeleteAuthSCIMResourceRequest = Message<"tailor.v1.DeleteAuthSCIMResourceRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: string name = 3; */ name: string; }; /** * Describes the message tailor.v1.DeleteAuthSCIMResourceRequest. * Use `create(DeleteAuthSCIMResourceRequestSchema)` to create a new message. */ export declare const DeleteAuthSCIMResourceRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthSCIMResourceResponse */ export declare type DeleteAuthSCIMResourceResponse = Message<"tailor.v1.DeleteAuthSCIMResourceResponse"> & {}; /** * Describes the message tailor.v1.DeleteAuthSCIMResourceResponse. * Use `create(DeleteAuthSCIMResourceResponseSchema)` to create a new message. */ export declare const DeleteAuthSCIMResourceResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthSCIMResourceRequest */ export declare type GetAuthSCIMResourceRequest = Message<"tailor.v1.GetAuthSCIMResourceRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: string name = 3; */ name: string; }; /** * Describes the message tailor.v1.GetAuthSCIMResourceRequest. * Use `create(GetAuthSCIMResourceRequestSchema)` to create a new message. */ export declare const GetAuthSCIMResourceRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthSCIMResourceResponse */ export declare type GetAuthSCIMResourceResponse = Message<"tailor.v1.GetAuthSCIMResourceResponse"> & { /** * @generated from field: tailor.v1.AuthSCIMResource scim_resource = 1; */ scimResource?: AuthSCIMResource; }; /** * Describes the message tailor.v1.GetAuthSCIMResourceResponse. * Use `create(GetAuthSCIMResourceResponseSchema)` to create a new message. */ export declare const GetAuthSCIMResourceResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthSCIMResourcesRequest */ export declare type GetAuthSCIMResourcesRequest = Message<"tailor.v1.GetAuthSCIMResourcesRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; }; /** * Describes the message tailor.v1.GetAuthSCIMResourcesRequest. * Use `create(GetAuthSCIMResourcesRequestSchema)` to create a new message. */ export declare const GetAuthSCIMResourcesRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthSCIMResourcesResponse */ export declare type GetAuthSCIMResourcesResponse = Message<"tailor.v1.GetAuthSCIMResourcesResponse"> & { /** * @generated from field: repeated tailor.v1.AuthSCIMResource scim_resources = 1; */ scimResources: AuthSCIMResource[]; }; /** * Describes the message tailor.v1.GetAuthSCIMResourcesResponse. * Use `create(GetAuthSCIMResourcesResponseSchema)` to create a new message. */ export declare const GetAuthSCIMResourcesResponseSchema: GenMessage; /** * Auth Hook -------------------------------------------------------- * * @generated from message tailor.v1.CreateAuthHookRequest */ export declare type CreateAuthHookRequest = Message<"tailor.v1.CreateAuthHookRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.AuthHook hook = 3; */ hook?: AuthHook; }; /** * Describes the message tailor.v1.CreateAuthHookRequest. * Use `create(CreateAuthHookRequestSchema)` to create a new message. */ export declare const CreateAuthHookRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateAuthHookResponse */ export declare type CreateAuthHookResponse = Message<"tailor.v1.CreateAuthHookResponse"> & { /** * @generated from field: tailor.v1.AuthHook hook = 1; */ hook?: AuthHook; }; /** * Describes the message tailor.v1.CreateAuthHookResponse. * Use `create(CreateAuthHookResponseSchema)` to create a new message. */ export declare const CreateAuthHookResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthHookRequest */ export declare type UpdateAuthHookRequest = Message<"tailor.v1.UpdateAuthHookRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.AuthHook hook = 3; */ hook?: AuthHook; }; /** * Describes the message tailor.v1.UpdateAuthHookRequest. * Use `create(UpdateAuthHookRequestSchema)` to create a new message. */ export declare const UpdateAuthHookRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthHookResponse */ export declare type UpdateAuthHookResponse = Message<"tailor.v1.UpdateAuthHookResponse"> & { /** * @generated from field: tailor.v1.AuthHook hook = 1; */ hook?: AuthHook; }; /** * Describes the message tailor.v1.UpdateAuthHookResponse. * Use `create(UpdateAuthHookResponseSchema)` to create a new message. */ export declare const UpdateAuthHookResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthHookRequest */ export declare type DeleteAuthHookRequest = Message<"tailor.v1.DeleteAuthHookRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.AuthHookPoint hook_point = 3; */ hookPoint: AuthHookPoint; }; /** * Describes the message tailor.v1.DeleteAuthHookRequest. * Use `create(DeleteAuthHookRequestSchema)` to create a new message. */ export declare const DeleteAuthHookRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthHookResponse */ export declare type DeleteAuthHookResponse = Message<"tailor.v1.DeleteAuthHookResponse"> & {}; /** * Describes the message tailor.v1.DeleteAuthHookResponse. * Use `create(DeleteAuthHookResponseSchema)` to create a new message. */ export declare const DeleteAuthHookResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthHookRequest */ export declare type GetAuthHookRequest = Message<"tailor.v1.GetAuthHookRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.AuthHookPoint hook_point = 3; */ hookPoint: AuthHookPoint; }; /** * Describes the message tailor.v1.GetAuthHookRequest. * Use `create(GetAuthHookRequestSchema)` to create a new message. */ export declare const GetAuthHookRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthHookResponse */ export declare type GetAuthHookResponse = Message<"tailor.v1.GetAuthHookResponse"> & { /** * @generated from field: tailor.v1.AuthHook hook = 1; */ hook?: AuthHook; }; /** * Describes the message tailor.v1.GetAuthHookResponse. * Use `create(GetAuthHookResponseSchema)` to create a new message. */ export declare const GetAuthHookResponseSchema: GenMessage; /** * @generated from message tailor.v1.CreateAuthConnectionRequest */ export declare type CreateAuthConnectionRequest = Message<"tailor.v1.CreateAuthConnectionRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: tailor.v1.AuthConnection connection = 2; */ connection?: AuthConnection; }; /** * Describes the message tailor.v1.CreateAuthConnectionRequest. * Use `create(CreateAuthConnectionRequestSchema)` to create a new message. */ export declare const CreateAuthConnectionRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateAuthConnectionResponse */ export declare type CreateAuthConnectionResponse = Message<"tailor.v1.CreateAuthConnectionResponse"> & {}; /** * Describes the message tailor.v1.CreateAuthConnectionResponse. * Use `create(CreateAuthConnectionResponseSchema)` to create a new message. */ export declare const CreateAuthConnectionResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthConnectionRequest */ export declare type UpdateAuthConnectionRequest = Message<"tailor.v1.UpdateAuthConnectionRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: tailor.v1.AuthConnection connection = 2; */ connection?: AuthConnection; /** * @generated from field: google.protobuf.FieldMask update_mask = 100; */ updateMask?: FieldMask; }; /** * Describes the message tailor.v1.UpdateAuthConnectionRequest. * Use `create(UpdateAuthConnectionRequestSchema)` to create a new message. */ export declare const UpdateAuthConnectionRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthConnectionResponse */ export declare type UpdateAuthConnectionResponse = Message<"tailor.v1.UpdateAuthConnectionResponse"> & { /** * The updated connection. Its status reflects whether the change revoked the * session (STATUS_UNAUTHORIZED) or left it intact (STATUS_AUTHORIZED). * * @generated from field: tailor.v1.AuthConnection connection = 1; */ connection?: AuthConnection; }; /** * Describes the message tailor.v1.UpdateAuthConnectionResponse. * Use `create(UpdateAuthConnectionResponseSchema)` to create a new message. */ export declare const UpdateAuthConnectionResponseSchema: GenMessage; /** * @generated from message tailor.v1.ListAuthConnectionsRequest */ export declare type ListAuthConnectionsRequest = Message<"tailor.v1.ListAuthConnectionsRequest"> & { /** * @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.ListAuthConnectionsRequest. * Use `create(ListAuthConnectionsRequestSchema)` to create a new message. */ export declare const ListAuthConnectionsRequestSchema: GenMessage; /** * @generated from message tailor.v1.ListAuthConnectionsResponse */ export declare type ListAuthConnectionsResponse = Message<"tailor.v1.ListAuthConnectionsResponse"> & { /** * @generated from field: repeated tailor.v1.AuthConnection connections = 1; */ connections: AuthConnection[]; /** * @generated from field: string next_page_token = 2; */ nextPageToken: string; /** * @generated from field: int64 total_count = 3; */ totalCount: bigint; }; /** * Describes the message tailor.v1.ListAuthConnectionsResponse. * Use `create(ListAuthConnectionsResponseSchema)` to create a new message. */ export declare const ListAuthConnectionsResponseSchema: GenMessage; /** * @generated from message tailor.v1.RevokeAuthConnectionRequest */ export declare type RevokeAuthConnectionRequest = Message<"tailor.v1.RevokeAuthConnectionRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string connection_name = 2; */ connectionName: string; }; /** * Describes the message tailor.v1.RevokeAuthConnectionRequest. * Use `create(RevokeAuthConnectionRequestSchema)` to create a new message. */ export declare const RevokeAuthConnectionRequestSchema: GenMessage; /** * @generated from message tailor.v1.RevokeAuthConnectionResponse */ export declare type RevokeAuthConnectionResponse = Message<"tailor.v1.RevokeAuthConnectionResponse"> & {}; /** * Describes the message tailor.v1.RevokeAuthConnectionResponse. * Use `create(RevokeAuthConnectionResponseSchema)` to create a new message. */ export declare const RevokeAuthConnectionResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthConnectionRequest */ export declare type DeleteAuthConnectionRequest = Message<"tailor.v1.DeleteAuthConnectionRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string connection_name = 2; */ connectionName: string; }; /** * Describes the message tailor.v1.DeleteAuthConnectionRequest. * Use `create(DeleteAuthConnectionRequestSchema)` to create a new message. */ export declare const DeleteAuthConnectionRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthConnectionResponse */ export declare type DeleteAuthConnectionResponse = Message<"tailor.v1.DeleteAuthConnectionResponse"> & {}; /** * Describes the message tailor.v1.DeleteAuthConnectionResponse. * Use `create(DeleteAuthConnectionResponseSchema)` to create a new message. */ export declare const DeleteAuthConnectionResponseSchema: GenMessage; /** * @generated from message tailor.v1.RegisterAuthConnectionSessionRequest */ export declare type RegisterAuthConnectionSessionRequest = Message<"tailor.v1.RegisterAuthConnectionSessionRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string connection_name = 2; */ connectionName: string; /** * @generated from field: string access_token = 3; */ accessToken: string; /** * @generated from field: string refresh_token = 4; */ refreshToken: string; /** * @generated from field: google.protobuf.Timestamp expires_at = 5; */ expiresAt?: Timestamp; }; /** * Describes the message tailor.v1.RegisterAuthConnectionSessionRequest. * Use `create(RegisterAuthConnectionSessionRequestSchema)` to create a new message. */ export declare const RegisterAuthConnectionSessionRequestSchema: GenMessage; /** * @generated from message tailor.v1.RegisterAuthConnectionSessionResponse */ export declare type RegisterAuthConnectionSessionResponse = Message<"tailor.v1.RegisterAuthConnectionSessionResponse"> & {}; /** * Describes the message tailor.v1.RegisterAuthConnectionSessionResponse. * Use `create(RegisterAuthConnectionSessionResponseSchema)` to create a new message. */ export declare const RegisterAuthConnectionSessionResponseSchema: GenMessage; /** * @generated from message tailor.v1.ExchangeAuthConnectionAuthorizationCodeRequest */ export declare type ExchangeAuthConnectionAuthorizationCodeRequest = Message<"tailor.v1.ExchangeAuthConnectionAuthorizationCodeRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string connection_name = 2; */ connectionName: string; /** * @generated from field: string authorization_code = 3; */ authorizationCode: string; /** * @generated from field: string redirect_uri = 4; */ redirectUri: string; }; /** * Describes the message tailor.v1.ExchangeAuthConnectionAuthorizationCodeRequest. * Use `create(ExchangeAuthConnectionAuthorizationCodeRequestSchema)` to create a new message. */ export declare const ExchangeAuthConnectionAuthorizationCodeRequestSchema: GenMessage; /** * @generated from message tailor.v1.ExchangeAuthConnectionAuthorizationCodeResponse */ export declare type ExchangeAuthConnectionAuthorizationCodeResponse = Message<"tailor.v1.ExchangeAuthConnectionAuthorizationCodeResponse"> & {}; /** * Describes the message tailor.v1.ExchangeAuthConnectionAuthorizationCodeResponse. * Use `create(ExchangeAuthConnectionAuthorizationCodeResponseSchema)` to create a new message. */ export declare const ExchangeAuthConnectionAuthorizationCodeResponseSchema: GenMessage; /** * @generated from message tailor.v1.CreateAuthOAuth2ClientRequest */ export declare type CreateAuthOAuth2ClientRequest = Message<"tailor.v1.CreateAuthOAuth2ClientRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 3; */ oauth2Client?: AuthOAuth2Client; }; /** * Describes the message tailor.v1.CreateAuthOAuth2ClientRequest. * Use `create(CreateAuthOAuth2ClientRequestSchema)` to create a new message. */ export declare const CreateAuthOAuth2ClientRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateAuthOAuth2ClientResponse */ export declare type CreateAuthOAuth2ClientResponse = Message<"tailor.v1.CreateAuthOAuth2ClientResponse"> & { /** * @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 1; */ oauth2Client?: AuthOAuth2Client; }; /** * Describes the message tailor.v1.CreateAuthOAuth2ClientResponse. * Use `create(CreateAuthOAuth2ClientResponseSchema)` to create a new message. */ export declare const CreateAuthOAuth2ClientResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthOAuth2ClientRequest */ export declare type UpdateAuthOAuth2ClientRequest = Message<"tailor.v1.UpdateAuthOAuth2ClientRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 3; */ oauth2Client?: AuthOAuth2Client; }; /** * Describes the message tailor.v1.UpdateAuthOAuth2ClientRequest. * Use `create(UpdateAuthOAuth2ClientRequestSchema)` to create a new message. */ export declare const UpdateAuthOAuth2ClientRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateAuthOAuth2ClientResponse */ export declare type UpdateAuthOAuth2ClientResponse = Message<"tailor.v1.UpdateAuthOAuth2ClientResponse"> & { /** * @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 1; */ oauth2Client?: AuthOAuth2Client; }; /** * Describes the message tailor.v1.UpdateAuthOAuth2ClientResponse. * Use `create(UpdateAuthOAuth2ClientResponseSchema)` to create a new message. */ export declare const UpdateAuthOAuth2ClientResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthOAuth2ClientRequest */ export declare type DeleteAuthOAuth2ClientRequest = Message<"tailor.v1.DeleteAuthOAuth2ClientRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: string name = 3; */ name: string; }; /** * Describes the message tailor.v1.DeleteAuthOAuth2ClientRequest. * Use `create(DeleteAuthOAuth2ClientRequestSchema)` to create a new message. */ export declare const DeleteAuthOAuth2ClientRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteAuthOAuth2ClientResponse */ export declare type DeleteAuthOAuth2ClientResponse = Message<"tailor.v1.DeleteAuthOAuth2ClientResponse"> & {}; /** * Describes the message tailor.v1.DeleteAuthOAuth2ClientResponse. * Use `create(DeleteAuthOAuth2ClientResponseSchema)` to create a new message. */ export declare const DeleteAuthOAuth2ClientResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthOAuth2ClientRequest */ export declare type GetAuthOAuth2ClientRequest = Message<"tailor.v1.GetAuthOAuth2ClientRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: string name = 3; */ name: string; }; /** * Describes the message tailor.v1.GetAuthOAuth2ClientRequest. * Use `create(GetAuthOAuth2ClientRequestSchema)` to create a new message. */ export declare const GetAuthOAuth2ClientRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetAuthOAuth2ClientResponse */ export declare type GetAuthOAuth2ClientResponse = Message<"tailor.v1.GetAuthOAuth2ClientResponse"> & { /** * @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 1; */ oauth2Client?: AuthOAuth2Client; }; /** * Describes the message tailor.v1.GetAuthOAuth2ClientResponse. * Use `create(GetAuthOAuth2ClientResponseSchema)` to create a new message. */ export declare const GetAuthOAuth2ClientResponseSchema: GenMessage; /** * @generated from message tailor.v1.ListAuthOAuth2ClientsRequest */ export declare type ListAuthOAuth2ClientsRequest = Message<"tailor.v1.ListAuthOAuth2ClientsRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string namespace_name = 2; */ namespaceName: string; /** * @generated from field: string page_token = 3; */ pageToken: string; /** * @generated from field: uint32 page_size = 4; */ pageSize: number; /** * @generated from field: tailor.v1.PageDirection page_direction = 5; */ pageDirection: PageDirection; }; /** * Describes the message tailor.v1.ListAuthOAuth2ClientsRequest. * Use `create(ListAuthOAuth2ClientsRequestSchema)` to create a new message. */ export declare const ListAuthOAuth2ClientsRequestSchema: GenMessage; /** * @generated from message tailor.v1.ListAuthOAuth2ClientsResponse */ export declare type ListAuthOAuth2ClientsResponse = Message<"tailor.v1.ListAuthOAuth2ClientsResponse"> & { /** * @generated from field: repeated tailor.v1.AuthOAuth2Client oauth2_clients = 1; */ oauth2Clients: AuthOAuth2Client[]; /** * @generated from field: string next_page_token = 2; */ nextPageToken: string; /** * @generated from field: int64 total_count = 3; */ totalCount: bigint; }; /** * Describes the message tailor.v1.ListAuthOAuth2ClientsResponse. * Use `create(ListAuthOAuth2ClientsResponseSchema)` to create a new message. */ export declare const ListAuthOAuth2ClientsResponseSchema: GenMessage; /** * @generated from message tailor.v1.CreateControlplaneMachineUserRequest */ export declare type CreateControlplaneMachineUserRequest = Message<"tailor.v1.CreateControlplaneMachineUserRequest"> & { /** * @generated from field: string organization_id = 1; */ organizationId: string; /** * @generated from field: string folder_id = 2; */ folderId: string; /** * @generated from field: string name = 3; */ name: string; /** * @generated from field: string description = 4; */ description: string; }; /** * Describes the message tailor.v1.CreateControlplaneMachineUserRequest. * Use `create(CreateControlplaneMachineUserRequestSchema)` to create a new message. */ export declare const CreateControlplaneMachineUserRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateControlplaneMachineUserResponse */ export declare type CreateControlplaneMachineUserResponse = Message<"tailor.v1.CreateControlplaneMachineUserResponse"> & { /** * @generated from field: tailor.v1.ControlplaneMachineUser machine_user = 1; */ machineUser?: ControlplaneMachineUser; }; /** * Describes the message tailor.v1.CreateControlplaneMachineUserResponse. * Use `create(CreateControlplaneMachineUserResponseSchema)` to create a new message. */ export declare const CreateControlplaneMachineUserResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateControlplaneMachineUserRequest */ export declare type UpdateControlplaneMachineUserRequest = Message<"tailor.v1.UpdateControlplaneMachineUserRequest"> & { /** * @generated from field: string organization_id = 1; */ organizationId: string; /** * @generated from field: string folder_id = 2; */ folderId: string; /** * @generated from field: string machine_user_id = 3; */ machineUserId: string; /** * @generated from field: optional string name = 4; */ name?: string; /** * @generated from field: optional string description = 5; */ description?: string; }; /** * Describes the message tailor.v1.UpdateControlplaneMachineUserRequest. * Use `create(UpdateControlplaneMachineUserRequestSchema)` to create a new message. */ export declare const UpdateControlplaneMachineUserRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateControlplaneMachineUserResponse */ export declare type UpdateControlplaneMachineUserResponse = Message<"tailor.v1.UpdateControlplaneMachineUserResponse"> & { /** * @generated from field: tailor.v1.ControlplaneMachineUser machine_user = 1; */ machineUser?: ControlplaneMachineUser; }; /** * Describes the message tailor.v1.UpdateControlplaneMachineUserResponse. * Use `create(UpdateControlplaneMachineUserResponseSchema)` to create a new message. */ export declare const UpdateControlplaneMachineUserResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetControlplaneMachineUserRequest */ export declare type GetControlplaneMachineUserRequest = Message<"tailor.v1.GetControlplaneMachineUserRequest"> & { /** * @generated from field: string organization_id = 1; */ organizationId: string; /** * @generated from field: string folder_id = 2; */ folderId: string; /** * @generated from field: string machine_user_id = 3; */ machineUserId: string; }; /** * Describes the message tailor.v1.GetControlplaneMachineUserRequest. * Use `create(GetControlplaneMachineUserRequestSchema)` to create a new message. */ export declare const GetControlplaneMachineUserRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetControlplaneMachineUserResponse */ export declare type GetControlplaneMachineUserResponse = Message<"tailor.v1.GetControlplaneMachineUserResponse"> & { /** * @generated from field: tailor.v1.ControlplaneMachineUser machine_user = 1; */ machineUser?: ControlplaneMachineUser; }; /** * Describes the message tailor.v1.GetControlplaneMachineUserResponse. * Use `create(GetControlplaneMachineUserResponseSchema)` to create a new message. */ export declare const GetControlplaneMachineUserResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetControlplaneMachineUserByNameRequest */ export declare type GetControlplaneMachineUserByNameRequest = Message<"tailor.v1.GetControlplaneMachineUserByNameRequest"> & { /** * @generated from field: string organization_id = 1; */ organizationId: string; /** * @generated from field: string folder_id = 2; */ folderId: string; /** * @generated from field: string name = 3; */ name: string; }; /** * Describes the message tailor.v1.GetControlplaneMachineUserByNameRequest. * Use `create(GetControlplaneMachineUserByNameRequestSchema)` to create a new message. */ export declare const GetControlplaneMachineUserByNameRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetControlplaneMachineUserByNameResponse */ export declare type GetControlplaneMachineUserByNameResponse = Message<"tailor.v1.GetControlplaneMachineUserByNameResponse"> & { /** * @generated from field: tailor.v1.ControlplaneMachineUser machine_user = 1; */ machineUser?: ControlplaneMachineUser; }; /** * Describes the message tailor.v1.GetControlplaneMachineUserByNameResponse. * Use `create(GetControlplaneMachineUserByNameResponseSchema)` to create a new message. */ export declare const GetControlplaneMachineUserByNameResponseSchema: GenMessage; /** * @generated from message tailor.v1.ListControlplaneMachineUsersRequest */ export declare type ListControlplaneMachineUsersRequest = Message<"tailor.v1.ListControlplaneMachineUsersRequest"> & { /** * @generated from field: string organization_id = 1; */ organizationId: string; /** * @generated from field: string folder_id = 2; */ folderId: string; /** * @generated from field: string page_token = 3; */ pageToken: string; /** * @generated from field: uint32 page_size = 4; */ pageSize: number; /** * @generated from field: tailor.v1.PageDirection page_direction = 5; */ pageDirection: PageDirection; }; /** * Describes the message tailor.v1.ListControlplaneMachineUsersRequest. * Use `create(ListControlplaneMachineUsersRequestSchema)` to create a new message. */ export declare const ListControlplaneMachineUsersRequestSchema: GenMessage; /** * @generated from message tailor.v1.ListControlplaneMachineUsersResponse */ export declare type ListControlplaneMachineUsersResponse = Message<"tailor.v1.ListControlplaneMachineUsersResponse"> & { /** * @generated from field: repeated tailor.v1.ControlplaneMachineUser machine_users = 1; */ machineUsers: ControlplaneMachineUser[]; /** * @generated from field: string next_page_token = 2; */ nextPageToken: string; /** * @generated from field: int64 total_count = 3; */ totalCount: bigint; }; /** * Describes the message tailor.v1.ListControlplaneMachineUsersResponse. * Use `create(ListControlplaneMachineUsersResponseSchema)` to create a new message. */ export declare const ListControlplaneMachineUsersResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteControlplaneMachineUserRequest */ export declare type DeleteControlplaneMachineUserRequest = Message<"tailor.v1.DeleteControlplaneMachineUserRequest"> & { /** * @generated from field: string organization_id = 1; */ organizationId: string; /** * @generated from field: string folder_id = 2; */ folderId: string; /** * @generated from field: string machine_user_id = 3; */ machineUserId: string; }; /** * Describes the message tailor.v1.DeleteControlplaneMachineUserRequest. * Use `create(DeleteControlplaneMachineUserRequestSchema)` to create a new message. */ export declare const DeleteControlplaneMachineUserRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteControlplaneMachineUserResponse */ export declare type DeleteControlplaneMachineUserResponse = Message<"tailor.v1.DeleteControlplaneMachineUserResponse"> & {}; /** * Describes the message tailor.v1.DeleteControlplaneMachineUserResponse. * Use `create(DeleteControlplaneMachineUserResponseSchema)` to create a new message. */ export declare const DeleteControlplaneMachineUserResponseSchema: GenMessage; //#endregion