/** *

A metadata key-value pair to store with an object.

*/ export interface _MetadataEntry { /** * _MetadataKey shape */ Name?: string; /** * _MetadataValue shape */ Value?: string; } export declare type _UnmarshalledMetadataEntry = _MetadataEntry;