azure-native.apimanagement.WorkspaceDiagnostic
Explore with Pulumi AI
Diagnostic details. Azure REST API version: 2023-09-01-preview.
Other available API versions: 2024-05-01.
Example Usage
ApiManagementCreateWorkspaceDiagnostic
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var workspaceDiagnostic = new AzureNative.ApiManagement.WorkspaceDiagnostic("workspaceDiagnostic", 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 = "/workspaces/wks1/loggers/azuremonitor",
ResourceGroupName = "rg1",
Sampling = new AzureNative.ApiManagement.Inputs.SamplingSettingsArgs
{
Percentage = 50,
SamplingType = AzureNative.ApiManagement.SamplingType.@Fixed,
},
ServiceName = "apimService1",
WorkspaceId = "wks1",
});
});
package main
import (
apimanagement "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.NewWorkspaceDiagnostic(ctx, "workspaceDiagnostic", &apimanagement.WorkspaceDiagnosticArgs{
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("/workspaces/wks1/loggers/azuremonitor"),
ResourceGroupName: pulumi.String("rg1"),
Sampling: &apimanagement.SamplingSettingsArgs{
Percentage: pulumi.Float64(50),
SamplingType: pulumi.String(apimanagement.SamplingTypeFixed),
},
ServiceName: pulumi.String("apimService1"),
WorkspaceId: pulumi.String("wks1"),
})
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.WorkspaceDiagnostic;
import com.pulumi.azurenative.apimanagement.WorkspaceDiagnosticArgs;
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 workspaceDiagnostic = new WorkspaceDiagnostic("workspaceDiagnostic", WorkspaceDiagnosticArgs.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("/workspaces/wks1/loggers/azuremonitor")
.resourceGroupName("rg1")
.sampling(SamplingSettingsArgs.builder()
.percentage(50)
.samplingType("fixed")
.build())
.serviceName("apimService1")
.workspaceId("wks1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
workspace_diagnostic = azure_native.apimanagement.WorkspaceDiagnostic("workspaceDiagnostic",
always_log=azure_native.apimanagement.AlwaysLog.ALL_ERRORS,
backend={
"request": {
"body": {
"bytes": 512,
},
"headers": ["Content-type"],
},
"response": {
"body": {
"bytes": 512,
},
"headers": ["Content-type"],
},
},
diagnostic_id="applicationinsights",
frontend={
"request": {
"body": {
"bytes": 512,
},
"headers": ["Content-type"],
},
"response": {
"body": {
"bytes": 512,
},
"headers": ["Content-type"],
},
},
logger_id="/workspaces/wks1/loggers/azuremonitor",
resource_group_name="rg1",
sampling={
"percentage": 50,
"sampling_type": azure_native.apimanagement.SamplingType.FIXED,
},
service_name="apimService1",
workspace_id="wks1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const workspaceDiagnostic = new azure_native.apimanagement.WorkspaceDiagnostic("workspaceDiagnostic", {
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: "/workspaces/wks1/loggers/azuremonitor",
resourceGroupName: "rg1",
sampling: {
percentage: 50,
samplingType: azure_native.apimanagement.SamplingType.Fixed,
},
serviceName: "apimService1",
workspaceId: "wks1",
});
resources:
workspaceDiagnostic:
type: azure-native:apimanagement:WorkspaceDiagnostic
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: /workspaces/wks1/loggers/azuremonitor
resourceGroupName: rg1
sampling:
percentage: 50
samplingType: fixed
serviceName: apimService1
workspaceId: wks1
Create WorkspaceDiagnostic Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkspaceDiagnostic(name: string, args: WorkspaceDiagnosticArgs, opts?: CustomResourceOptions);
@overload
def WorkspaceDiagnostic(resource_name: str,
args: WorkspaceDiagnosticArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkspaceDiagnostic(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
logger_id: Optional[str] = None,
workspace_id: Optional[str] = None,
service_name: Optional[str] = None,
http_correlation_protocol: Optional[Union[str, HttpCorrelationProtocol]] = None,
log_client_ip: Optional[bool] = None,
backend: Optional[PipelineDiagnosticSettingsArgs] = None,
metrics: Optional[bool] = None,
sampling: Optional[SamplingSettingsArgs] = None,
always_log: Optional[Union[str, AlwaysLog]] = None,
operation_name_format: Optional[Union[str, OperationNameFormat]] = None,
frontend: Optional[PipelineDiagnosticSettingsArgs] = None,
verbosity: Optional[Union[str, Verbosity]] = None,
diagnostic_id: Optional[str] = None)
func NewWorkspaceDiagnostic(ctx *Context, name string, args WorkspaceDiagnosticArgs, opts ...ResourceOption) (*WorkspaceDiagnostic, error)
public WorkspaceDiagnostic(string name, WorkspaceDiagnosticArgs args, CustomResourceOptions? opts = null)
public WorkspaceDiagnostic(String name, WorkspaceDiagnosticArgs args)
public WorkspaceDiagnostic(String name, WorkspaceDiagnosticArgs args, CustomResourceOptions options)
type: azure-native:apimanagement:WorkspaceDiagnostic
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args WorkspaceDiagnosticArgs
- 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 WorkspaceDiagnosticArgs
- 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 WorkspaceDiagnosticArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceDiagnosticArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspaceDiagnosticArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var workspaceDiagnosticResource = new AzureNative.ApiManagement.WorkspaceDiagnostic("workspaceDiagnosticResource", new()
{
ResourceGroupName = "string",
LoggerId = "string",
WorkspaceId = "string",
ServiceName = "string",
HttpCorrelationProtocol = "string",
LogClientIp = false,
Backend = new AzureNative.ApiManagement.Inputs.PipelineDiagnosticSettingsArgs
{
Request = new AzureNative.ApiManagement.Inputs.HttpMessageDiagnosticArgs
{
Body = new AzureNative.ApiManagement.Inputs.BodyDiagnosticSettingsArgs
{
Bytes = 0,
},
DataMasking = new AzureNative.ApiManagement.Inputs.DataMaskingArgs
{
Headers = new[]
{
new AzureNative.ApiManagement.Inputs.DataMaskingEntityArgs
{
Mode = "string",
Value = "string",
},
},
QueryParams = new[]
{
new AzureNative.ApiManagement.Inputs.DataMaskingEntityArgs
{
Mode = "string",
Value = "string",
},
},
},
Headers = new[]
{
"string",
},
},
Response = new AzureNative.ApiManagement.Inputs.HttpMessageDiagnosticArgs
{
Body = new AzureNative.ApiManagement.Inputs.BodyDiagnosticSettingsArgs
{
Bytes = 0,
},
DataMasking = new AzureNative.ApiManagement.Inputs.DataMaskingArgs
{
Headers = new[]
{
new AzureNative.ApiManagement.Inputs.DataMaskingEntityArgs
{
Mode = "string",
Value = "string",
},
},
QueryParams = new[]
{
new AzureNative.ApiManagement.Inputs.DataMaskingEntityArgs
{
Mode = "string",
Value = "string",
},
},
},
Headers = new[]
{
"string",
},
},
},
Metrics = false,
Sampling = new AzureNative.ApiManagement.Inputs.SamplingSettingsArgs
{
Percentage = 0,
SamplingType = "string",
},
AlwaysLog = "string",
OperationNameFormat = "string",
Frontend = new AzureNative.ApiManagement.Inputs.PipelineDiagnosticSettingsArgs
{
Request = new AzureNative.ApiManagement.Inputs.HttpMessageDiagnosticArgs
{
Body = new AzureNative.ApiManagement.Inputs.BodyDiagnosticSettingsArgs
{
Bytes = 0,
},
DataMasking = new AzureNative.ApiManagement.Inputs.DataMaskingArgs
{
Headers = new[]
{
new AzureNative.ApiManagement.Inputs.DataMaskingEntityArgs
{
Mode = "string",
Value = "string",
},
},
QueryParams = new[]
{
new AzureNative.ApiManagement.Inputs.DataMaskingEntityArgs
{
Mode = "string",
Value = "string",
},
},
},
Headers = new[]
{
"string",
},
},
Response = new AzureNative.ApiManagement.Inputs.HttpMessageDiagnosticArgs
{
Body = new AzureNative.ApiManagement.Inputs.BodyDiagnosticSettingsArgs
{
Bytes = 0,
},
DataMasking = new AzureNative.ApiManagement.Inputs.DataMaskingArgs
{
Headers = new[]
{
new AzureNative.ApiManagement.Inputs.DataMaskingEntityArgs
{
Mode = "string",
Value = "string",
},
},
QueryParams = new[]
{
new AzureNative.ApiManagement.Inputs.DataMaskingEntityArgs
{
Mode = "string",
Value = "string",
},
},
},
Headers = new[]
{
"string",
},
},
},
Verbosity = "string",
DiagnosticId = "string",
});
example, err := apimanagement.NewWorkspaceDiagnostic(ctx, "workspaceDiagnosticResource", &apimanagement.WorkspaceDiagnosticArgs{
ResourceGroupName: pulumi.String("string"),
LoggerId: pulumi.String("string"),
WorkspaceId: pulumi.String("string"),
ServiceName: pulumi.String("string"),
HttpCorrelationProtocol: pulumi.String("string"),
LogClientIp: pulumi.Bool(false),
Backend: &apimanagement.PipelineDiagnosticSettingsArgs{
Request: &apimanagement.HttpMessageDiagnosticArgs{
Body: &apimanagement.BodyDiagnosticSettingsArgs{
Bytes: pulumi.Int(0),
},
DataMasking: &apimanagement.DataMaskingArgs{
Headers: apimanagement.DataMaskingEntityArray{
&apimanagement.DataMaskingEntityArgs{
Mode: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
QueryParams: apimanagement.DataMaskingEntityArray{
&apimanagement.DataMaskingEntityArgs{
Mode: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
Headers: pulumi.StringArray{
pulumi.String("string"),
},
},
Response: &apimanagement.HttpMessageDiagnosticArgs{
Body: &apimanagement.BodyDiagnosticSettingsArgs{
Bytes: pulumi.Int(0),
},
DataMasking: &apimanagement.DataMaskingArgs{
Headers: apimanagement.DataMaskingEntityArray{
&apimanagement.DataMaskingEntityArgs{
Mode: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
QueryParams: apimanagement.DataMaskingEntityArray{
&apimanagement.DataMaskingEntityArgs{
Mode: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
Headers: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Metrics: pulumi.Bool(false),
Sampling: &apimanagement.SamplingSettingsArgs{
Percentage: pulumi.Float64(0),
SamplingType: pulumi.String("string"),
},
AlwaysLog: pulumi.String("string"),
OperationNameFormat: pulumi.String("string"),
Frontend: &apimanagement.PipelineDiagnosticSettingsArgs{
Request: &apimanagement.HttpMessageDiagnosticArgs{
Body: &apimanagement.BodyDiagnosticSettingsArgs{
Bytes: pulumi.Int(0),
},
DataMasking: &apimanagement.DataMaskingArgs{
Headers: apimanagement.DataMaskingEntityArray{
&apimanagement.DataMaskingEntityArgs{
Mode: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
QueryParams: apimanagement.DataMaskingEntityArray{
&apimanagement.DataMaskingEntityArgs{
Mode: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
Headers: pulumi.StringArray{
pulumi.String("string"),
},
},
Response: &apimanagement.HttpMessageDiagnosticArgs{
Body: &apimanagement.BodyDiagnosticSettingsArgs{
Bytes: pulumi.Int(0),
},
DataMasking: &apimanagement.DataMaskingArgs{
Headers: apimanagement.DataMaskingEntityArray{
&apimanagement.DataMaskingEntityArgs{
Mode: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
QueryParams: apimanagement.DataMaskingEntityArray{
&apimanagement.DataMaskingEntityArgs{
Mode: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
Headers: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Verbosity: pulumi.String("string"),
DiagnosticId: pulumi.String("string"),
})
var workspaceDiagnosticResource = new WorkspaceDiagnostic("workspaceDiagnosticResource", WorkspaceDiagnosticArgs.builder()
.resourceGroupName("string")
.loggerId("string")
.workspaceId("string")
.serviceName("string")
.httpCorrelationProtocol("string")
.logClientIp(false)
.backend(PipelineDiagnosticSettingsArgs.builder()
.request(HttpMessageDiagnosticArgs.builder()
.body(BodyDiagnosticSettingsArgs.builder()
.bytes(0)
.build())
.dataMasking(DataMaskingArgs.builder()
.headers(DataMaskingEntityArgs.builder()
.mode("string")
.value("string")
.build())
.queryParams(DataMaskingEntityArgs.builder()
.mode("string")
.value("string")
.build())
.build())
.headers("string")
.build())
.response(HttpMessageDiagnosticArgs.builder()
.body(BodyDiagnosticSettingsArgs.builder()
.bytes(0)
.build())
.dataMasking(DataMaskingArgs.builder()
.headers(DataMaskingEntityArgs.builder()
.mode("string")
.value("string")
.build())
.queryParams(DataMaskingEntityArgs.builder()
.mode("string")
.value("string")
.build())
.build())
.headers("string")
.build())
.build())
.metrics(false)
.sampling(SamplingSettingsArgs.builder()
.percentage(0)
.samplingType("string")
.build())
.alwaysLog("string")
.operationNameFormat("string")
.frontend(PipelineDiagnosticSettingsArgs.builder()
.request(HttpMessageDiagnosticArgs.builder()
.body(BodyDiagnosticSettingsArgs.builder()
.bytes(0)
.build())
.dataMasking(DataMaskingArgs.builder()
.headers(DataMaskingEntityArgs.builder()
.mode("string")
.value("string")
.build())
.queryParams(DataMaskingEntityArgs.builder()
.mode("string")
.value("string")
.build())
.build())
.headers("string")
.build())
.response(HttpMessageDiagnosticArgs.builder()
.body(BodyDiagnosticSettingsArgs.builder()
.bytes(0)
.build())
.dataMasking(DataMaskingArgs.builder()
.headers(DataMaskingEntityArgs.builder()
.mode("string")
.value("string")
.build())
.queryParams(DataMaskingEntityArgs.builder()
.mode("string")
.value("string")
.build())
.build())
.headers("string")
.build())
.build())
.verbosity("string")
.diagnosticId("string")
.build());
workspace_diagnostic_resource = azure_native.apimanagement.WorkspaceDiagnostic("workspaceDiagnosticResource",
resource_group_name="string",
logger_id="string",
workspace_id="string",
service_name="string",
http_correlation_protocol="string",
log_client_ip=False,
backend={
"request": {
"body": {
"bytes": 0,
},
"dataMasking": {
"headers": [{
"mode": "string",
"value": "string",
}],
"queryParams": [{
"mode": "string",
"value": "string",
}],
},
"headers": ["string"],
},
"response": {
"body": {
"bytes": 0,
},
"dataMasking": {
"headers": [{
"mode": "string",
"value": "string",
}],
"queryParams": [{
"mode": "string",
"value": "string",
}],
},
"headers": ["string"],
},
},
metrics=False,
sampling={
"percentage": 0,
"samplingType": "string",
},
always_log="string",
operation_name_format="string",
frontend={
"request": {
"body": {
"bytes": 0,
},
"dataMasking": {
"headers": [{
"mode": "string",
"value": "string",
}],
"queryParams": [{
"mode": "string",
"value": "string",
}],
},
"headers": ["string"],
},
"response": {
"body": {
"bytes": 0,
},
"dataMasking": {
"headers": [{
"mode": "string",
"value": "string",
}],
"queryParams": [{
"mode": "string",
"value": "string",
}],
},
"headers": ["string"],
},
},
verbosity="string",
diagnostic_id="string")
const workspaceDiagnosticResource = new azure_native.apimanagement.WorkspaceDiagnostic("workspaceDiagnosticResource", {
resourceGroupName: "string",
loggerId: "string",
workspaceId: "string",
serviceName: "string",
httpCorrelationProtocol: "string",
logClientIp: false,
backend: {
request: {
body: {
bytes: 0,
},
dataMasking: {
headers: [{
mode: "string",
value: "string",
}],
queryParams: [{
mode: "string",
value: "string",
}],
},
headers: ["string"],
},
response: {
body: {
bytes: 0,
},
dataMasking: {
headers: [{
mode: "string",
value: "string",
}],
queryParams: [{
mode: "string",
value: "string",
}],
},
headers: ["string"],
},
},
metrics: false,
sampling: {
percentage: 0,
samplingType: "string",
},
alwaysLog: "string",
operationNameFormat: "string",
frontend: {
request: {
body: {
bytes: 0,
},
dataMasking: {
headers: [{
mode: "string",
value: "string",
}],
queryParams: [{
mode: "string",
value: "string",
}],
},
headers: ["string"],
},
response: {
body: {
bytes: 0,
},
dataMasking: {
headers: [{
mode: "string",
value: "string",
}],
queryParams: [{
mode: "string",
value: "string",
}],
},
headers: ["string"],
},
},
verbosity: "string",
diagnosticId: "string",
});
type: azure-native:apimanagement:WorkspaceDiagnostic
properties:
alwaysLog: string
backend:
request:
body:
bytes: 0
dataMasking:
headers:
- mode: string
value: string
queryParams:
- mode: string
value: string
headers:
- string
response:
body:
bytes: 0
dataMasking:
headers:
- mode: string
value: string
queryParams:
- mode: string
value: string
headers:
- string
diagnosticId: string
frontend:
request:
body:
bytes: 0
dataMasking:
headers:
- mode: string
value: string
queryParams:
- mode: string
value: string
headers:
- string
response:
body:
bytes: 0
dataMasking:
headers:
- mode: string
value: string
queryParams:
- mode: string
value: string
headers:
- string
httpCorrelationProtocol: string
logClientIp: false
loggerId: string
metrics: false
operationNameFormat: string
resourceGroupName: string
sampling:
percentage: 0
samplingType: string
serviceName: string
verbosity: string
workspaceId: string
WorkspaceDiagnostic 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 WorkspaceDiagnostic resource accepts the following input properties:
- Logger
Id string - Resource Id of a target logger.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Service
Name string - The name of the API Management service.
- Workspace
Id string - Workspace identifier. Must be unique in the current API Management service instance.
- Always
Log string | Pulumi.Azure Native. Api Management. Always Log - Specifies for what type of messages sampling settings should not apply.
- Backend
Pulumi.
Azure Native. Api Management. Inputs. Pipeline Diagnostic Settings - Diagnostic settings for incoming/outgoing HTTP messages to the Backend
- Diagnostic
Id string - Diagnostic identifier. Must be unique in the current API Management service instance.
- Frontend
Pulumi.
Azure Native. Api Management. Inputs. Pipeline Diagnostic Settings - Diagnostic settings for incoming/outgoing HTTP messages to the Gateway.
- Http
Correlation string | Pulumi.Protocol Azure Native. Api Management. Http Correlation Protocol - Sets correlation protocol to use for Application Insights diagnostics.
- Log
Client boolIp - Log the ClientIP. Default is false.
- Metrics bool
- Emit custom metrics via emit-metric policy. Applicable only to Application Insights diagnostic settings.
- Operation
Name string | Pulumi.Format Azure Native. Api Management. Operation Name Format - The format of the Operation Name for Application Insights telemetries. Default is Name.
- Sampling
Pulumi.
Azure Native. Api Management. Inputs. Sampling Settings - Sampling settings for Diagnostic.
- Verbosity
string | Pulumi.
Azure Native. Api Management. Verbosity - The verbosity level applied to traces emitted by trace policies.
- Logger
Id string - Resource Id of a target logger.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Service
Name string - The name of the API Management service.
- Workspace
Id string - Workspace identifier. Must be unique in the current API Management service instance.
- Always
Log string | AlwaysLog - Specifies for what type of messages sampling settings should not apply.
- Backend
Pipeline
Diagnostic Settings Args - Diagnostic settings for incoming/outgoing HTTP messages to the Backend
- Diagnostic
Id string - Diagnostic identifier. Must be unique in the current API Management service instance.
- Frontend
Pipeline
Diagnostic Settings Args - Diagnostic settings for incoming/outgoing HTTP messages to the Gateway.
- Http
Correlation string | HttpProtocol Correlation Protocol - Sets correlation protocol to use for Application Insights diagnostics.
- Log
Client boolIp - Log the ClientIP. Default is false.
- Metrics bool
- Emit custom metrics via emit-metric policy. Applicable only to Application Insights diagnostic settings.
- Operation
Name string | OperationFormat Name Format - The format of the Operation Name for Application Insights telemetries. Default is Name.
- Sampling
Sampling
Settings Args - Sampling settings for Diagnostic.
- Verbosity string | Verbosity
- The verbosity level applied to traces emitted by trace policies.
- logger
Id String - Resource Id of a target logger.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- service
Name String - The name of the API Management service.
- workspace
Id String - Workspace identifier. Must be unique in the current API Management service instance.
- always
Log String | AlwaysLog - Specifies for what type of messages sampling settings should not apply.
- backend
Pipeline
Diagnostic Settings - Diagnostic settings for incoming/outgoing HTTP messages to the Backend
- diagnostic
Id String - Diagnostic identifier. Must be unique in the current API Management service instance.
- frontend
Pipeline
Diagnostic Settings - Diagnostic settings for incoming/outgoing HTTP messages to the Gateway.
- http
Correlation String | HttpProtocol Correlation Protocol - Sets correlation protocol to use for Application Insights diagnostics.
- log
Client BooleanIp - Log the ClientIP. Default is false.
- metrics Boolean
- Emit custom metrics via emit-metric policy. Applicable only to Application Insights diagnostic settings.
- operation
Name String | OperationFormat Name Format - The format of the Operation Name for Application Insights telemetries. Default is Name.
- sampling
Sampling
Settings - Sampling settings for Diagnostic.
- verbosity String | Verbosity
- The verbosity level applied to traces emitted by trace policies.
- logger
Id string - Resource Id of a target logger.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- service
Name string - The name of the API Management service.
- workspace
Id string - Workspace identifier. Must be unique in the current API Management service instance.
- always
Log string | AlwaysLog - Specifies for what type of messages sampling settings should not apply.
- backend
Pipeline
Diagnostic Settings - Diagnostic settings for incoming/outgoing HTTP messages to the Backend
- diagnostic
Id string - Diagnostic identifier. Must be unique in the current API Management service instance.
- frontend
Pipeline
Diagnostic Settings - Diagnostic settings for incoming/outgoing HTTP messages to the Gateway.
- http
Correlation string | HttpProtocol Correlation Protocol - Sets correlation protocol to use for Application Insights diagnostics.
- log
Client booleanIp - Log the ClientIP. Default is false.
- metrics boolean
- Emit custom metrics via emit-metric policy. Applicable only to Application Insights diagnostic settings.
- operation
Name string | OperationFormat Name Format - The format of the Operation Name for Application Insights telemetries. Default is Name.
- sampling
Sampling
Settings - 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_ strname - The name of the resource group. The name is case insensitive.
- service_
name str - The name of the API Management service.
- workspace_
id str - Workspace identifier. Must be unique in the current API Management service instance.
- always_
log str | AlwaysLog - Specifies for what type of messages sampling settings should not apply.
- backend
Pipeline
Diagnostic Settings Args - 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
Pipeline
Diagnostic Settings Args - Diagnostic settings for incoming/outgoing HTTP messages to the Gateway.
- http_
correlation_ str | Httpprotocol Correlation Protocol - Sets correlation protocol to use for Application Insights diagnostics.
- log_
client_ boolip - Log the ClientIP. Default is false.
- metrics bool
- Emit custom metrics via emit-metric policy. Applicable only to Application Insights diagnostic settings.
- operation_
name_ str | Operationformat Name Format - The format of the Operation Name for Application Insights telemetries. Default is Name.
- sampling
Sampling
Settings Args - Sampling settings for Diagnostic.
- verbosity str | Verbosity
- The verbosity level applied to traces emitted by trace policies.
- logger
Id String - Resource Id of a target logger.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- service
Name String - The name of the API Management service.
- workspace
Id String - Workspace identifier. Must be unique in the current API Management service instance.
- always
Log 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
- diagnostic
Id 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.
- http
Correlation String | "None" | "Legacy" | "W3C"Protocol - Sets correlation protocol to use for Application Insights diagnostics.
- log
Client BooleanIp - Log the ClientIP. Default is false.
- metrics Boolean
- Emit custom metrics via emit-metric policy. Applicable only to Application Insights diagnostic settings.
- operation
Name String | "Name" | "Url"Format - 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 WorkspaceDiagnostic resource produces the following output properties:
Supporting Types
AlwaysLog, AlwaysLogArgs
- All
Errors - allErrorsAlways log all erroneous request regardless of sampling settings.
- Always
Log All Errors - allErrorsAlways log all erroneous request regardless of sampling settings.
- All
Errors - allErrorsAlways log all erroneous request regardless of sampling settings.
- All
Errors - allErrorsAlways log all erroneous request regardless of sampling settings.
- ALL_ERRORS
- allErrorsAlways log all erroneous request regardless of sampling settings.
- "all
Errors" - 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
List<Pulumi.
Azure Native. Api Management. Inputs. Data Masking Entity> - Masking settings for headers
- Query
Params List<Pulumi.Azure Native. Api Management. Inputs. Data Masking Entity> - Masking settings for Url query parameters
- Headers
[]Data
Masking Entity - Masking settings for headers
- Query
Params []DataMasking Entity - Masking settings for Url query parameters
- headers
List<Data
Masking Entity> - Masking settings for headers
- query
Params List<DataMasking Entity> - Masking settings for Url query parameters
- headers
Data
Masking Entity[] - Masking settings for headers
- query
Params DataMasking Entity[] - Masking settings for Url query parameters
- headers
Sequence[Data
Masking Entity] - Masking settings for headers
- query_
params Sequence[DataMasking Entity] - Masking settings for Url query parameters
- headers List<Property Map>
- Masking settings for headers
- query
Params List<Property Map> - Masking settings for Url query parameters
DataMaskingEntity, DataMaskingEntityArgs
- Mode
string | Pulumi.
Azure Native. Api Management. Data Masking Mode - 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 - 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 - 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 - 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 - 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
DataMaskingMode, DataMaskingModeArgs
- Mask
- MaskMask the value of an entity.
- Hide
- HideHide the presence of an entity.
- Data
Masking Mode Mask - MaskMask the value of an entity.
- Data
Masking Mode 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.
- "Mask"
- MaskMask the value of an entity.
- "Hide"
- HideHide the presence of an entity.
DataMaskingResponse, DataMaskingResponseArgs
- Headers
List<Pulumi.
Azure Native. Api Management. Inputs. Data Masking Entity Response> - Masking settings for headers
- Query
Params List<Pulumi.Azure Native. Api Management. Inputs. Data Masking Entity Response> - Masking settings for Url query parameters
- Headers
[]Data
Masking Entity Response - Masking settings for headers
- Query
Params []DataMasking Entity Response - Masking settings for Url query parameters
- headers
List<Data
Masking Entity Response> - Masking settings for headers
- query
Params List<DataMasking Entity Response> - Masking settings for Url query parameters
- headers
Data
Masking Entity Response[] - Masking settings for headers
- query
Params DataMasking Entity Response[] - Masking settings for Url query parameters
- headers
Sequence[Data
Masking Entity Response] - Masking settings for headers
- query_
params Sequence[DataMasking Entity Response] - Masking settings for Url query parameters
- headers List<Property Map>
- Masking settings for headers
- query
Params 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.
- Http
Correlation Protocol None - NoneDo not read and inject correlation headers.
- Http
Correlation Protocol 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.
- Http
Correlation Protocol 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.
- 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
Pulumi.
Azure Native. Api Management. Inputs. Body Diagnostic Settings - Body logging settings.
- Data
Masking Pulumi.Azure Native. Api Management. Inputs. Data Masking - Data masking settings.
- Headers List<string>
- Array of HTTP Headers to log.
- Body
Body
Diagnostic Settings - Body logging settings.
- Data
Masking DataMasking - Data masking settings.
- Headers []string
- Array of HTTP Headers to log.
- body
Body
Diagnostic Settings - Body logging settings.
- data
Masking DataMasking - Data masking settings.
- headers List<String>
- Array of HTTP Headers to log.
- body
Body
Diagnostic Settings - Body logging settings.
- data
Masking DataMasking - Data masking settings.
- headers string[]
- Array of HTTP Headers to log.
- body
Body
Diagnostic Settings - Body logging settings.
- data_
masking DataMasking - Data masking settings.
- headers Sequence[str]
- Array of HTTP Headers to log.
- body Property Map
- Body logging settings.
- data
Masking Property Map - Data masking settings.
- headers List<String>
- Array of HTTP Headers to log.
HttpMessageDiagnosticResponse, HttpMessageDiagnosticResponseArgs
- Body
Pulumi.
Azure Native. Api Management. Inputs. Body Diagnostic Settings Response - Body logging settings.
- Data
Masking Pulumi.Azure Native. Api Management. Inputs. Data Masking Response - Data masking settings.
- Headers List<string>
- Array of HTTP Headers to log.
- Body
Body
Diagnostic Settings Response - Body logging settings.
- Data
Masking DataMasking Response - Data masking settings.
- Headers []string
- Array of HTTP Headers to log.
- body
Body
Diagnostic Settings Response - Body logging settings.
- data
Masking DataMasking Response - Data masking settings.
- headers List<String>
- Array of HTTP Headers to log.
- body
Body
Diagnostic Settings Response - Body logging settings.
- data
Masking DataMasking Response - Data masking settings.
- headers string[]
- Array of HTTP Headers to log.
- body
Body
Diagnostic Settings Response - Body logging settings.
- data_
masking DataMasking Response - Data masking settings.
- headers Sequence[str]
- Array of HTTP Headers to log.
- body Property Map
- Body logging settings.
- data
Masking 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
- Operation
Name Format Name - NameAPI_NAME;rev=API_REVISION - OPERATION_NAME
- Operation
Name Format 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
- "Name"
- NameAPI_NAME;rev=API_REVISION - OPERATION_NAME
- "Url"
- UrlHTTP_VERB URL
PipelineDiagnosticSettings, PipelineDiagnosticSettingsArgs
- Request
Pulumi.
Azure Native. Api Management. Inputs. Http Message Diagnostic - Diagnostic settings for request.
- Response
Pulumi.
Azure Native. Api Management. Inputs. Http Message Diagnostic - Diagnostic settings for response.
- Request
Http
Message Diagnostic - Diagnostic settings for request.
- Response
Http
Message Diagnostic - Diagnostic settings for response.
- request
Http
Message Diagnostic - Diagnostic settings for request.
- response
Http
Message Diagnostic - Diagnostic settings for response.
- request
Http
Message Diagnostic - Diagnostic settings for request.
- response
Http
Message Diagnostic - Diagnostic settings for response.
- request
Http
Message Diagnostic - Diagnostic settings for request.
- response
Http
Message Diagnostic - Diagnostic settings for response.
- request Property Map
- Diagnostic settings for request.
- response Property Map
- Diagnostic settings for response.
PipelineDiagnosticSettingsResponse, PipelineDiagnosticSettingsResponseArgs
- Request
Pulumi.
Azure Native. Api Management. Inputs. Http Message Diagnostic Response - Diagnostic settings for request.
- Response
Pulumi.
Azure Native. Api Management. Inputs. Http Message Diagnostic Response - Diagnostic settings for response.
- Request
Http
Message Diagnostic Response - Diagnostic settings for request.
- Response
Http
Message Diagnostic Response - Diagnostic settings for response.
- request
Http
Message Diagnostic Response - Diagnostic settings for request.
- response
Http
Message Diagnostic Response - Diagnostic settings for response.
- request
Http
Message Diagnostic Response - Diagnostic settings for request.
- response
Http
Message Diagnostic Response - Diagnostic settings for response.
- request
Http
Message Diagnostic Response - Diagnostic settings for request.
- response
Http
Message Diagnostic Response - 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.
- Sampling
Type string | Pulumi.Azure Native. Api Management. Sampling Type - Sampling type.
- Percentage float64
- Rate of sampling for fixed-rate sampling.
- Sampling
Type string | SamplingType - Sampling type.
- percentage Double
- Rate of sampling for fixed-rate sampling.
- sampling
Type String | SamplingType - Sampling type.
- percentage number
- Rate of sampling for fixed-rate sampling.
- sampling
Type 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.
- sampling
Type String | "fixed" - Sampling type.
SamplingSettingsResponse, SamplingSettingsResponseArgs
- Percentage double
- Rate of sampling for fixed-rate sampling.
- Sampling
Type string - Sampling type.
- Percentage float64
- Rate of sampling for fixed-rate sampling.
- Sampling
Type string - Sampling type.
- percentage Double
- Rate of sampling for fixed-rate sampling.
- sampling
Type String - Sampling type.
- percentage number
- Rate of sampling for fixed-rate sampling.
- sampling
Type 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.
- sampling
Type String - Sampling type.
SamplingType, SamplingTypeArgs
- @Fixed
- fixedFixed-rate sampling.
- Sampling
Type Fixed - 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.
- Verbosity
Verbose - verboseAll the traces emitted by trace policies will be sent to the logger attached to this diagnostic instance.
- Verbosity
Information - informationTraces with 'severity' set to 'information' and 'error' will be sent to the logger attached to this diagnostic instance.
- Verbosity
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.
- "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:WorkspaceDiagnostic applicationinsights /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/workspaces/{workspaceId}/diagnostics/{diagnosticId}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0