import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.iam.v1.workload.oidc"; /** A OIDC workload identity federation. */ export interface Federation { /** Id of the OIDC workload identity federation. */ id: string; /** * Name of the OIDC workload identity federation * The name is unique within the folder. 3-63 characters long. */ name: string; /** ID of the folder that the OIDC workload identity federation belongs to. */ folderId: string; /** Description of the service account. 0-256 characters long. */ description: string; /** * True - the OIDC workload identity federation is enabled and can be used for authentication. * False - the OIDC workload identity federation is disabled and cannot be used for authentication. */ enabled: boolean; /** List of trusted values for aud claim. */ audiences: string[]; /** URL of the external IdP server to be used for authentication. */ issuer: string; /** URL reference to trusted keys in format of JSON Web Key Set. */ jwksUrl: string; /** Resource labels as `` key:value `` pairs */ labels: { [key: string]: string; }; /** Creation timestamp. */ createdAt?: Date; } export interface Federation_LabelsEntry { key: string; value: string; } export declare const Federation: { encode(message: Federation, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Federation; fromJSON(object: any): Federation; toJSON(message: Federation): unknown; fromPartial, never>) | undefined; issuer?: string | undefined; jwksUrl?: string | undefined; labels?: ({ [x: string]: string | undefined; } & { [x: string]: string | undefined; } & Record, never>) | undefined; createdAt?: Date | undefined; } & Record, never>>(object: I): Federation; }; export declare const Federation_LabelsEntry: { encode(message: Federation_LabelsEntry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Federation_LabelsEntry; fromJSON(object: any): Federation_LabelsEntry; toJSON(message: Federation_LabelsEntry): unknown; fromPartial, never>>(object: I): Federation_LabelsEntry; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & Record>, never>; export {};