import * as cog from '../cog'; import * as resource from '../resource'; export declare class MetadataBuilder implements cog.Builder { protected readonly internal: resource.Metadata; constructor(); /** * Builds the object. */ build(): resource.Metadata; name(name: string): this; namespace(namespace: string): this; labels(labels: Record): this; annotations(annotations: Record): this; uid(uid: string): this; resourceVersion(resourceVersion: string): this; generation(generation: number): this; creationTimestamp(creationTimestamp: string): this; updateTimestamp(updateTimestamp: string): this; deletionTimestamp(deletionTimestamp: string): this; } /** * Creates metadata for a named resource. */ export declare function named(name: string): MetadataBuilder;