GradientEdge CDK Utils
    Preparing search index...
    interface NamedValueProps {
        displayName: Input<string>;
        keyVault?: Input<KeyVaultContractCreatePropertiesArgs>;
        namedValueId?: Input<string>;
        resourceGroupName: Input<string>;
        secret?: Input<boolean>;
        serviceName: Input<string>;
        tags?: Input<Input<string>[]>;
        value?: Input<string>;
    }

    Hierarchy

    • NamedValueArgs
      • NamedValueProps
    Index

    Properties

    displayName: Input<string>

    Unique name of NamedValue. It may contain only letters, digits, period, dash, and underscore characters.

    keyVault?: Input<KeyVaultContractCreatePropertiesArgs>

    KeyVault location details of the namedValue.

    namedValueId?: Input<string>

    Identifier of the NamedValue.

    resourceGroupName: Input<string>

    The name of the resource group. The name is case insensitive.

    secret?: Input<boolean>

    Determines whether the value is a secret and should be encrypted or not. Default value is false.

    serviceName: Input<string>

    The name of the API Management service.

    tags?: Input<Input<string>[]>

    Optional tags that when provided can be used to filter the NamedValue list.

    value?: Input<string>

    Value of the NamedValue. Can contain policy expressions. It may not be empty or consist only of whitespace. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value.