/** *
A key-value pair object.
*/ export interface _KeyValuePair { /** *The name of the key-value pair. For environment variables, this is the name of the environment variable.
*/ name?: string; /** *The value of the key-value pair. For environment variables, this is the value of the environment variable.
*/ value?: string; } export declare type _UnmarshalledKeyValuePair = _KeyValuePair;