1. Packages
  2. Azure Native
  3. API Docs
  4. apimanagement
  5. Diagnostic
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

azure-native.apimanagement.Diagnostic

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

    Diagnostic details. Azure REST API version: 2022-08-01. Prior API version in Azure Native 1.x: 2020-12-01.

    Other available API versions: 2018-01-01, 2019-01-01, 2022-09-01-preview, 2023-03-01-preview, 2023-05-01-preview.

    Example Usage

    ApiManagementCreateDiagnostic

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var diagnostic = new AzureNative.ApiManagement.Diagnostic("diagnostic", new()
        {
            AlwaysLog = AzureNative.ApiManagement.AlwaysLog.AllErrors,
            Backend = new AzureNative.ApiManagement.Inputs.PipelineDiagnosticSettingsArgs
            {
                Request = new AzureNative.ApiManagement.Inputs.HttpMessageDiagnosticArgs
                {
                    Body = new AzureNative.ApiManagement.Inputs.BodyDiagnosticSettingsArgs
                    {
                        Bytes = 512,
                    },
                    Headers = new[]
                    {
                        "Content-type",
                    },
                },
                Response = new AzureNative.ApiManagement.Inputs.HttpMessageDiagnosticArgs
                {
                    Body = new AzureNative.ApiManagement.Inputs.BodyDiagnosticSettingsArgs
                    {
                        Bytes = 512,
                    },
                    Headers = new[]
                    {
                        "Content-type",
                    },
                },
            },
            DiagnosticId = "applicationinsights",
            Frontend = new AzureNative.ApiManagement.Inputs.PipelineDiagnosticSettingsArgs
            {
                Request = new AzureNative.ApiManagement.Inputs.HttpMessageDiagnosticArgs
                {
                    Body = new AzureNative.ApiManagement.Inputs.BodyDiagnosticSettingsArgs
                    {
                        Bytes = 512,
                    },
                    Headers = new[]
                    {
                        "Content-type",
                    },
                },
                Response = new AzureNative.ApiManagement.Inputs.HttpMessageDiagnosticArgs
                {
                    Body = new AzureNative.ApiManagement.Inputs.BodyDiagnosticSettingsArgs
                    {
                        Bytes = 512,
                    },
                    Headers = new[]
                    {
                        "Content-type",
                    },
                },
            },
            LoggerId = "/loggers/azuremonitor",
            ResourceGroupName = "rg1",
            Sampling = new AzureNative.ApiManagement.Inputs.SamplingSettingsArgs
            {
                Percentage = 50,
                SamplingType = AzureNative.ApiManagement.SamplingType.@Fixed,
            },
            ServiceName = "apimService1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/apimanagement/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := apimanagement.NewDiagnostic(ctx, "diagnostic", &apimanagement.DiagnosticArgs{
    			AlwaysLog: pulumi.String(apimanagement.AlwaysLogAllErrors),
    			Backend: &apimanagement.PipelineDiagnosticSettingsArgs{
    				Request: &apimanagement.HttpMessageDiagnosticArgs{
    					Body: &apimanagement.BodyDiagnosticSettingsArgs{
    						Bytes: pulumi.Int(512),
    					},
    					Headers: pulumi.StringArray{
    						pulumi.String("Content-type"),
    					},
    				},
    				Response: &apimanagement.HttpMessageDiagnosticArgs{
    					Body: &apimanagement.BodyDiagnosticSettingsArgs{
    						Bytes: pulumi.Int(512),
    					},
    					Headers: pulumi.StringArray{
    						pulumi.String("Content-type"),
    					},
    				},
    			},
    			DiagnosticId: pulumi.String("applicationinsights"),
    			Frontend: &apimanagement.PipelineDiagnosticSettingsArgs{
    				Request: &apimanagement.HttpMessageDiagnosticArgs{
    					Body: &apimanagement.BodyDiagnosticSettingsArgs{
    						Bytes: pulumi.Int(512),
    					},
    					Headers: pulumi.StringArray{
    						pulumi.String("Content-type"),
    					},
    				},
    				Response: &apimanagement.HttpMessageDiagnosticArgs{
    					Body: &apimanagement.BodyDiagnosticSettingsArgs{
    						Bytes: pulumi.Int(512),
    					},
    					Headers: pulumi.StringArray{
    						pulumi.String("Content-type"),
    					},
    				},
    			},
    			LoggerId:          pulumi.String("/loggers/azuremonitor"),
    			ResourceGroupName: pulumi.String("rg1"),
    			Sampling: &apimanagement.SamplingSettingsArgs{
    				Percentage:   pulumi.Float64(50),
    				SamplingType: pulumi.String(apimanagement.SamplingTypeFixed),
    			},
    			ServiceName: pulumi.String("apimService1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.apimanagement.Diagnostic;
    import com.pulumi.azurenative.apimanagement.DiagnosticArgs;
    import com.pulumi.azurenative.apimanagement.inputs.PipelineDiagnosticSettingsArgs;
    import com.pulumi.azurenative.apimanagement.inputs.HttpMessageDiagnosticArgs;
    import com.pulumi.azurenative.apimanagement.inputs.BodyDiagnosticSettingsArgs;
    import com.pulumi.azurenative.apimanagement.inputs.SamplingSettingsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var diagnostic = new Diagnostic("diagnostic", DiagnosticArgs.builder()        
                .alwaysLog("allErrors")
                .backend(PipelineDiagnosticSettingsArgs.builder()
                    .request(HttpMessageDiagnosticArgs.builder()
                        .body(BodyDiagnosticSettingsArgs.builder()
                            .bytes(512)
                            .build())
                        .headers("Content-type")
                        .build())
                    .response(HttpMessageDiagnosticArgs.builder()
                        .body(BodyDiagnosticSettingsArgs.builder()
                            .bytes(512)
                            .build())
                        .headers("Content-type")
                        .build())
                    .build())
                .diagnosticId("applicationinsights")
                .frontend(PipelineDiagnosticSettingsArgs.builder()
                    .request(HttpMessageDiagnosticArgs.builder()
                        .body(BodyDiagnosticSettingsArgs.builder()
                            .bytes(512)
                            .build())
                        .headers("Content-type")
                        .build())
                    .response(HttpMessageDiagnosticArgs.builder()
                        .body(BodyDiagnosticSettingsArgs.builder()
                            .bytes(512)
                            .build())
                        .headers("Content-type")
                        .build())
                    .build())
                .loggerId("/loggers/azuremonitor")
                .resourceGroupName("rg1")
                .sampling(SamplingSettingsArgs.builder()
                    .percentage(50)
                    .samplingType("fixed")
                    .build())
                .serviceName("apimService1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    diagnostic = azure_native.apimanagement.Diagnostic("diagnostic",
        always_log=azure_native.apimanagement.AlwaysLog.ALL_ERRORS,
        backend=azure_native.apimanagement.PipelineDiagnosticSettingsArgs(
            request=azure_native.apimanagement.HttpMessageDiagnosticArgs(
                body=azure_native.apimanagement.BodyDiagnosticSettingsArgs(
                    bytes=512,
                ),
                headers=["Content-type"],
            ),
            response=azure_native.apimanagement.HttpMessageDiagnosticArgs(
                body=azure_native.apimanagement.BodyDiagnosticSettingsArgs(
                    bytes=512,
                ),
                headers=["Content-type"],
            ),
        ),
        diagnostic_id="applicationinsights",
        frontend=azure_native.apimanagement.PipelineDiagnosticSettingsArgs(
            request=azure_native.apimanagement.HttpMessageDiagnosticArgs(
                body=azure_native.apimanagement.BodyDiagnosticSettingsArgs(
                    bytes=512,
                ),
                headers=["Content-type"],
            ),
            response=azure_native.apimanagement.HttpMessageDiagnosticArgs(
                body=azure_native.apimanagement.BodyDiagnosticSettingsArgs(
                    bytes=512,
                ),
                headers=["Content-type"],
            ),
        ),
        logger_id="/loggers/azuremonitor",
        resource_group_name="rg1",
        sampling=azure_native.apimanagement.SamplingSettingsArgs(
            percentage=50,
            sampling_type=azure_native.apimanagement.SamplingType.FIXED,
        ),
        service_name="apimService1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const diagnostic = new azure_native.apimanagement.Diagnostic("diagnostic", {
        alwaysLog: azure_native.apimanagement.AlwaysLog.AllErrors,
        backend: {
            request: {
                body: {
                    bytes: 512,
                },
                headers: ["Content-type"],
            },
            response: {
                body: {
                    bytes: 512,
                },
                headers: ["Content-type"],
            },
        },
        diagnosticId: "applicationinsights",
        frontend: {
            request: {
                body: {
                    bytes: 512,
                },
                headers: ["Content-type"],
            },
            response: {
                body: {
                    bytes: 512,
                },
                headers: ["Content-type"],
            },
        },
        loggerId: "/loggers/azuremonitor",
        resourceGroupName: "rg1",
        sampling: {
            percentage: 50,
            samplingType: azure_native.apimanagement.SamplingType.Fixed,
        },
        serviceName: "apimService1",
    });
    
    resources:
      diagnostic:
        type: azure-native:apimanagement:Diagnostic
        properties:
          alwaysLog: allErrors
          backend:
            request:
              body:
                bytes: 512
              headers:
                - Content-type
            response:
              body:
                bytes: 512
              headers:
                - Content-type
          diagnosticId: applicationinsights
          frontend:
            request:
              body:
                bytes: 512
              headers:
                - Content-type
            response:
              body:
                bytes: 512
              headers:
                - Content-type
          loggerId: /loggers/azuremonitor
          resourceGroupName: rg1
          sampling:
            percentage: 50
            samplingType: fixed
          serviceName: apimService1
    

    Create Diagnostic Resource

    new Diagnostic(name: string, args: DiagnosticArgs, opts?: CustomResourceOptions);
    @overload
    def Diagnostic(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   always_log: Optional[Union[str, AlwaysLog]] = None,
                   backend: Optional[PipelineDiagnosticSettingsArgs] = None,
                   diagnostic_id: Optional[str] = None,
                   frontend: Optional[PipelineDiagnosticSettingsArgs] = None,
                   http_correlation_protocol: Optional[Union[str, HttpCorrelationProtocol]] = None,
                   log_client_ip: Optional[bool] = None,
                   logger_id: Optional[str] = None,
                   metrics: Optional[bool] = None,
                   operation_name_format: Optional[Union[str, OperationNameFormat]] = None,
                   resource_group_name: Optional[str] = None,
                   sampling: Optional[SamplingSettingsArgs] = None,
                   service_name: Optional[str] = None,
                   verbosity: Optional[Union[str, Verbosity]] = None)
    @overload
    def Diagnostic(resource_name: str,
                   args: DiagnosticArgs,
                   opts: Optional[ResourceOptions] = None)
    func NewDiagnostic(ctx *Context, name string, args DiagnosticArgs, opts ...ResourceOption) (*Diagnostic, error)
    public Diagnostic(string name, DiagnosticArgs args, CustomResourceOptions? opts = null)
    public Diagnostic(String name, DiagnosticArgs args)
    public Diagnostic(String name, DiagnosticArgs args, CustomResourceOptions options)
    
    type: azure-native:apimanagement:Diagnostic
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args DiagnosticArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DiagnosticArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DiagnosticArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DiagnosticArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DiagnosticArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Diagnostic Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Diagnostic resource accepts the following input properties:

    LoggerId string
    Resource Id of a target logger.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ServiceName string
    The name of the API Management service.
    AlwaysLog string | Pulumi.AzureNative.ApiManagement.AlwaysLog
    Specifies for what type of messages sampling settings should not apply.
    Backend Pulumi.AzureNative.ApiManagement.Inputs.PipelineDiagnosticSettings
    Diagnostic settings for incoming/outgoing HTTP messages to the Backend
    DiagnosticId string
    Diagnostic identifier. Must be unique in the current API Management service instance.
    Frontend Pulumi.AzureNative.ApiManagement.Inputs.PipelineDiagnosticSettings
    Diagnostic settings for incoming/outgoing HTTP messages to the Gateway.
    HttpCorrelationProtocol string | Pulumi.AzureNative.ApiManagement.HttpCorrelationProtocol
    Sets correlation protocol to use for Application Insights diagnostics.
    LogClientIp bool
    Log the ClientIP. Default is false.
    Metrics bool
    Emit custom metrics via emit-metric policy. Applicable only to Application Insights diagnostic settings.
    OperationNameFormat string | Pulumi.AzureNative.ApiManagement.OperationNameFormat
    The format of the Operation Name for Application Insights telemetries. Default is Name.
    Sampling Pulumi.AzureNative.ApiManagement.Inputs.SamplingSettings
    Sampling settings for Diagnostic.
    Verbosity string | Pulumi.AzureNative.ApiManagement.Verbosity
    The verbosity level applied to traces emitted by trace policies.
    LoggerId string
    Resource Id of a target logger.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ServiceName string
    The name of the API Management service.
    AlwaysLog string | AlwaysLog
    Specifies for what type of messages sampling settings should not apply.
    Backend PipelineDiagnosticSettingsArgs
    Diagnostic settings for incoming/outgoing HTTP messages to the Backend
    DiagnosticId string
    Diagnostic identifier. Must be unique in the current API Management service instance.
    Frontend PipelineDiagnosticSettingsArgs
    Diagnostic settings for incoming/outgoing HTTP messages to the Gateway.
    HttpCorrelationProtocol string | HttpCorrelationProtocol
    Sets correlation protocol to use for Application Insights diagnostics.
    LogClientIp bool
    Log the ClientIP. Default is false.
    Metrics bool
    Emit custom metrics via emit-metric policy. Applicable only to Application Insights diagnostic settings.
    OperationNameFormat string | OperationNameFormat
    The format of the Operation Name for Application Insights telemetries. Default is Name.
    Sampling SamplingSettingsArgs
    Sampling settings for Diagnostic.
    Verbosity string | Verbosity
    The verbosity level applied to traces emitted by trace policies.
    loggerId String
    Resource Id of a target logger.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    serviceName String
    The name of the API Management service.
    alwaysLog String | AlwaysLog
    Specifies for what type of messages sampling settings should not apply.
    backend PipelineDiagnosticSettings
    Diagnostic settings for incoming/outgoing HTTP messages to the Backend
    diagnosticId String
    Diagnostic identifier. Must be unique in the current API Management service instance.
    frontend PipelineDiagnosticSettings
    Diagnostic settings for incoming/outgoing HTTP messages to the Gateway.
    httpCorrelationProtocol String | HttpCorrelationProtocol
    Sets correlation protocol to use for Application Insights diagnostics.
    logClientIp Boolean
    Log the ClientIP. Default is false.
    metrics Boolean
    Emit custom metrics via emit-metric policy. Applicable only to Application Insights diagnostic settings.
    operationNameFormat String | OperationNameFormat
    The format of the Operation Name for Application Insights telemetries. Default is Name.
    sampling SamplingSettings
    Sampling settings for Diagnostic.
    verbosity String | Verbosity
    The verbosity level applied to traces emitted by trace policies.
    loggerId string
    Resource Id of a target logger.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    serviceName string
    The name of the API Management service.
    alwaysLog string | AlwaysLog
    Specifies for what type of messages sampling settings should not apply.
    backend PipelineDiagnosticSettings
    Diagnostic settings for incoming/outgoing HTTP messages to the Backend
    diagnosticId string
    Diagnostic identifier. Must be unique in the current API Management service instance.
    frontend PipelineDiagnosticSettings
    Diagnostic settings for incoming/outgoing HTTP messages to the Gateway.
    httpCorrelationProtocol string | HttpCorrelationProtocol
    Sets correlation protocol to use for Application Insights diagnostics.
    logClientIp boolean
    Log the ClientIP. Default is false.
    metrics boolean
    Emit custom metrics via emit-metric policy. Applicable only to Application Insights diagnostic settings.
    operationNameFormat string | OperationNameFormat
    The format of the Operation Name for Application Insights telemetries. Default is Name.
    sampling SamplingSettings
    Sampling settings for Diagnostic.
    verbosity string | Verbosity
    The verbosity level applied to traces emitted by trace policies.
    logger_id str
    Resource Id of a target logger.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    service_name str
    The name of the API Management service.
    always_log str | AlwaysLog
    Specifies for what type of messages sampling settings should not apply.
    backend PipelineDiagnosticSettingsArgs
    Diagnostic settings for incoming/outgoing HTTP messages to the Backend
    diagnostic_id str
    Diagnostic identifier. Must be unique in the current API Management service instance.
    frontend PipelineDiagnosticSettingsArgs
    Diagnostic settings for incoming/outgoing HTTP messages to the Gateway.
    http_correlation_protocol str | HttpCorrelationProtocol
    Sets correlation protocol to use for Application Insights diagnostics.
    log_client_ip bool
    Log the ClientIP. Default is false.
    metrics bool
    Emit custom metrics via emit-metric policy. Applicable only to Application Insights diagnostic settings.
    operation_name_format str | OperationNameFormat
    The format of the Operation Name for Application Insights telemetries. Default is Name.
    sampling SamplingSettingsArgs
    Sampling settings for Diagnostic.
    verbosity str | Verbosity
    The verbosity level applied to traces emitted by trace policies.
    loggerId String
    Resource Id of a target logger.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    serviceName String
    The name of the API Management service.
    alwaysLog String | "allErrors"
    Specifies for what type of messages sampling settings should not apply.
    backend Property Map
    Diagnostic settings for incoming/outgoing HTTP messages to the Backend
    diagnosticId String
    Diagnostic identifier. Must be unique in the current API Management service instance.
    frontend Property Map
    Diagnostic settings for incoming/outgoing HTTP messages to the Gateway.
    httpCorrelationProtocol String | "None" | "Legacy" | "W3C"
    Sets correlation protocol to use for Application Insights diagnostics.
    logClientIp Boolean
    Log the ClientIP. Default is false.
    metrics Boolean
    Emit custom metrics via emit-metric policy. Applicable only to Application Insights diagnostic settings.
    operationNameFormat String | "Name" | "Url"
    The format of the Operation Name for Application Insights telemetries. Default is Name.
    sampling Property Map
    Sampling settings for Diagnostic.
    verbosity String | "verbose" | "information" | "error"
    The verbosity level applied to traces emitted by trace policies.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Diagnostic resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AlwaysLog, AlwaysLogArgs

    AllErrors
    allErrorsAlways log all erroneous request regardless of sampling settings.
    AlwaysLogAllErrors
    allErrorsAlways log all erroneous request regardless of sampling settings.
    AllErrors
    allErrorsAlways log all erroneous request regardless of sampling settings.
    AllErrors
    allErrorsAlways log all erroneous request regardless of sampling settings.
    ALL_ERRORS
    allErrorsAlways log all erroneous request regardless of sampling settings.
    "allErrors"
    allErrorsAlways log all erroneous request regardless of sampling settings.

    BodyDiagnosticSettings, BodyDiagnosticSettingsArgs

    Bytes int
    Number of request body bytes to log.
    Bytes int
    Number of request body bytes to log.
    bytes Integer
    Number of request body bytes to log.
    bytes number
    Number of request body bytes to log.
    bytes int
    Number of request body bytes to log.
    bytes Number
    Number of request body bytes to log.

    BodyDiagnosticSettingsResponse, BodyDiagnosticSettingsResponseArgs

    Bytes int
    Number of request body bytes to log.
    Bytes int
    Number of request body bytes to log.
    bytes Integer
    Number of request body bytes to log.
    bytes number
    Number of request body bytes to log.
    bytes int
    Number of request body bytes to log.
    bytes Number
    Number of request body bytes to log.

    DataMasking, DataMaskingArgs

    Headers []DataMaskingEntity
    Masking settings for headers
    QueryParams []DataMaskingEntity
    Masking settings for Url query parameters
    headers List<DataMaskingEntity>
    Masking settings for headers
    queryParams List<DataMaskingEntity>
    Masking settings for Url query parameters
    headers DataMaskingEntity[]
    Masking settings for headers
    queryParams DataMaskingEntity[]
    Masking settings for Url query parameters
    headers Sequence[DataMaskingEntity]
    Masking settings for headers
    query_params Sequence[DataMaskingEntity]
    Masking settings for Url query parameters
    headers List<Property Map>
    Masking settings for headers
    queryParams List<Property Map>
    Masking settings for Url query parameters

    DataMaskingEntity, DataMaskingEntityArgs

    Mode string | Pulumi.AzureNative.ApiManagement.DataMaskingMode
    Data masking mode.
    Value string
    The name of an entity to mask (e.g. a name of a header or a query parameter).
    Mode string | DataMaskingMode
    Data masking mode.
    Value string
    The name of an entity to mask (e.g. a name of a header or a query parameter).
    mode String | DataMaskingMode
    Data masking mode.
    value String
    The name of an entity to mask (e.g. a name of a header or a query parameter).
    mode string | DataMaskingMode
    Data masking mode.
    value string
    The name of an entity to mask (e.g. a name of a header or a query parameter).
    mode str | DataMaskingMode
    Data masking mode.
    value str
    The name of an entity to mask (e.g. a name of a header or a query parameter).
    mode String | "Mask" | "Hide"
    Data masking mode.
    value String
    The name of an entity to mask (e.g. a name of a header or a query parameter).

    DataMaskingEntityResponse, DataMaskingEntityResponseArgs

    Mode string
    Data masking mode.
    Value string
    The name of an entity to mask (e.g. a name of a header or a query parameter).
    Mode string
    Data masking mode.
    Value string
    The name of an entity to mask (e.g. a name of a header or a query parameter).
    mode String
    Data masking mode.
    value String
    The name of an entity to mask (e.g. a name of a header or a query parameter).
    mode string
    Data masking mode.
    value string
    The name of an entity to mask (e.g. a name of a header or a query parameter).
    mode str
    Data masking mode.
    value str
    The name of an entity to mask (e.g. a name of a header or a query parameter).
    mode String
    Data masking mode.
    value String
    The name of an entity to mask (e.g. a name of a header or a query parameter).

    DataMaskingMode, DataMaskingModeArgs

    Mask
    MaskMask the value of an entity.
    Hide
    HideHide the presence of an entity.
    DataMaskingModeMask
    MaskMask the value of an entity.
    DataMaskingModeHide
    HideHide the presence of an entity.
    Mask
    MaskMask the value of an entity.
    Hide
    HideHide the presence of an entity.
    Mask
    MaskMask the value of an entity.
    Hide
    HideHide the presence of an entity.
    MASK
    MaskMask the value of an entity.
    HIDE
    HideHide the presence of an entity.
    "Mask"
    MaskMask the value of an entity.
    "Hide"
    HideHide the presence of an entity.

    DataMaskingResponse, DataMaskingResponseArgs

    Headers []DataMaskingEntityResponse
    Masking settings for headers
    QueryParams []DataMaskingEntityResponse
    Masking settings for Url query parameters
    headers List<DataMaskingEntityResponse>
    Masking settings for headers
    queryParams List<DataMaskingEntityResponse>
    Masking settings for Url query parameters
    headers DataMaskingEntityResponse[]
    Masking settings for headers
    queryParams DataMaskingEntityResponse[]
    Masking settings for Url query parameters
    headers Sequence[DataMaskingEntityResponse]
    Masking settings for headers
    query_params Sequence[DataMaskingEntityResponse]
    Masking settings for Url query parameters
    headers List<Property Map>
    Masking settings for headers
    queryParams List<Property Map>
    Masking settings for Url query parameters

    HttpCorrelationProtocol, HttpCorrelationProtocolArgs

    None
    NoneDo not read and inject correlation headers.
    Legacy
    LegacyInject Request-Id and Request-Context headers with request correlation data. See https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/HttpCorrelationProtocol.md.
    W3C
    W3CInject Trace Context headers. See https://w3c.github.io/trace-context.
    HttpCorrelationProtocolNone
    NoneDo not read and inject correlation headers.
    HttpCorrelationProtocolLegacy
    LegacyInject Request-Id and Request-Context headers with request correlation data. See https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/HttpCorrelationProtocol.md.
    HttpCorrelationProtocolW3C
    W3CInject Trace Context headers. See https://w3c.github.io/trace-context.
    None
    NoneDo not read and inject correlation headers.
    Legacy
    LegacyInject Request-Id and Request-Context headers with request correlation data. See https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/HttpCorrelationProtocol.md.
    W3C
    W3CInject Trace Context headers. See https://w3c.github.io/trace-context.
    None
    NoneDo not read and inject correlation headers.
    Legacy
    LegacyInject Request-Id and Request-Context headers with request correlation data. See https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/HttpCorrelationProtocol.md.
    W3C
    W3CInject Trace Context headers. See https://w3c.github.io/trace-context.
    NONE
    NoneDo not read and inject correlation headers.
    LEGACY
    LegacyInject Request-Id and Request-Context headers with request correlation data. See https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/HttpCorrelationProtocol.md.
    W3_C
    W3CInject Trace Context headers. See https://w3c.github.io/trace-context.
    "None"
    NoneDo not read and inject correlation headers.
    "Legacy"
    LegacyInject Request-Id and Request-Context headers with request correlation data. See https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/HttpCorrelationProtocol.md.
    "W3C"
    W3CInject Trace Context headers. See https://w3c.github.io/trace-context.

    HttpMessageDiagnostic, HttpMessageDiagnosticArgs

    Body BodyDiagnosticSettings
    Body logging settings.
    DataMasking DataMasking
    Data masking settings.
    Headers []string
    Array of HTTP Headers to log.
    body BodyDiagnosticSettings
    Body logging settings.
    dataMasking DataMasking
    Data masking settings.
    headers List<String>
    Array of HTTP Headers to log.
    body BodyDiagnosticSettings
    Body logging settings.
    dataMasking DataMasking
    Data masking settings.
    headers string[]
    Array of HTTP Headers to log.
    body BodyDiagnosticSettings
    Body logging settings.
    data_masking DataMasking
    Data masking settings.
    headers Sequence[str]
    Array of HTTP Headers to log.
    body Property Map
    Body logging settings.
    dataMasking Property Map
    Data masking settings.
    headers List<String>
    Array of HTTP Headers to log.

    HttpMessageDiagnosticResponse, HttpMessageDiagnosticResponseArgs

    Body BodyDiagnosticSettingsResponse
    Body logging settings.
    DataMasking DataMaskingResponse
    Data masking settings.
    Headers []string
    Array of HTTP Headers to log.
    body BodyDiagnosticSettingsResponse
    Body logging settings.
    dataMasking DataMaskingResponse
    Data masking settings.
    headers List<String>
    Array of HTTP Headers to log.
    body BodyDiagnosticSettingsResponse
    Body logging settings.
    dataMasking DataMaskingResponse
    Data masking settings.
    headers string[]
    Array of HTTP Headers to log.
    body BodyDiagnosticSettingsResponse
    Body logging settings.
    data_masking DataMaskingResponse
    Data masking settings.
    headers Sequence[str]
    Array of HTTP Headers to log.
    body Property Map
    Body logging settings.
    dataMasking Property Map
    Data masking settings.
    headers List<String>
    Array of HTTP Headers to log.

    OperationNameFormat, OperationNameFormatArgs

    Name
    NameAPI_NAME;rev=API_REVISION - OPERATION_NAME
    Url
    UrlHTTP_VERB URL
    OperationNameFormatName
    NameAPI_NAME;rev=API_REVISION - OPERATION_NAME
    OperationNameFormatUrl
    UrlHTTP_VERB URL
    Name
    NameAPI_NAME;rev=API_REVISION - OPERATION_NAME
    Url
    UrlHTTP_VERB URL
    Name
    NameAPI_NAME;rev=API_REVISION - OPERATION_NAME
    Url
    UrlHTTP_VERB URL
    NAME
    NameAPI_NAME;rev=API_REVISION - OPERATION_NAME
    URL
    UrlHTTP_VERB URL
    "Name"
    NameAPI_NAME;rev=API_REVISION - OPERATION_NAME
    "Url"
    UrlHTTP_VERB URL

    PipelineDiagnosticSettings, PipelineDiagnosticSettingsArgs

    Request HttpMessageDiagnostic
    Diagnostic settings for request.
    Response HttpMessageDiagnostic
    Diagnostic settings for response.
    request HttpMessageDiagnostic
    Diagnostic settings for request.
    response HttpMessageDiagnostic
    Diagnostic settings for response.
    request HttpMessageDiagnostic
    Diagnostic settings for request.
    response HttpMessageDiagnostic
    Diagnostic settings for response.
    request HttpMessageDiagnostic
    Diagnostic settings for request.
    response HttpMessageDiagnostic
    Diagnostic settings for response.
    request Property Map
    Diagnostic settings for request.
    response Property Map
    Diagnostic settings for response.

    PipelineDiagnosticSettingsResponse, PipelineDiagnosticSettingsResponseArgs

    Request HttpMessageDiagnosticResponse
    Diagnostic settings for request.
    Response HttpMessageDiagnosticResponse
    Diagnostic settings for response.
    request HttpMessageDiagnosticResponse
    Diagnostic settings for request.
    response HttpMessageDiagnosticResponse
    Diagnostic settings for response.
    request HttpMessageDiagnosticResponse
    Diagnostic settings for request.
    response HttpMessageDiagnosticResponse
    Diagnostic settings for response.
    request HttpMessageDiagnosticResponse
    Diagnostic settings for request.
    response HttpMessageDiagnosticResponse
    Diagnostic settings for response.
    request Property Map
    Diagnostic settings for request.
    response Property Map
    Diagnostic settings for response.

    SamplingSettings, SamplingSettingsArgs

    Percentage double
    Rate of sampling for fixed-rate sampling.
    SamplingType string | Pulumi.AzureNative.ApiManagement.SamplingType
    Sampling type.
    Percentage float64
    Rate of sampling for fixed-rate sampling.
    SamplingType string | SamplingType
    Sampling type.
    percentage Double
    Rate of sampling for fixed-rate sampling.
    samplingType String | SamplingType
    Sampling type.
    percentage number
    Rate of sampling for fixed-rate sampling.
    samplingType string | SamplingType
    Sampling type.
    percentage float
    Rate of sampling for fixed-rate sampling.
    sampling_type str | SamplingType
    Sampling type.
    percentage Number
    Rate of sampling for fixed-rate sampling.
    samplingType String | "fixed"
    Sampling type.

    SamplingSettingsResponse, SamplingSettingsResponseArgs

    Percentage double
    Rate of sampling for fixed-rate sampling.
    SamplingType string
    Sampling type.
    Percentage float64
    Rate of sampling for fixed-rate sampling.
    SamplingType string
    Sampling type.
    percentage Double
    Rate of sampling for fixed-rate sampling.
    samplingType String
    Sampling type.
    percentage number
    Rate of sampling for fixed-rate sampling.
    samplingType string
    Sampling type.
    percentage float
    Rate of sampling for fixed-rate sampling.
    sampling_type str
    Sampling type.
    percentage Number
    Rate of sampling for fixed-rate sampling.
    samplingType String
    Sampling type.

    SamplingType, SamplingTypeArgs

    @Fixed
    fixedFixed-rate sampling.
    SamplingTypeFixed
    fixedFixed-rate sampling.
    Fixed
    fixedFixed-rate sampling.
    Fixed
    fixedFixed-rate sampling.
    FIXED
    fixedFixed-rate sampling.
    "fixed"
    fixedFixed-rate sampling.

    Verbosity, VerbosityArgs

    Verbose
    verboseAll the traces emitted by trace policies will be sent to the logger attached to this diagnostic instance.
    Information
    informationTraces with 'severity' set to 'information' and 'error' will be sent to the logger attached to this diagnostic instance.
    Error
    errorOnly traces with 'severity' set to 'error' will be sent to the logger attached to this diagnostic instance.
    VerbosityVerbose
    verboseAll the traces emitted by trace policies will be sent to the logger attached to this diagnostic instance.
    VerbosityInformation
    informationTraces with 'severity' set to 'information' and 'error' will be sent to the logger attached to this diagnostic instance.
    VerbosityError
    errorOnly traces with 'severity' set to 'error' will be sent to the logger attached to this diagnostic instance.
    Verbose
    verboseAll the traces emitted by trace policies will be sent to the logger attached to this diagnostic instance.
    Information
    informationTraces with 'severity' set to 'information' and 'error' will be sent to the logger attached to this diagnostic instance.
    Error
    errorOnly traces with 'severity' set to 'error' will be sent to the logger attached to this diagnostic instance.
    Verbose
    verboseAll the traces emitted by trace policies will be sent to the logger attached to this diagnostic instance.
    Information
    informationTraces with 'severity' set to 'information' and 'error' will be sent to the logger attached to this diagnostic instance.
    Error
    errorOnly traces with 'severity' set to 'error' will be sent to the logger attached to this diagnostic instance.
    VERBOSE
    verboseAll the traces emitted by trace policies will be sent to the logger attached to this diagnostic instance.
    INFORMATION
    informationTraces with 'severity' set to 'information' and 'error' will be sent to the logger attached to this diagnostic instance.
    ERROR
    errorOnly traces with 'severity' set to 'error' will be sent to the logger attached to this diagnostic instance.
    "verbose"
    verboseAll the traces emitted by trace policies will be sent to the logger attached to this diagnostic instance.
    "information"
    informationTraces with 'severity' set to 'information' and 'error' will be sent to the logger attached to this diagnostic instance.
    "error"
    errorOnly traces with 'severity' set to 'error' will be sent to the logger attached to this diagnostic instance.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:apimanagement:Diagnostic applicationinsights /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/diagnostics/{diagnosticId} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi