Package version:

InterfaceAgentConfiguration

Configurable properties that the user can set locally via the azcmagent config command, or remotely via ARM.

interface AgentConfiguration {
    configMode?: string;
    extensionsAllowList?: ConfigurationExtension[];
    extensionsBlockList?: ConfigurationExtension[];
    extensionsEnabled?: string;
    guestConfigurationEnabled?: string;
    incomingConnectionsPorts?: string[];
    proxyBypass?: string[];
    proxyUrl?: string;
}

Properties

configMode?: string

Name of configuration mode to use. Modes are pre-defined configurations of security controls, extension allowlists and guest configuration, maintained by Microsoft. NOTE: This property will not be serialized. It can only be populated by the server.

extensionsAllowList?: ConfigurationExtension[]

Array of extensions that are allowed to be installed or updated. NOTE: This property will not be serialized. It can only be populated by the server.

extensionsBlockList?: ConfigurationExtension[]

Array of extensions that are blocked (cannot be installed or updated) NOTE: This property will not be serialized. It can only be populated by the server.

extensionsEnabled?: string

Specifies whether the extension service is enabled or disabled. NOTE: This property will not be serialized. It can only be populated by the server.

guestConfigurationEnabled?: string

Specified whether the guest configuration service is enabled or disabled. NOTE: This property will not be serialized. It can only be populated by the server.

incomingConnectionsPorts?: string[]

Specifies the list of ports that the agent will be able to listen on. NOTE: This property will not be serialized. It can only be populated by the server.

proxyBypass?: string[]

List of service names which should not use the specified proxy server. NOTE: This property will not be serialized. It can only be populated by the server.

proxyUrl?: string

Specifies the URL of the proxy to be used. NOTE: This property will not be serialized. It can only be populated by the server.