다음을 통해 공유


Microsoft.EventGrid eventSubscriptions

Bicep 리소스 정의

eventSubscriptions 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그참조하세요.

리소스 형식

Microsoft.EventGrid/eventSubscriptions 리소스를 만들려면 템플릿에 다음 Bicep을 추가합니다.

resource symbolicname 'Microsoft.EventGrid/eventSubscriptions@2024-12-15-preview' = {
  scope: resourceSymbolicName or scope
  name: 'string'
  properties: {
    deadLetterDestination: {
      endpointType: 'string'
      // For remaining properties, see DeadLetterDestination objects
    }
    deadLetterWithResourceIdentity: {
      deadLetterDestination: {
        endpointType: 'string'
        // For remaining properties, see DeadLetterDestination objects
      }
      identity: {
        federatedIdentityCredentialInfo: {
          federatedClientId: 'string'
        }
        type: 'string'
        userAssignedIdentity: 'string'
      }
    }
    deliveryWithResourceIdentity: {
      destination: {
        endpointType: 'string'
        // For remaining properties, see EventSubscriptionDestination objects
      }
      identity: {
        federatedIdentityCredentialInfo: {
          federatedClientId: 'string'
        }
        type: 'string'
        userAssignedIdentity: 'string'
      }
    }
    destination: {
      endpointType: 'string'
      // For remaining properties, see EventSubscriptionDestination objects
    }
    eventDeliverySchema: 'string'
    expirationTimeUtc: 'string'
    filter: {
      advancedFilters: [
        {
          key: 'string'
          operatorType: 'string'
          // For remaining properties, see AdvancedFilter objects
        }
      ]
      enableAdvancedFilteringOnArrays: bool
      includedEventTypes: [
        'string'
      ]
      isSubjectCaseSensitive: bool
      subjectBeginsWith: 'string'
      subjectEndsWith: 'string'
    }
    labels: [
      'string'
    ]
    retryPolicy: {
      eventTimeToLiveInMinutes: int
      maxDeliveryAttempts: int
    }
  }
}

DeadLetterDestination 개체

endpointType 속성을 설정하여 개체 유형을 지정합니다.

StorageBlob경우 다음을 사용합니다.

{
  endpointType: 'StorageBlob'
  properties: {
    blobContainerName: 'string'
    resourceId: 'string'
  }
}

DeliveryAttributeMapping 개체

형식 속성을 설정하여 개체의 형식을 지정합니다.

동적경우 다음을 사용합니다.

{
  properties: {
    sourceField: 'string'
  }
  type: 'Dynamic'
}

정적경우 다음을 사용합니다.

{
  properties: {
    isSecret: bool
    value: 'string'
  }
  type: 'Static'
}

AdvancedFilter 개체

operatorType 속성을 설정하여 개체 유형을 지정합니다.

BoolEquals경우 다음을 사용합니다.

{
  operatorType: 'BoolEquals'
  value: bool
}

IsNotNull경우 다음을 사용합니다.

{
  operatorType: 'IsNotNull'
}

isNullOrUn 정의경우 다음을 사용합니다.

{
  operatorType: 'IsNullOrUndefined'
}

NumberGreaterThan경우 다음을 사용합니다.

{
  operatorType: 'NumberGreaterThan'
  value: int
}

NumberGreaterThanOrEquals경우 다음을 사용합니다.

{
  operatorType: 'NumberGreaterThanOrEquals'
  value: int
}

NumberIn경우 다음을 사용합니다.

{
  operatorType: 'NumberIn'
  values: [
    int
  ]
}

numberInRange경우 다음을 사용합니다.

{
  operatorType: 'NumberInRange'
  values: [
    [
      int
    ]
  ]
}

numberLessThan경우 다음을 사용합니다.

{
  operatorType: 'NumberLessThan'
  value: int
}

numberLessThanOrEquals경우 다음을 사용합니다.

{
  operatorType: 'NumberLessThanOrEquals'
  value: int
}

NumberNotIn경우 다음을 사용합니다.

{
  operatorType: 'NumberNotIn'
  values: [
    int
  ]
}

NumberNotInRange경우 다음을 사용합니다.

{
  operatorType: 'NumberNotInRange'
  values: [
    [
      int
    ]
  ]
}

StringBeginsWith경우 다음을 사용합니다.

{
  operatorType: 'StringBeginsWith'
  values: [
    'string'
  ]
}

StringContains경우 다음을 사용합니다.

{
  operatorType: 'StringContains'
  values: [
    'string'
  ]
}

StringEndsWith경우 다음을 사용합니다.

{
  operatorType: 'StringEndsWith'
  values: [
    'string'
  ]
}

StringIn경우 다음을 사용합니다.

{
  operatorType: 'StringIn'
  values: [
    'string'
  ]
}

StringNotBeginsWith경우 다음을 사용합니다.

{
  operatorType: 'StringNotBeginsWith'
  values: [
    'string'
  ]
}

StringNotContains경우 다음을 사용합니다.

{
  operatorType: 'StringNotContains'
  values: [
    'string'
  ]
}

StringNotEndsWith다음을 사용합니다.

{
  operatorType: 'StringNotEndsWith'
  values: [
    'string'
  ]
}

StringNotIn경우 다음을 사용합니다.

{
  operatorType: 'StringNotIn'
  values: [
    'string'
  ]
}

EventSubscriptionDestination 개체

endpointType 속성을 설정하여 개체 유형을 지정합니다.

azureFunction경우 다음을 사용합니다.

{
  endpointType: 'AzureFunction'
  properties: {
    deliveryAttributeMappings: [
      {
        name: 'string'
        type: 'string'
        // For remaining properties, see DeliveryAttributeMapping objects
      }
    ]
    maxEventsPerBatch: int
    preferredBatchSizeInKilobytes: int
    resourceId: 'string'
  }
}

eventHub경우 다음을 사용합니다.

{
  endpointType: 'EventHub'
  properties: {
    deliveryAttributeMappings: [
      {
        name: 'string'
        type: 'string'
        // For remaining properties, see DeliveryAttributeMapping objects
      }
    ]
    resourceId: 'string'
  }
}

HybridConnection경우 다음을 사용합니다.

{
  endpointType: 'HybridConnection'
  properties: {
    deliveryAttributeMappings: [
      {
        name: 'string'
        type: 'string'
        // For remaining properties, see DeliveryAttributeMapping objects
      }
    ]
    resourceId: 'string'
  }
}

MonitorAlert경우 다음을 사용합니다.

{
  endpointType: 'MonitorAlert'
  properties: {
    actionGroups: [
      'string'
    ]
    description: 'string'
    severity: 'string'
  }
}

NamespaceTopic경우 다음을 사용합니다.

{
  endpointType: 'NamespaceTopic'
  properties: {
    resourceId: 'string'
  }
}

PartnerDestination경우 다음을 사용합니다.

{
  endpointType: 'PartnerDestination'
  properties: {
    resourceId: 'string'
  }
}

serviceBusQueue경우 다음을 사용합니다.

{
  endpointType: 'ServiceBusQueue'
  properties: {
    deliveryAttributeMappings: [
      {
        name: 'string'
        type: 'string'
        // For remaining properties, see DeliveryAttributeMapping objects
      }
    ]
    resourceId: 'string'
  }
}

serviceBusTopic경우 다음을 사용합니다.

{
  endpointType: 'ServiceBusTopic'
  properties: {
    deliveryAttributeMappings: [
      {
        name: 'string'
        type: 'string'
        // For remaining properties, see DeliveryAttributeMapping objects
      }
    ]
    resourceId: 'string'
  }
}

storageQueue경우 다음을 사용합니다.

{
  endpointType: 'StorageQueue'
  properties: {
    queueMessageTimeToLiveInSeconds: int
    queueName: 'string'
    resourceId: 'string'
  }
}

WebHook경우 다음을 사용합니다.

{
  endpointType: 'WebHook'
  properties: {
    azureActiveDirectoryApplicationIdOrUri: 'string'
    azureActiveDirectoryTenantId: 'string'
    deliveryAttributeMappings: [
      {
        name: 'string'
        type: 'string'
        // For remaining properties, see DeliveryAttributeMapping objects
      }
    ]
    endpointUrl: 'string'
    maxEventsPerBatch: int
    minimumTlsVersionAllowed: 'string'
    preferredBatchSizeInKilobytes: int
  }
}

속성 값

AdvancedFilter

이름 묘사
열쇠 필터링할 이벤트의 필드/속성입니다. 문자열
operatorType BoolEqualsAdvancedFilter형식에 대해 'BoolEquals'로 설정합니다. IsNotNullAdvancedFilter형식에 대해 'IsNotNull'로 설정합니다. IsNullOrUndefinedAdvancedFilter형식에 대해 'IsNullOrUndefined'로 설정합니다. numberGreaterThanAdvancedFilter형식에 대해 'NumberGreaterThan'으로 설정합니다. numberGreaterThanOrEqualsAdvancedFilter형식에 대해 'NumberGreaterThanOrEquals'로 설정합니다. NumberInAdvancedFilter형식에 대해 'NumberIn'으로 설정합니다. NumberInRangeAdvancedFilter형식에 대해 'NumberInRange'로 설정합니다. numberLessThanAdvancedFilter형식에 대해 'NumberLessThan'으로 설정합니다. NumberLessThanOrEqualsAdvancedFilter형식에 대해 'NumberLessThanOrEquals'로 설정합니다. NumberNotInAdvancedFilter형식에 대해 'NumberNotIn'으로 설정합니다. NumberNotInRangeAdvancedFilter형식에 대해 'NumberNotInRange'로 설정합니다. StringBeginsWithAdvancedFilter형식에 대해 'StringBeginsWith'로 설정합니다. StringContainsAdvancedFilter형식에 대해 'StringContains'로 설정합니다. StringEndsWithAdvancedFilter형식에 대해 'StringEndsWith'로 설정합니다. StringInAdvancedFilter형식에 대해 'StringIn'으로 설정합니다. StringNotBeginsWithAdvancedFilter형식에 대해 'StringNotBeginsWith'로 설정합니다. StringNotContainsAdvancedFilter형식에 대해 'StringNotContains'로 설정합니다. StringNotEndsWithAdvancedFilter형식에 대해 'StringNotEndsWith'로 설정합니다. StringNotInAdvancedFilter형식에 대해 'StringNotIn'으로 설정합니다. 'BoolEquals'
'IsNotNull'
'IsNullOrUndefined'
'NumberGreaterThan'
'NumberGreaterThanOrEquals'
'NumberIn'
'NumberInRange'
'NumberLessThan'
'NumberLessThanOrEquals'
'NumberNotIn'
'NumberNotInRange'
'StringBeginsWith'
'StringContains'
'StringEndsWith'
'StringIn'
'StringNotBeginsWith'
'StringNotContains'
'StringNotEndsWith'
'StringNotIn'(필수)

AzureFunctionEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'AzureFunction'(필수)
속성 이벤트 구독 대상의 Azure 함수 속성입니다. AzureFunctionEventSubscriptionDestinationProperties

AzureFunctionEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
maxEventsPerBatch 일괄 처리당 최대 이벤트 수입니다. int
preferredBatchSizeInKilobytes 기본 배치 크기(킬로바이트)입니다. int
resourceId 이벤트 구독의 Azure Function 대상 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

BoolEqualsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'BoolEquals'(필수)
부울 필터 값입니다. bool

DeadLetterDestination

이름 묘사
endpointType StorageBlobDeadLetterDestination형식에 대해 'StorageBlob'으로 설정합니다. 'StorageBlob'(필수)

DeadLetterWithResourceIdentity

이름 묘사
deadLetterDestination 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
부모 리소스(즉, 토픽 또는 도메인)에서 관리 ID 설정을 사용하여 배달 못 한 편지에 사용되는 인증 토큰을 가져옵니다.
DeadLetterDestination
신원 배달 못한 편지 이벤트가 발생할 때 사용할 ID입니다. EventSubscriptionIdentity

DeliveryAttributeMapping

이름 묘사
이름 배달 특성 또는 헤더의 이름입니다. 문자열
DynamicDeliveryAttributeMapping형식에 대해 '동적'으로 설정합니다. staticDeliveryAttributeMapping형식에 대해 'Static'으로 설정합니다. '동적'
'Static'(필수)

DeliveryWithResourceIdentity

이름 묘사
목적지 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
부모 리소스(즉, 토픽 또는 도메인)에서 관리 ID 설정을 사용하여 배달 중에 사용되는 인증 토큰을 획득합니다.
eventSubscriptionDestination
신원 이벤트를 배달할 때 사용할 ID입니다. EventSubscriptionIdentity

DynamicDeliveryAttributeMapping

이름 묘사
속성 동적 배달 특성 매핑의 속성입니다. DynamicDeliveryAttributeMappingProperties
배달 특성 또는 헤더 이름의 형식입니다. 'Dynamic'(필수)

DynamicDeliveryAttributeMappingProperties

이름 묘사
sourceField 특성 값이 포함된 이벤트의 JSON 경로입니다. 문자열

EventHubEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'EventHub'(필수)
속성 이벤트 구독 대상의 이벤트 허브 속성입니다. EventHubEventSubscriptionDestinationProperties

EventHubEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
resourceId 이벤트 구독의 Event Hub 대상 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

EventSubscriptionDestination

이름 묘사
endpointType AzureFunctionEventSubscriptionDestination형식에 대해 'AzureFunction'으로 설정합니다. EventHubEventSubscriptionDestination형식에 대해 'EventHub'로 설정합니다. HybridConnectionEventSubscriptionDestination형식에 대해 'HybridConnection'으로 설정합니다. MonitorAlertEventSubscriptionDestination형식에 대해 'MonitorAlert'로 설정합니다. NamespaceTopicEventSubscriptionDestination형식에 대해 'NamespaceTopic'으로 설정합니다. PartnerEventSubscriptionDestination형식에 대해 'PartnerDestination'으로 설정합니다. ServiceBusQueueEventSubscriptionDestination형식에 대해 'ServiceBusQueue'로 설정합니다. ServiceBusTopicEventSubscriptionDestination형식에 대해 'ServiceBusTopic'으로 설정합니다. StorageQueueEventSubscriptionDestination형식에 대해 'StorageQueue'로 설정합니다. WebHookEventSubscriptionDestination형식에 대해 'WebHook'으로 설정합니다. 'AzureFunction'
'EventHub'
'HybridConnection'
'MonitorAlert'
'NamespaceTopic'
'PartnerDestination'
'ServiceBusQueue'
'ServiceBusTopic'
'StorageQueue'
'WebHook'(필수)

EventSubscriptionFilter

이름 묘사
advancedFilters 이벤트 구독을 필터링하는 데 사용되는 고급 필터의 배열입니다. AdvancedFilter[]
enableAdvancedFilteringOnArrays 단수 값을 예상하는 대신 고급 필터를 값 배열에 대해 평가할 수 있습니다. bool
includedEventTypes 이벤트 구독의 일부여야 하는 적용 가능한 이벤트 유형 목록입니다. 모든 기본 이벤트 유형을 구독하려면 IncludedEventTypes를 null로 설정합니다. string[]
isSubjectCaseSensitive 필터의 SubjectBeginsWith 및 SubjectEndsWith 속성을 지정합니다.
는 대/소문자를 구분하는 방식으로 비교해야 합니다.
bool
subjectBeginsWith 리소스 경로 접두사를 기반으로 이벤트 구독에 대한 이벤트를 필터링하는 선택적 문자열입니다.
이 형식은 이벤트의 게시자에 따라 달라집니다.
와일드카드 문자는 이 경로에서 지원되지 않습니다.
문자열
subjectEndsWith 리소스 경로 접미사를 기반으로 이벤트 구독에 대한 이벤트를 필터링하는 선택적 문자열입니다.
와일드카드 문자는 이 경로에서 지원되지 않습니다.
문자열

EventSubscriptionIdentity

이름 묘사
federatedIdentityCredentialInfo 리소스 배달에 사용되는 페더레이션 ID 자격 증명(FIC)의 세부 정보입니다. FederatedIdentityCredentialInfo
사용되는 관리 ID의 형식입니다. 'SystemAssigned' 또는 'UserAssigned'일 수 있습니다. 'SystemAssigned'
'UserAssigned'
userAssignedIdentity 리소스와 연결된 사용자 ID입니다. 문자열

EventSubscriptionProperties

이름 묘사
deadLetterDestination 이벤트 구독의 배달 못한 편지 대상입니다. 대상에 배달할 수 없는 모든 이벤트는 배달 못한 편지 대상으로 전송됩니다.
Azure Event Grid의 ID를 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
DeadLetterDestination
deadLetterWithResourceIdentity 이벤트 구독의 배달 못한 편지 대상입니다. 대상에 배달할 수 없는 모든 이벤트는 배달 못한 편지 대상으로 전송됩니다.
부모 리소스(즉, 토픽 또는 도메인)에서 관리 ID 설정을 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
DeadLetterWithResourceIdentity
deliveryWithResourceIdentity 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
부모 리소스(즉, 토픽 또는 도메인)에서 관리 ID 설정을 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
DeliveryWithResourceIdentity
목적지 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
Azure Event Grid의 ID를 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
eventSubscriptionDestination
eventDeliverySchema 이벤트 구독에 대한 이벤트 배달 스키마입니다. 'CloudEventSchemaV1_0'
'CustomInputSchema'
'EventGridSchema'
expirationTimeUtc 이벤트 구독의 만료 시간입니다. 문자열
필터 이벤트 구독에 대한 필터에 대한 정보입니다. eventSubscriptionFilter
레이블 사용자 정의 레이블 목록입니다. string[]
retryPolicy 이벤트에 대한 재시도 정책입니다. 최대 배달 시도 횟수 및 이벤트 라이브 시간을 구성하는 데 사용할 수 있습니다. RetryPolicy

FederatedIdentityCredentialInfo

이름 묘사
federatedClientId FIC(페더레이션 ID 자격 증명)가 연결된 다중 테넌트 AAD 애플리케이션입니다. 문자열

제약 조건:
최소 길이 = 36
최대 길이 = 36
패턴 = ^[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}$(필수)

HybridConnectionEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'HybridConnection'(필수)
속성 이벤트 구독 대상의 하이브리드 연결 속성입니다. HybridConnectionEventSubscriptionDestinationProperties

HybridConnectionEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
resourceId 이벤트 구독의 대상인 하이브리드 연결의 Azure 리소스 ID입니다. 문자열

IsNotNullAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'IsNotNull'(필수)

IsNullOrUndefinedAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'IsNullOrUndefined'(필수)

Microsoft.EventGrid/eventSubscriptions

이름 묘사
이름 리소스 이름 string(필수)
속성 이벤트 구독의 속성입니다. EventSubscriptionProperties
범위 배포 범위와 다른 범위에서 리소스를 만들 때 사용합니다. 확장 리소스적용하려면 이 속성을 리소스의 기호 이름으로 설정합니다.

MonitorAlertEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'MonitorAlert'(필수)
속성 이벤트 구독 대상의 경고 속성을 모니터링합니다. monitorAlertEventSubscriptionDestinationProperties

MonitorAlertEventSubscriptionDestinationProperties

이름 묘사
actionGroups 이 이벤트 구독을 통해 발생한 모든 경고에서 트리거될 작업 그룹의 ARM ID 목록입니다.
각 리소스 ARM ID는 /subscriptions/{AzureSubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Insights/actionGroups/{ActionGroupName}패턴을 따라야 합니다.
string[]
묘사 이 이벤트 구독을 통해 발생한 모든 경고에 연결될 설명입니다. 문자열
심각도 이 이벤트 구독을 통해 발생한 모든 경고에 연결될 심각도입니다.
이 필드를 제공해야 합니다.
'Sev0'
'Sev1'
'Sev2'
'Sev3'
'Sev4'

NamespaceTopicEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'NamespaceTopic'(필수)
속성 이벤트 구독 대상의 네임스페이스 토픽 속성입니다. NamespaceTopicEventSubscriptionDestinationProperties

NamespaceTopicEventSubscriptionDestinationProperties

이름 묘사
resourceId 이벤트 구독의 Event Grid 네임스페이스 토픽 대상의 엔드포인트를 나타내는 Azure 리소스 ID입니다.
이 필드는 필수이며 나열된 네임스페이스 토픽 리소스가 이미 있어야 합니다.
리소스 ARM ID는 /subscriptions/{AzureSubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.EventGrid/namespaces/{NamespaceName}/topics/{TopicName}패턴을 따라야 합니다.
문자열

NumberGreaterThanAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberGreaterThan'(필수)
필터 값입니다. int

NumberGreaterThanOrEqualsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberGreaterThanOrEquals'(필수)
필터 값입니다. int

NumberInAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberIn'(필수)
필터 값 집합입니다. int[]

NumberInRangeAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberInRange'(필수)
필터 값 집합입니다. int[][]

NumberLessThanAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberLessThan'(필수)
필터 값입니다. int

NumberLessThanOrEqualsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberLessThanOrEquals'(필수)
필터 값입니다. int

NumberNotInAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberNotIn'(필수)
필터 값 집합입니다. int[]

NumberNotInRangeAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberNotInRange'(필수)
필터 값 집합입니다. int[][]

PartnerEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'PartnerDestination'(필수)
속성 이벤트 구독 대상의 파트너 대상 속성입니다. PartnerEventSubscriptionDestinationProperties

PartnerEventSubscriptionDestinationProperties

이름 묘사
resourceId 이벤트 구독의 파트너 대상 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

RetryPolicy

이름 묘사
eventTimeToLiveInMinutes 이벤트에 대한 Time To Live(분)입니다. int
maxDeliveryAttempts 이벤트에 대한 배달 재시도 최대 횟수입니다. int

ServiceBusQueueEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'ServiceBusQueue'(필수)
속성 이벤트 구독 대상의 Service Bus 속성입니다. ServiceBusQueueEventSubscriptionDestinationProperties

ServiceBusQueueEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
resourceId 이벤트 구독의 Service Bus 대상 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

ServiceBusTopicEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'ServiceBusTopic'(필수)
속성 이벤트 구독 대상의 Service Bus 토픽 속성입니다. ServiceBusTopicEventSubscriptionDestinationProperties

ServiceBusTopicEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
resourceId 이벤트 구독의 Service Bus 토픽 대상의 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

StaticDeliveryAttributeMapping

이름 묘사
속성 정적 배달 특성 매핑의 속성입니다. StaticDeliveryAttributeMappingProperties
배달 특성 또는 헤더 이름의 형식입니다. 'Static'(필수)

StaticDeliveryAttributeMappingProperties

이름 묘사
isSecret 특성에 중요한 정보가 포함되어 있는지 여부를 나타내는 부울 플래그입니다. bool
배달 특성의 값입니다. 문자열

StorageBlobDeadLetterDestination

이름 묘사
endpointType 배달 못한 편지 대상에 대한 엔드포인트 유형 'StorageBlob'(필수)
속성 스토리지 Blob 기반 데드렛 대상의 속성 StorageBlobDeadLetterDestinationProperties

StorageBlobDeadLetterDestinationProperties

이름 묘사
blobContainerName 배달 못 한 이벤트의 대상인 Storage Blob 컨테이너의 이름입니다. 문자열
resourceId 배달 못 한 이벤트의 대상인 스토리지 계정의 Azure 리소스 ID 문자열

StorageQueueEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'StorageQueue'(필수)
속성 이벤트 구독 대상의 스토리지 큐 속성입니다. StorageQueueEventSubscriptionDestinationProperties

StorageQueueEventSubscriptionDestinationProperties

이름 묘사
queueMessageTimeToLiveInSeconds 스토리지 큐 메시지 시간(초)입니다. 메시지의 Time To Live가 무한임을 나타내기 위해 -1 사용하는 경우를 제외하고 이 값은 0이거나 음수일 수 없습니다. int
queueName 이벤트 구독의 대상인 스토리지 계정 아래의 Storage 큐 이름입니다. 문자열
resourceId 이벤트 구독의 대상인 큐를 포함하는 스토리지 계정의 Azure 리소스 ID입니다. 문자열

StringBeginsWithAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringBeginsWith'(필수)
필터 값 집합입니다. string[]

StringContainsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringContains'(필수)
필터 값 집합입니다. string[]

StringEndsWithAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringEndsWith'(필수)
필터 값 집합입니다. string[]

StringInAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringIn'(필수)
필터 값 집합입니다. string[]

StringNotBeginsWithAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringNotBeginsWith'(필수)
필터 값 집합입니다. string[]

StringNotContainsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringNotContains'(필수)
필터 값 집합입니다. string[]

StringNotEndsWithAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringNotEndsWith'(필수)
필터 값 집합입니다. string[]

StringNotInAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringNotIn'(필수)
필터 값 집합입니다. string[]

WebHookEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'WebHook'(필수)
속성 이벤트 구독 대상의 WebHook 속성입니다. WebHookEventSubscriptionDestinationProperties

WebHookEventSubscriptionDestinationProperties

이름 묘사
azureActiveDirectoryApplicationIdOrUri 배달 요청에 전달자 토큰으로 포함될 액세스 토큰을 가져오는 Azure Active Directory 애플리케이션 ID 또는 URI입니다. 문자열
azureActiveDirectoryTenantId 배달 요청에 전달자 토큰으로 포함될 액세스 토큰을 가져오는 Azure Active Directory 테넌트 ID입니다. 문자열
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
endpointUrl 이벤트 구독 대상의 엔드포인트를 나타내는 URL입니다. 문자열

제약 조건:
중요한 값입니다. 보안 매개 변수로 전달합니다.
maxEventsPerBatch 일괄 처리당 최대 이벤트 수입니다. int
minimumTlsVersionAllowed 웹후크 엔드포인트에서 지원해야 하는 최소 TLS 버전 '1.0'
'1.1'
'1.2'
preferredBatchSizeInKilobytes 기본 배치 크기(킬로바이트)입니다. int

빠른 시작 샘플

다음 빠른 시작 샘플은 이 리소스 유형을 배포합니다.

Bicep 파일 묘사
Azure Event Grid 사용자 지정 토픽 및 큐 구독 만들기 Azure Event Grid 사용자 지정 토픽 및 Service Bus 큐 구독을 만듭니다. 원래 마르쿠스 마이어에 의해 작성 된 템플릿.
Azure Event Grid 사용자 지정 토픽 및 구독 만들기 Azure Event Grid 사용자 지정 토픽 및 웹후크 구독을 만듭니다. 원래 존 다운스에 의해 작성 된 템플릿.

ARM 템플릿 리소스 정의

eventSubscriptions 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그참조하세요.

리소스 형식

Microsoft.EventGrid/eventSubscriptions 리소스를 만들려면 템플릿에 다음 JSON을 추가합니다.

{
  "type": "Microsoft.EventGrid/eventSubscriptions",
  "apiVersion": "2024-12-15-preview",
  "name": "string",
  "properties": {
    "deadLetterDestination": {
      "endpointType": "string"
      // For remaining properties, see DeadLetterDestination objects
    },
    "deadLetterWithResourceIdentity": {
      "deadLetterDestination": {
        "endpointType": "string"
        // For remaining properties, see DeadLetterDestination objects
      },
      "identity": {
        "federatedIdentityCredentialInfo": {
          "federatedClientId": "string"
        },
        "type": "string",
        "userAssignedIdentity": "string"
      }
    },
    "deliveryWithResourceIdentity": {
      "destination": {
        "endpointType": "string"
        // For remaining properties, see EventSubscriptionDestination objects
      },
      "identity": {
        "federatedIdentityCredentialInfo": {
          "federatedClientId": "string"
        },
        "type": "string",
        "userAssignedIdentity": "string"
      }
    },
    "destination": {
      "endpointType": "string"
      // For remaining properties, see EventSubscriptionDestination objects
    },
    "eventDeliverySchema": "string",
    "expirationTimeUtc": "string",
    "filter": {
      "advancedFilters": [ {
        "key": "string",
        "operatorType": "string"
        // For remaining properties, see AdvancedFilter objects
      } ],
      "enableAdvancedFilteringOnArrays": "bool",
      "includedEventTypes": [ "string" ],
      "isSubjectCaseSensitive": "bool",
      "subjectBeginsWith": "string",
      "subjectEndsWith": "string"
    },
    "labels": [ "string" ],
    "retryPolicy": {
      "eventTimeToLiveInMinutes": "int",
      "maxDeliveryAttempts": "int"
    }
  }
}

DeadLetterDestination 개체

endpointType 속성을 설정하여 개체 유형을 지정합니다.

StorageBlob경우 다음을 사용합니다.

{
  "endpointType": "StorageBlob",
  "properties": {
    "blobContainerName": "string",
    "resourceId": "string"
  }
}

DeliveryAttributeMapping 개체

형식 속성을 설정하여 개체의 형식을 지정합니다.

동적경우 다음을 사용합니다.

{
  "properties": {
    "sourceField": "string"
  },
  "type": "Dynamic"
}

정적경우 다음을 사용합니다.

{
  "properties": {
    "isSecret": "bool",
    "value": "string"
  },
  "type": "Static"
}

AdvancedFilter 개체

operatorType 속성을 설정하여 개체 유형을 지정합니다.

BoolEquals경우 다음을 사용합니다.

{
  "operatorType": "BoolEquals",
  "value": "bool"
}

IsNotNull경우 다음을 사용합니다.

{
  "operatorType": "IsNotNull"
}

isNullOrUn 정의경우 다음을 사용합니다.

{
  "operatorType": "IsNullOrUndefined"
}

NumberGreaterThan경우 다음을 사용합니다.

{
  "operatorType": "NumberGreaterThan",
  "value": "int"
}

NumberGreaterThanOrEquals경우 다음을 사용합니다.

{
  "operatorType": "NumberGreaterThanOrEquals",
  "value": "int"
}

NumberIn경우 다음을 사용합니다.

{
  "operatorType": "NumberIn",
  "values": [ "int" ]
}

numberInRange경우 다음을 사용합니다.

{
  "operatorType": "NumberInRange",
  "values": [
    [ "int" ]
  ]
}

numberLessThan경우 다음을 사용합니다.

{
  "operatorType": "NumberLessThan",
  "value": "int"
}

numberLessThanOrEquals경우 다음을 사용합니다.

{
  "operatorType": "NumberLessThanOrEquals",
  "value": "int"
}

NumberNotIn경우 다음을 사용합니다.

{
  "operatorType": "NumberNotIn",
  "values": [ "int" ]
}

NumberNotInRange경우 다음을 사용합니다.

{
  "operatorType": "NumberNotInRange",
  "values": [
    [ "int" ]
  ]
}

StringBeginsWith경우 다음을 사용합니다.

{
  "operatorType": "StringBeginsWith",
  "values": [ "string" ]
}

StringContains경우 다음을 사용합니다.

{
  "operatorType": "StringContains",
  "values": [ "string" ]
}

StringEndsWith경우 다음을 사용합니다.

{
  "operatorType": "StringEndsWith",
  "values": [ "string" ]
}

StringIn경우 다음을 사용합니다.

{
  "operatorType": "StringIn",
  "values": [ "string" ]
}

StringNotBeginsWith경우 다음을 사용합니다.

{
  "operatorType": "StringNotBeginsWith",
  "values": [ "string" ]
}

StringNotContains경우 다음을 사용합니다.

{
  "operatorType": "StringNotContains",
  "values": [ "string" ]
}

StringNotEndsWith다음을 사용합니다.

{
  "operatorType": "StringNotEndsWith",
  "values": [ "string" ]
}

StringNotIn경우 다음을 사용합니다.

{
  "operatorType": "StringNotIn",
  "values": [ "string" ]
}

EventSubscriptionDestination 개체

endpointType 속성을 설정하여 개체 유형을 지정합니다.

azureFunction경우 다음을 사용합니다.

{
  "endpointType": "AzureFunction",
  "properties": {
    "deliveryAttributeMappings": [ {
      "name": "string",
      "type": "string"
      // For remaining properties, see DeliveryAttributeMapping objects
    } ],
    "maxEventsPerBatch": "int",
    "preferredBatchSizeInKilobytes": "int",
    "resourceId": "string"
  }
}

eventHub경우 다음을 사용합니다.

{
  "endpointType": "EventHub",
  "properties": {
    "deliveryAttributeMappings": [ {
      "name": "string",
      "type": "string"
      // For remaining properties, see DeliveryAttributeMapping objects
    } ],
    "resourceId": "string"
  }
}

HybridConnection경우 다음을 사용합니다.

{
  "endpointType": "HybridConnection",
  "properties": {
    "deliveryAttributeMappings": [ {
      "name": "string",
      "type": "string"
      // For remaining properties, see DeliveryAttributeMapping objects
    } ],
    "resourceId": "string"
  }
}

MonitorAlert경우 다음을 사용합니다.

{
  "endpointType": "MonitorAlert",
  "properties": {
    "actionGroups": [ "string" ],
    "description": "string",
    "severity": "string"
  }
}

NamespaceTopic경우 다음을 사용합니다.

{
  "endpointType": "NamespaceTopic",
  "properties": {
    "resourceId": "string"
  }
}

PartnerDestination경우 다음을 사용합니다.

{
  "endpointType": "PartnerDestination",
  "properties": {
    "resourceId": "string"
  }
}

serviceBusQueue경우 다음을 사용합니다.

{
  "endpointType": "ServiceBusQueue",
  "properties": {
    "deliveryAttributeMappings": [ {
      "name": "string",
      "type": "string"
      // For remaining properties, see DeliveryAttributeMapping objects
    } ],
    "resourceId": "string"
  }
}

serviceBusTopic경우 다음을 사용합니다.

{
  "endpointType": "ServiceBusTopic",
  "properties": {
    "deliveryAttributeMappings": [ {
      "name": "string",
      "type": "string"
      // For remaining properties, see DeliveryAttributeMapping objects
    } ],
    "resourceId": "string"
  }
}

storageQueue경우 다음을 사용합니다.

{
  "endpointType": "StorageQueue",
  "properties": {
    "queueMessageTimeToLiveInSeconds": "int",
    "queueName": "string",
    "resourceId": "string"
  }
}

WebHook경우 다음을 사용합니다.

{
  "endpointType": "WebHook",
  "properties": {
    "azureActiveDirectoryApplicationIdOrUri": "string",
    "azureActiveDirectoryTenantId": "string",
    "deliveryAttributeMappings": [ {
      "name": "string",
      "type": "string"
      // For remaining properties, see DeliveryAttributeMapping objects
    } ],
    "endpointUrl": "string",
    "maxEventsPerBatch": "int",
    "minimumTlsVersionAllowed": "string",
    "preferredBatchSizeInKilobytes": "int"
  }
}

속성 값

AdvancedFilter

이름 묘사
열쇠 필터링할 이벤트의 필드/속성입니다. 문자열
operatorType BoolEqualsAdvancedFilter형식에 대해 'BoolEquals'로 설정합니다. IsNotNullAdvancedFilter형식에 대해 'IsNotNull'로 설정합니다. IsNullOrUndefinedAdvancedFilter형식에 대해 'IsNullOrUndefined'로 설정합니다. numberGreaterThanAdvancedFilter형식에 대해 'NumberGreaterThan'으로 설정합니다. numberGreaterThanOrEqualsAdvancedFilter형식에 대해 'NumberGreaterThanOrEquals'로 설정합니다. NumberInAdvancedFilter형식에 대해 'NumberIn'으로 설정합니다. NumberInRangeAdvancedFilter형식에 대해 'NumberInRange'로 설정합니다. numberLessThanAdvancedFilter형식에 대해 'NumberLessThan'으로 설정합니다. NumberLessThanOrEqualsAdvancedFilter형식에 대해 'NumberLessThanOrEquals'로 설정합니다. NumberNotInAdvancedFilter형식에 대해 'NumberNotIn'으로 설정합니다. NumberNotInRangeAdvancedFilter형식에 대해 'NumberNotInRange'로 설정합니다. StringBeginsWithAdvancedFilter형식에 대해 'StringBeginsWith'로 설정합니다. StringContainsAdvancedFilter형식에 대해 'StringContains'로 설정합니다. StringEndsWithAdvancedFilter형식에 대해 'StringEndsWith'로 설정합니다. StringInAdvancedFilter형식에 대해 'StringIn'으로 설정합니다. StringNotBeginsWithAdvancedFilter형식에 대해 'StringNotBeginsWith'로 설정합니다. StringNotContainsAdvancedFilter형식에 대해 'StringNotContains'로 설정합니다. StringNotEndsWithAdvancedFilter형식에 대해 'StringNotEndsWith'로 설정합니다. StringNotInAdvancedFilter형식에 대해 'StringNotIn'으로 설정합니다. 'BoolEquals'
'IsNotNull'
'IsNullOrUndefined'
'NumberGreaterThan'
'NumberGreaterThanOrEquals'
'NumberIn'
'NumberInRange'
'NumberLessThan'
'NumberLessThanOrEquals'
'NumberNotIn'
'NumberNotInRange'
'StringBeginsWith'
'StringContains'
'StringEndsWith'
'StringIn'
'StringNotBeginsWith'
'StringNotContains'
'StringNotEndsWith'
'StringNotIn'(필수)

AzureFunctionEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'AzureFunction'(필수)
속성 이벤트 구독 대상의 Azure 함수 속성입니다. AzureFunctionEventSubscriptionDestinationProperties

AzureFunctionEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
maxEventsPerBatch 일괄 처리당 최대 이벤트 수입니다. int
preferredBatchSizeInKilobytes 기본 배치 크기(킬로바이트)입니다. int
resourceId 이벤트 구독의 Azure Function 대상 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

BoolEqualsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'BoolEquals'(필수)
부울 필터 값입니다. bool

DeadLetterDestination

이름 묘사
endpointType StorageBlobDeadLetterDestination형식에 대해 'StorageBlob'으로 설정합니다. 'StorageBlob'(필수)

DeadLetterWithResourceIdentity

이름 묘사
deadLetterDestination 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
부모 리소스(즉, 토픽 또는 도메인)에서 관리 ID 설정을 사용하여 배달 못 한 편지에 사용되는 인증 토큰을 가져옵니다.
DeadLetterDestination
신원 배달 못한 편지 이벤트가 발생할 때 사용할 ID입니다. EventSubscriptionIdentity

DeliveryAttributeMapping

이름 묘사
이름 배달 특성 또는 헤더의 이름입니다. 문자열
DynamicDeliveryAttributeMapping형식에 대해 '동적'으로 설정합니다. staticDeliveryAttributeMapping형식에 대해 'Static'으로 설정합니다. '동적'
'Static'(필수)

DeliveryWithResourceIdentity

이름 묘사
목적지 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
부모 리소스(즉, 토픽 또는 도메인)에서 관리 ID 설정을 사용하여 배달 중에 사용되는 인증 토큰을 획득합니다.
eventSubscriptionDestination
신원 이벤트를 배달할 때 사용할 ID입니다. EventSubscriptionIdentity

DynamicDeliveryAttributeMapping

이름 묘사
속성 동적 배달 특성 매핑의 속성입니다. DynamicDeliveryAttributeMappingProperties
배달 특성 또는 헤더 이름의 형식입니다. 'Dynamic'(필수)

DynamicDeliveryAttributeMappingProperties

이름 묘사
sourceField 특성 값이 포함된 이벤트의 JSON 경로입니다. 문자열

EventHubEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'EventHub'(필수)
속성 이벤트 구독 대상의 이벤트 허브 속성입니다. EventHubEventSubscriptionDestinationProperties

EventHubEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
resourceId 이벤트 구독의 Event Hub 대상 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

EventSubscriptionDestination

이름 묘사
endpointType AzureFunctionEventSubscriptionDestination형식에 대해 'AzureFunction'으로 설정합니다. EventHubEventSubscriptionDestination형식에 대해 'EventHub'로 설정합니다. HybridConnectionEventSubscriptionDestination형식에 대해 'HybridConnection'으로 설정합니다. MonitorAlertEventSubscriptionDestination형식에 대해 'MonitorAlert'로 설정합니다. NamespaceTopicEventSubscriptionDestination형식에 대해 'NamespaceTopic'으로 설정합니다. PartnerEventSubscriptionDestination형식에 대해 'PartnerDestination'으로 설정합니다. ServiceBusQueueEventSubscriptionDestination형식에 대해 'ServiceBusQueue'로 설정합니다. ServiceBusTopicEventSubscriptionDestination형식에 대해 'ServiceBusTopic'으로 설정합니다. StorageQueueEventSubscriptionDestination형식에 대해 'StorageQueue'로 설정합니다. WebHookEventSubscriptionDestination형식에 대해 'WebHook'으로 설정합니다. 'AzureFunction'
'EventHub'
'HybridConnection'
'MonitorAlert'
'NamespaceTopic'
'PartnerDestination'
'ServiceBusQueue'
'ServiceBusTopic'
'StorageQueue'
'WebHook'(필수)

EventSubscriptionFilter

이름 묘사
advancedFilters 이벤트 구독을 필터링하는 데 사용되는 고급 필터의 배열입니다. AdvancedFilter[]
enableAdvancedFilteringOnArrays 단수 값을 예상하는 대신 고급 필터를 값 배열에 대해 평가할 수 있습니다. bool
includedEventTypes 이벤트 구독의 일부여야 하는 적용 가능한 이벤트 유형 목록입니다. 모든 기본 이벤트 유형을 구독하려면 IncludedEventTypes를 null로 설정합니다. string[]
isSubjectCaseSensitive 필터의 SubjectBeginsWith 및 SubjectEndsWith 속성을 지정합니다.
는 대/소문자를 구분하는 방식으로 비교해야 합니다.
bool
subjectBeginsWith 리소스 경로 접두사를 기반으로 이벤트 구독에 대한 이벤트를 필터링하는 선택적 문자열입니다.
이 형식은 이벤트의 게시자에 따라 달라집니다.
와일드카드 문자는 이 경로에서 지원되지 않습니다.
문자열
subjectEndsWith 리소스 경로 접미사를 기반으로 이벤트 구독에 대한 이벤트를 필터링하는 선택적 문자열입니다.
와일드카드 문자는 이 경로에서 지원되지 않습니다.
문자열

EventSubscriptionIdentity

이름 묘사
federatedIdentityCredentialInfo 리소스 배달에 사용되는 페더레이션 ID 자격 증명(FIC)의 세부 정보입니다. FederatedIdentityCredentialInfo
사용되는 관리 ID의 형식입니다. 'SystemAssigned' 또는 'UserAssigned'일 수 있습니다. 'SystemAssigned'
'UserAssigned'
userAssignedIdentity 리소스와 연결된 사용자 ID입니다. 문자열

EventSubscriptionProperties

이름 묘사
deadLetterDestination 이벤트 구독의 배달 못한 편지 대상입니다. 대상에 배달할 수 없는 모든 이벤트는 배달 못한 편지 대상으로 전송됩니다.
Azure Event Grid의 ID를 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
DeadLetterDestination
deadLetterWithResourceIdentity 이벤트 구독의 배달 못한 편지 대상입니다. 대상에 배달할 수 없는 모든 이벤트는 배달 못한 편지 대상으로 전송됩니다.
부모 리소스(즉, 토픽 또는 도메인)에서 관리 ID 설정을 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
DeadLetterWithResourceIdentity
deliveryWithResourceIdentity 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
부모 리소스(즉, 토픽 또는 도메인)에서 관리 ID 설정을 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
DeliveryWithResourceIdentity
목적지 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
Azure Event Grid의 ID를 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
eventSubscriptionDestination
eventDeliverySchema 이벤트 구독에 대한 이벤트 배달 스키마입니다. 'CloudEventSchemaV1_0'
'CustomInputSchema'
'EventGridSchema'
expirationTimeUtc 이벤트 구독의 만료 시간입니다. 문자열
필터 이벤트 구독에 대한 필터에 대한 정보입니다. eventSubscriptionFilter
레이블 사용자 정의 레이블 목록입니다. string[]
retryPolicy 이벤트에 대한 재시도 정책입니다. 최대 배달 시도 횟수 및 이벤트 라이브 시간을 구성하는 데 사용할 수 있습니다. RetryPolicy

FederatedIdentityCredentialInfo

이름 묘사
federatedClientId FIC(페더레이션 ID 자격 증명)가 연결된 다중 테넌트 AAD 애플리케이션입니다. 문자열

제약 조건:
최소 길이 = 36
최대 길이 = 36
패턴 = ^[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}$(필수)

HybridConnectionEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'HybridConnection'(필수)
속성 이벤트 구독 대상의 하이브리드 연결 속성입니다. HybridConnectionEventSubscriptionDestinationProperties

HybridConnectionEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
resourceId 이벤트 구독의 대상인 하이브리드 연결의 Azure 리소스 ID입니다. 문자열

IsNotNullAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'IsNotNull'(필수)

IsNullOrUndefinedAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'IsNullOrUndefined'(필수)

Microsoft.EventGrid/eventSubscriptions

이름 묘사
apiVersion api 버전 '2024-12-15-preview'
이름 리소스 이름 string(필수)
속성 이벤트 구독의 속성입니다. EventSubscriptionProperties
리소스 종류 'Microsoft.EventGrid/eventSubscriptions'

MonitorAlertEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'MonitorAlert'(필수)
속성 이벤트 구독 대상의 경고 속성을 모니터링합니다. monitorAlertEventSubscriptionDestinationProperties

MonitorAlertEventSubscriptionDestinationProperties

이름 묘사
actionGroups 이 이벤트 구독을 통해 발생한 모든 경고에서 트리거될 작업 그룹의 ARM ID 목록입니다.
각 리소스 ARM ID는 /subscriptions/{AzureSubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Insights/actionGroups/{ActionGroupName}패턴을 따라야 합니다.
string[]
묘사 이 이벤트 구독을 통해 발생한 모든 경고에 연결될 설명입니다. 문자열
심각도 이 이벤트 구독을 통해 발생한 모든 경고에 연결될 심각도입니다.
이 필드를 제공해야 합니다.
'Sev0'
'Sev1'
'Sev2'
'Sev3'
'Sev4'

NamespaceTopicEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'NamespaceTopic'(필수)
속성 이벤트 구독 대상의 네임스페이스 토픽 속성입니다. NamespaceTopicEventSubscriptionDestinationProperties

NamespaceTopicEventSubscriptionDestinationProperties

이름 묘사
resourceId 이벤트 구독의 Event Grid 네임스페이스 토픽 대상의 엔드포인트를 나타내는 Azure 리소스 ID입니다.
이 필드는 필수이며 나열된 네임스페이스 토픽 리소스가 이미 있어야 합니다.
리소스 ARM ID는 /subscriptions/{AzureSubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.EventGrid/namespaces/{NamespaceName}/topics/{TopicName}패턴을 따라야 합니다.
문자열

NumberGreaterThanAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberGreaterThan'(필수)
필터 값입니다. int

NumberGreaterThanOrEqualsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberGreaterThanOrEquals'(필수)
필터 값입니다. int

NumberInAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberIn'(필수)
필터 값 집합입니다. int[]

NumberInRangeAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberInRange'(필수)
필터 값 집합입니다. int[][]

NumberLessThanAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberLessThan'(필수)
필터 값입니다. int

NumberLessThanOrEqualsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberLessThanOrEquals'(필수)
필터 값입니다. int

NumberNotInAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberNotIn'(필수)
필터 값 집합입니다. int[]

NumberNotInRangeAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberNotInRange'(필수)
필터 값 집합입니다. int[][]

PartnerEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'PartnerDestination'(필수)
속성 이벤트 구독 대상의 파트너 대상 속성입니다. PartnerEventSubscriptionDestinationProperties

PartnerEventSubscriptionDestinationProperties

이름 묘사
resourceId 이벤트 구독의 파트너 대상 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

RetryPolicy

이름 묘사
eventTimeToLiveInMinutes 이벤트에 대한 Time To Live(분)입니다. int
maxDeliveryAttempts 이벤트에 대한 배달 재시도 최대 횟수입니다. int

ServiceBusQueueEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'ServiceBusQueue'(필수)
속성 이벤트 구독 대상의 Service Bus 속성입니다. ServiceBusQueueEventSubscriptionDestinationProperties

ServiceBusQueueEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
resourceId 이벤트 구독의 Service Bus 대상 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

ServiceBusTopicEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'ServiceBusTopic'(필수)
속성 이벤트 구독 대상의 Service Bus 토픽 속성입니다. ServiceBusTopicEventSubscriptionDestinationProperties

ServiceBusTopicEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
resourceId 이벤트 구독의 Service Bus 토픽 대상의 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

StaticDeliveryAttributeMapping

이름 묘사
속성 정적 배달 특성 매핑의 속성입니다. StaticDeliveryAttributeMappingProperties
배달 특성 또는 헤더 이름의 형식입니다. 'Static'(필수)

StaticDeliveryAttributeMappingProperties

이름 묘사
isSecret 특성에 중요한 정보가 포함되어 있는지 여부를 나타내는 부울 플래그입니다. bool
배달 특성의 값입니다. 문자열

StorageBlobDeadLetterDestination

이름 묘사
endpointType 배달 못한 편지 대상에 대한 엔드포인트 유형 'StorageBlob'(필수)
속성 스토리지 Blob 기반 데드렛 대상의 속성 StorageBlobDeadLetterDestinationProperties

StorageBlobDeadLetterDestinationProperties

이름 묘사
blobContainerName 배달 못 한 이벤트의 대상인 Storage Blob 컨테이너의 이름입니다. 문자열
resourceId 배달 못 한 이벤트의 대상인 스토리지 계정의 Azure 리소스 ID 문자열

StorageQueueEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'StorageQueue'(필수)
속성 이벤트 구독 대상의 스토리지 큐 속성입니다. StorageQueueEventSubscriptionDestinationProperties

StorageQueueEventSubscriptionDestinationProperties

이름 묘사
queueMessageTimeToLiveInSeconds 스토리지 큐 메시지 시간(초)입니다. 메시지의 Time To Live가 무한임을 나타내기 위해 -1 사용하는 경우를 제외하고 이 값은 0이거나 음수일 수 없습니다. int
queueName 이벤트 구독의 대상인 스토리지 계정 아래의 Storage 큐 이름입니다. 문자열
resourceId 이벤트 구독의 대상인 큐를 포함하는 스토리지 계정의 Azure 리소스 ID입니다. 문자열

StringBeginsWithAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringBeginsWith'(필수)
필터 값 집합입니다. string[]

StringContainsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringContains'(필수)
필터 값 집합입니다. string[]

StringEndsWithAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringEndsWith'(필수)
필터 값 집합입니다. string[]

StringInAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringIn'(필수)
필터 값 집합입니다. string[]

StringNotBeginsWithAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringNotBeginsWith'(필수)
필터 값 집합입니다. string[]

StringNotContainsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringNotContains'(필수)
필터 값 집합입니다. string[]

StringNotEndsWithAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringNotEndsWith'(필수)
필터 값 집합입니다. string[]

StringNotInAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringNotIn'(필수)
필터 값 집합입니다. string[]

WebHookEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'WebHook'(필수)
속성 이벤트 구독 대상의 WebHook 속성입니다. WebHookEventSubscriptionDestinationProperties

WebHookEventSubscriptionDestinationProperties

이름 묘사
azureActiveDirectoryApplicationIdOrUri 배달 요청에 전달자 토큰으로 포함될 액세스 토큰을 가져오는 Azure Active Directory 애플리케이션 ID 또는 URI입니다. 문자열
azureActiveDirectoryTenantId 배달 요청에 전달자 토큰으로 포함될 액세스 토큰을 가져오는 Azure Active Directory 테넌트 ID입니다. 문자열
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
endpointUrl 이벤트 구독 대상의 엔드포인트를 나타내는 URL입니다. 문자열

제약 조건:
중요한 값입니다. 보안 매개 변수로 전달합니다.
maxEventsPerBatch 일괄 처리당 최대 이벤트 수입니다. int
minimumTlsVersionAllowed 웹후크 엔드포인트에서 지원해야 하는 최소 TLS 버전 '1.0'
'1.1'
'1.2'
preferredBatchSizeInKilobytes 기본 배치 크기(킬로바이트)입니다. int

빠른 시작 템플릿

다음 빠른 시작 템플릿은 이 리소스 유형을 배포합니다.

템플렛 묘사
Azure Event Grid 사용자 지정 토픽 및 큐 구독 만들기

Azure
배포
Azure Event Grid 사용자 지정 토픽 및 Service Bus 큐 구독을 만듭니다. 원래 마르쿠스 마이어에 의해 작성 된 템플릿.
Azure Event Grid 사용자 지정 토픽 및 구독 만들기

Azure
배포
Azure Event Grid 사용자 지정 토픽 및 웹후크 구독을 만듭니다. 원래 존 다운스에 의해 작성 된 템플릿.
Azure Event Grid 사용자 지정 토픽 구독 만들기

Azure
배포
Azure Event Grid 사용자 지정 토픽 및 Service Bus 토픽 구독을 만듭니다. 원래 마르쿠스 마이어에 의해 작성 된 템플릿.
Event Grid 사용자 지정 토픽 및 이벤트 허브 처리기 만들기

Azure 배포
이벤트를 처리할 Azure Event Grid 사용자 지정 토픽 및 이벤트 허브를 만듭니다.
리소스 이벤트 대한 Event Grid 구독 만들기

Azure 배포
리소스 그룹 또는 Azure 구독에 대한 Event Grid 구독을 만듭니다.
CloudEvents 사용하여 사용자 지정 Azure Event Grid 토픽/구독

Azure
배포
사용자 지정 Azure Event Grid 토픽, CloudEvents 스키마가 있는 웹후크 구독 및 이벤트 처리기로 논리 앱을 만듭니다. 원래 저스틴 유에 의해 작성 된 템플릿.

Terraform(AzAPI 공급자) 리소스 정의

eventSubscriptions 리소스 종류는 다음을 대상으로 하는 작업으로 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그참조하세요.

리소스 형식

Microsoft.EventGrid/eventSubscriptions 리소스를 만들려면 템플릿에 다음 Terraform을 추가합니다.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.EventGrid/eventSubscriptions@2024-12-15-preview"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      deadLetterDestination = {
        endpointType = "string"
        // For remaining properties, see DeadLetterDestination objects
      }
      deadLetterWithResourceIdentity = {
        deadLetterDestination = {
          endpointType = "string"
          // For remaining properties, see DeadLetterDestination objects
        }
        identity = {
          federatedIdentityCredentialInfo = {
            federatedClientId = "string"
          }
          type = "string"
          userAssignedIdentity = "string"
        }
      }
      deliveryWithResourceIdentity = {
        destination = {
          endpointType = "string"
          // For remaining properties, see EventSubscriptionDestination objects
        }
        identity = {
          federatedIdentityCredentialInfo = {
            federatedClientId = "string"
          }
          type = "string"
          userAssignedIdentity = "string"
        }
      }
      destination = {
        endpointType = "string"
        // For remaining properties, see EventSubscriptionDestination objects
      }
      eventDeliverySchema = "string"
      expirationTimeUtc = "string"
      filter = {
        advancedFilters = [
          {
            key = "string"
            operatorType = "string"
            // For remaining properties, see AdvancedFilter objects
          }
        ]
        enableAdvancedFilteringOnArrays = bool
        includedEventTypes = [
          "string"
        ]
        isSubjectCaseSensitive = bool
        subjectBeginsWith = "string"
        subjectEndsWith = "string"
      }
      labels = [
        "string"
      ]
      retryPolicy = {
        eventTimeToLiveInMinutes = int
        maxDeliveryAttempts = int
      }
    }
  })
}

DeadLetterDestination 개체

endpointType 속성을 설정하여 개체 유형을 지정합니다.

StorageBlob경우 다음을 사용합니다.

{
  endpointType = "StorageBlob"
  properties = {
    blobContainerName = "string"
    resourceId = "string"
  }
}

DeliveryAttributeMapping 개체

형식 속성을 설정하여 개체의 형식을 지정합니다.

동적경우 다음을 사용합니다.

{
  properties = {
    sourceField = "string"
  }
  type = "Dynamic"
}

정적경우 다음을 사용합니다.

{
  properties = {
    isSecret = bool
    value = "string"
  }
  type = "Static"
}

AdvancedFilter 개체

operatorType 속성을 설정하여 개체 유형을 지정합니다.

BoolEquals경우 다음을 사용합니다.

{
  operatorType = "BoolEquals"
  value = bool
}

IsNotNull경우 다음을 사용합니다.

{
  operatorType = "IsNotNull"
}

isNullOrUn 정의경우 다음을 사용합니다.

{
  operatorType = "IsNullOrUndefined"
}

NumberGreaterThan경우 다음을 사용합니다.

{
  operatorType = "NumberGreaterThan"
  value = int
}

NumberGreaterThanOrEquals경우 다음을 사용합니다.

{
  operatorType = "NumberGreaterThanOrEquals"
  value = int
}

NumberIn경우 다음을 사용합니다.

{
  operatorType = "NumberIn"
  values = [
    int
  ]
}

numberInRange경우 다음을 사용합니다.

{
  operatorType = "NumberInRange"
  values = [
    [
      int
    ]
  ]
}

numberLessThan경우 다음을 사용합니다.

{
  operatorType = "NumberLessThan"
  value = int
}

numberLessThanOrEquals경우 다음을 사용합니다.

{
  operatorType = "NumberLessThanOrEquals"
  value = int
}

NumberNotIn경우 다음을 사용합니다.

{
  operatorType = "NumberNotIn"
  values = [
    int
  ]
}

NumberNotInRange경우 다음을 사용합니다.

{
  operatorType = "NumberNotInRange"
  values = [
    [
      int
    ]
  ]
}

StringBeginsWith경우 다음을 사용합니다.

{
  operatorType = "StringBeginsWith"
  values = [
    "string"
  ]
}

StringContains경우 다음을 사용합니다.

{
  operatorType = "StringContains"
  values = [
    "string"
  ]
}

StringEndsWith경우 다음을 사용합니다.

{
  operatorType = "StringEndsWith"
  values = [
    "string"
  ]
}

StringIn경우 다음을 사용합니다.

{
  operatorType = "StringIn"
  values = [
    "string"
  ]
}

StringNotBeginsWith경우 다음을 사용합니다.

{
  operatorType = "StringNotBeginsWith"
  values = [
    "string"
  ]
}

StringNotContains경우 다음을 사용합니다.

{
  operatorType = "StringNotContains"
  values = [
    "string"
  ]
}

StringNotEndsWith다음을 사용합니다.

{
  operatorType = "StringNotEndsWith"
  values = [
    "string"
  ]
}

StringNotIn경우 다음을 사용합니다.

{
  operatorType = "StringNotIn"
  values = [
    "string"
  ]
}

EventSubscriptionDestination 개체

endpointType 속성을 설정하여 개체 유형을 지정합니다.

azureFunction경우 다음을 사용합니다.

{
  endpointType = "AzureFunction"
  properties = {
    deliveryAttributeMappings = [
      {
        name = "string"
        type = "string"
        // For remaining properties, see DeliveryAttributeMapping objects
      }
    ]
    maxEventsPerBatch = int
    preferredBatchSizeInKilobytes = int
    resourceId = "string"
  }
}

eventHub경우 다음을 사용합니다.

{
  endpointType = "EventHub"
  properties = {
    deliveryAttributeMappings = [
      {
        name = "string"
        type = "string"
        // For remaining properties, see DeliveryAttributeMapping objects
      }
    ]
    resourceId = "string"
  }
}

HybridConnection경우 다음을 사용합니다.

{
  endpointType = "HybridConnection"
  properties = {
    deliveryAttributeMappings = [
      {
        name = "string"
        type = "string"
        // For remaining properties, see DeliveryAttributeMapping objects
      }
    ]
    resourceId = "string"
  }
}

MonitorAlert경우 다음을 사용합니다.

{
  endpointType = "MonitorAlert"
  properties = {
    actionGroups = [
      "string"
    ]
    description = "string"
    severity = "string"
  }
}

NamespaceTopic경우 다음을 사용합니다.

{
  endpointType = "NamespaceTopic"
  properties = {
    resourceId = "string"
  }
}

PartnerDestination경우 다음을 사용합니다.

{
  endpointType = "PartnerDestination"
  properties = {
    resourceId = "string"
  }
}

serviceBusQueue경우 다음을 사용합니다.

{
  endpointType = "ServiceBusQueue"
  properties = {
    deliveryAttributeMappings = [
      {
        name = "string"
        type = "string"
        // For remaining properties, see DeliveryAttributeMapping objects
      }
    ]
    resourceId = "string"
  }
}

serviceBusTopic경우 다음을 사용합니다.

{
  endpointType = "ServiceBusTopic"
  properties = {
    deliveryAttributeMappings = [
      {
        name = "string"
        type = "string"
        // For remaining properties, see DeliveryAttributeMapping objects
      }
    ]
    resourceId = "string"
  }
}

storageQueue경우 다음을 사용합니다.

{
  endpointType = "StorageQueue"
  properties = {
    queueMessageTimeToLiveInSeconds = int
    queueName = "string"
    resourceId = "string"
  }
}

WebHook경우 다음을 사용합니다.

{
  endpointType = "WebHook"
  properties = {
    azureActiveDirectoryApplicationIdOrUri = "string"
    azureActiveDirectoryTenantId = "string"
    deliveryAttributeMappings = [
      {
        name = "string"
        type = "string"
        // For remaining properties, see DeliveryAttributeMapping objects
      }
    ]
    endpointUrl = "string"
    maxEventsPerBatch = int
    minimumTlsVersionAllowed = "string"
    preferredBatchSizeInKilobytes = int
  }
}

속성 값

AdvancedFilter

이름 묘사
열쇠 필터링할 이벤트의 필드/속성입니다. 문자열
operatorType BoolEqualsAdvancedFilter형식에 대해 'BoolEquals'로 설정합니다. IsNotNullAdvancedFilter형식에 대해 'IsNotNull'로 설정합니다. IsNullOrUndefinedAdvancedFilter형식에 대해 'IsNullOrUndefined'로 설정합니다. numberGreaterThanAdvancedFilter형식에 대해 'NumberGreaterThan'으로 설정합니다. numberGreaterThanOrEqualsAdvancedFilter형식에 대해 'NumberGreaterThanOrEquals'로 설정합니다. NumberInAdvancedFilter형식에 대해 'NumberIn'으로 설정합니다. NumberInRangeAdvancedFilter형식에 대해 'NumberInRange'로 설정합니다. numberLessThanAdvancedFilter형식에 대해 'NumberLessThan'으로 설정합니다. NumberLessThanOrEqualsAdvancedFilter형식에 대해 'NumberLessThanOrEquals'로 설정합니다. NumberNotInAdvancedFilter형식에 대해 'NumberNotIn'으로 설정합니다. NumberNotInRangeAdvancedFilter형식에 대해 'NumberNotInRange'로 설정합니다. StringBeginsWithAdvancedFilter형식에 대해 'StringBeginsWith'로 설정합니다. StringContainsAdvancedFilter형식에 대해 'StringContains'로 설정합니다. StringEndsWithAdvancedFilter형식에 대해 'StringEndsWith'로 설정합니다. StringInAdvancedFilter형식에 대해 'StringIn'으로 설정합니다. StringNotBeginsWithAdvancedFilter형식에 대해 'StringNotBeginsWith'로 설정합니다. StringNotContainsAdvancedFilter형식에 대해 'StringNotContains'로 설정합니다. StringNotEndsWithAdvancedFilter형식에 대해 'StringNotEndsWith'로 설정합니다. StringNotInAdvancedFilter형식에 대해 'StringNotIn'으로 설정합니다. 'BoolEquals'
'IsNotNull'
'IsNullOrUndefined'
'NumberGreaterThan'
'NumberGreaterThanOrEquals'
'NumberIn'
'NumberInRange'
'NumberLessThan'
'NumberLessThanOrEquals'
'NumberNotIn'
'NumberNotInRange'
'StringBeginsWith'
'StringContains'
'StringEndsWith'
'StringIn'
'StringNotBeginsWith'
'StringNotContains'
'StringNotEndsWith'
'StringNotIn'(필수)

AzureFunctionEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'AzureFunction'(필수)
속성 이벤트 구독 대상의 Azure 함수 속성입니다. AzureFunctionEventSubscriptionDestinationProperties

AzureFunctionEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
maxEventsPerBatch 일괄 처리당 최대 이벤트 수입니다. int
preferredBatchSizeInKilobytes 기본 배치 크기(킬로바이트)입니다. int
resourceId 이벤트 구독의 Azure Function 대상 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

BoolEqualsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'BoolEquals'(필수)
부울 필터 값입니다. bool

DeadLetterDestination

이름 묘사
endpointType StorageBlobDeadLetterDestination형식에 대해 'StorageBlob'으로 설정합니다. 'StorageBlob'(필수)

DeadLetterWithResourceIdentity

이름 묘사
deadLetterDestination 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
부모 리소스(즉, 토픽 또는 도메인)에서 관리 ID 설정을 사용하여 배달 못 한 편지에 사용되는 인증 토큰을 가져옵니다.
DeadLetterDestination
신원 배달 못한 편지 이벤트가 발생할 때 사용할 ID입니다. EventSubscriptionIdentity

DeliveryAttributeMapping

이름 묘사
이름 배달 특성 또는 헤더의 이름입니다. 문자열
DynamicDeliveryAttributeMapping형식에 대해 '동적'으로 설정합니다. staticDeliveryAttributeMapping형식에 대해 'Static'으로 설정합니다. '동적'
'Static'(필수)

DeliveryWithResourceIdentity

이름 묘사
목적지 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
부모 리소스(즉, 토픽 또는 도메인)에서 관리 ID 설정을 사용하여 배달 중에 사용되는 인증 토큰을 획득합니다.
eventSubscriptionDestination
신원 이벤트를 배달할 때 사용할 ID입니다. EventSubscriptionIdentity

DynamicDeliveryAttributeMapping

이름 묘사
속성 동적 배달 특성 매핑의 속성입니다. DynamicDeliveryAttributeMappingProperties
배달 특성 또는 헤더 이름의 형식입니다. 'Dynamic'(필수)

DynamicDeliveryAttributeMappingProperties

이름 묘사
sourceField 특성 값이 포함된 이벤트의 JSON 경로입니다. 문자열

EventHubEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'EventHub'(필수)
속성 이벤트 구독 대상의 이벤트 허브 속성입니다. EventHubEventSubscriptionDestinationProperties

EventHubEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
resourceId 이벤트 구독의 Event Hub 대상 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

EventSubscriptionDestination

이름 묘사
endpointType AzureFunctionEventSubscriptionDestination형식에 대해 'AzureFunction'으로 설정합니다. EventHubEventSubscriptionDestination형식에 대해 'EventHub'로 설정합니다. HybridConnectionEventSubscriptionDestination형식에 대해 'HybridConnection'으로 설정합니다. MonitorAlertEventSubscriptionDestination형식에 대해 'MonitorAlert'로 설정합니다. NamespaceTopicEventSubscriptionDestination형식에 대해 'NamespaceTopic'으로 설정합니다. PartnerEventSubscriptionDestination형식에 대해 'PartnerDestination'으로 설정합니다. ServiceBusQueueEventSubscriptionDestination형식에 대해 'ServiceBusQueue'로 설정합니다. ServiceBusTopicEventSubscriptionDestination형식에 대해 'ServiceBusTopic'으로 설정합니다. StorageQueueEventSubscriptionDestination형식에 대해 'StorageQueue'로 설정합니다. WebHookEventSubscriptionDestination형식에 대해 'WebHook'으로 설정합니다. 'AzureFunction'
'EventHub'
'HybridConnection'
'MonitorAlert'
'NamespaceTopic'
'PartnerDestination'
'ServiceBusQueue'
'ServiceBusTopic'
'StorageQueue'
'WebHook'(필수)

EventSubscriptionFilter

이름 묘사
advancedFilters 이벤트 구독을 필터링하는 데 사용되는 고급 필터의 배열입니다. AdvancedFilter[]
enableAdvancedFilteringOnArrays 단수 값을 예상하는 대신 고급 필터를 값 배열에 대해 평가할 수 있습니다. bool
includedEventTypes 이벤트 구독의 일부여야 하는 적용 가능한 이벤트 유형 목록입니다. 모든 기본 이벤트 유형을 구독하려면 IncludedEventTypes를 null로 설정합니다. string[]
isSubjectCaseSensitive 필터의 SubjectBeginsWith 및 SubjectEndsWith 속성을 지정합니다.
는 대/소문자를 구분하는 방식으로 비교해야 합니다.
bool
subjectBeginsWith 리소스 경로 접두사를 기반으로 이벤트 구독에 대한 이벤트를 필터링하는 선택적 문자열입니다.
이 형식은 이벤트의 게시자에 따라 달라집니다.
와일드카드 문자는 이 경로에서 지원되지 않습니다.
문자열
subjectEndsWith 리소스 경로 접미사를 기반으로 이벤트 구독에 대한 이벤트를 필터링하는 선택적 문자열입니다.
와일드카드 문자는 이 경로에서 지원되지 않습니다.
문자열

EventSubscriptionIdentity

이름 묘사
federatedIdentityCredentialInfo 리소스 배달에 사용되는 페더레이션 ID 자격 증명(FIC)의 세부 정보입니다. FederatedIdentityCredentialInfo
사용되는 관리 ID의 형식입니다. 'SystemAssigned' 또는 'UserAssigned'일 수 있습니다. 'SystemAssigned'
'UserAssigned'
userAssignedIdentity 리소스와 연결된 사용자 ID입니다. 문자열

EventSubscriptionProperties

이름 묘사
deadLetterDestination 이벤트 구독의 배달 못한 편지 대상입니다. 대상에 배달할 수 없는 모든 이벤트는 배달 못한 편지 대상으로 전송됩니다.
Azure Event Grid의 ID를 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
DeadLetterDestination
deadLetterWithResourceIdentity 이벤트 구독의 배달 못한 편지 대상입니다. 대상에 배달할 수 없는 모든 이벤트는 배달 못한 편지 대상으로 전송됩니다.
부모 리소스(즉, 토픽 또는 도메인)에서 관리 ID 설정을 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
DeadLetterWithResourceIdentity
deliveryWithResourceIdentity 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
부모 리소스(즉, 토픽 또는 도메인)에서 관리 ID 설정을 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
DeliveryWithResourceIdentity
목적지 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
Azure Event Grid의 ID를 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
eventSubscriptionDestination
eventDeliverySchema 이벤트 구독에 대한 이벤트 배달 스키마입니다. 'CloudEventSchemaV1_0'
'CustomInputSchema'
'EventGridSchema'
expirationTimeUtc 이벤트 구독의 만료 시간입니다. 문자열
필터 이벤트 구독에 대한 필터에 대한 정보입니다. eventSubscriptionFilter
레이블 사용자 정의 레이블 목록입니다. string[]
retryPolicy 이벤트에 대한 재시도 정책입니다. 최대 배달 시도 횟수 및 이벤트 라이브 시간을 구성하는 데 사용할 수 있습니다. RetryPolicy

FederatedIdentityCredentialInfo

이름 묘사
federatedClientId FIC(페더레이션 ID 자격 증명)가 연결된 다중 테넌트 AAD 애플리케이션입니다. 문자열

제약 조건:
최소 길이 = 36
최대 길이 = 36
패턴 = ^[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}$(필수)

HybridConnectionEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'HybridConnection'(필수)
속성 이벤트 구독 대상의 하이브리드 연결 속성입니다. HybridConnectionEventSubscriptionDestinationProperties

HybridConnectionEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
resourceId 이벤트 구독의 대상인 하이브리드 연결의 Azure 리소스 ID입니다. 문자열

IsNotNullAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'IsNotNull'(필수)

IsNullOrUndefinedAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'IsNullOrUndefined'(필수)

Microsoft.EventGrid/eventSubscriptions

이름 묘사
이름 리소스 이름 string(필수)
parent_id 이 확장 리소스를 적용할 리소스의 ID입니다. string(필수)
속성 이벤트 구독의 속성입니다. EventSubscriptionProperties
리소스 종류 "Microsoft.EventGrid/eventSubscriptions@2024-12-15-preview"

MonitorAlertEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'MonitorAlert'(필수)
속성 이벤트 구독 대상의 경고 속성을 모니터링합니다. monitorAlertEventSubscriptionDestinationProperties

MonitorAlertEventSubscriptionDestinationProperties

이름 묘사
actionGroups 이 이벤트 구독을 통해 발생한 모든 경고에서 트리거될 작업 그룹의 ARM ID 목록입니다.
각 리소스 ARM ID는 /subscriptions/{AzureSubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Insights/actionGroups/{ActionGroupName}패턴을 따라야 합니다.
string[]
묘사 이 이벤트 구독을 통해 발생한 모든 경고에 연결될 설명입니다. 문자열
심각도 이 이벤트 구독을 통해 발생한 모든 경고에 연결될 심각도입니다.
이 필드를 제공해야 합니다.
'Sev0'
'Sev1'
'Sev2'
'Sev3'
'Sev4'

NamespaceTopicEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'NamespaceTopic'(필수)
속성 이벤트 구독 대상의 네임스페이스 토픽 속성입니다. NamespaceTopicEventSubscriptionDestinationProperties

NamespaceTopicEventSubscriptionDestinationProperties

이름 묘사
resourceId 이벤트 구독의 Event Grid 네임스페이스 토픽 대상의 엔드포인트를 나타내는 Azure 리소스 ID입니다.
이 필드는 필수이며 나열된 네임스페이스 토픽 리소스가 이미 있어야 합니다.
리소스 ARM ID는 /subscriptions/{AzureSubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.EventGrid/namespaces/{NamespaceName}/topics/{TopicName}패턴을 따라야 합니다.
문자열

NumberGreaterThanAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberGreaterThan'(필수)
필터 값입니다. int

NumberGreaterThanOrEqualsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberGreaterThanOrEquals'(필수)
필터 값입니다. int

NumberInAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberIn'(필수)
필터 값 집합입니다. int[]

NumberInRangeAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberInRange'(필수)
필터 값 집합입니다. int[][]

NumberLessThanAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberLessThan'(필수)
필터 값입니다. int

NumberLessThanOrEqualsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberLessThanOrEquals'(필수)
필터 값입니다. int

NumberNotInAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberNotIn'(필수)
필터 값 집합입니다. int[]

NumberNotInRangeAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'NumberNotInRange'(필수)
필터 값 집합입니다. int[][]

PartnerEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'PartnerDestination'(필수)
속성 이벤트 구독 대상의 파트너 대상 속성입니다. PartnerEventSubscriptionDestinationProperties

PartnerEventSubscriptionDestinationProperties

이름 묘사
resourceId 이벤트 구독의 파트너 대상 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

RetryPolicy

이름 묘사
eventTimeToLiveInMinutes 이벤트에 대한 Time To Live(분)입니다. int
maxDeliveryAttempts 이벤트에 대한 배달 재시도 최대 횟수입니다. int

ServiceBusQueueEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'ServiceBusQueue'(필수)
속성 이벤트 구독 대상의 Service Bus 속성입니다. ServiceBusQueueEventSubscriptionDestinationProperties

ServiceBusQueueEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
resourceId 이벤트 구독의 Service Bus 대상 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

ServiceBusTopicEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'ServiceBusTopic'(필수)
속성 이벤트 구독 대상의 Service Bus 토픽 속성입니다. ServiceBusTopicEventSubscriptionDestinationProperties

ServiceBusTopicEventSubscriptionDestinationProperties

이름 묘사
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
resourceId 이벤트 구독의 Service Bus 토픽 대상의 엔드포인트를 나타내는 Azure 리소스 ID입니다. 문자열

StaticDeliveryAttributeMapping

이름 묘사
속성 정적 배달 특성 매핑의 속성입니다. StaticDeliveryAttributeMappingProperties
배달 특성 또는 헤더 이름의 형식입니다. 'Static'(필수)

StaticDeliveryAttributeMappingProperties

이름 묘사
isSecret 특성에 중요한 정보가 포함되어 있는지 여부를 나타내는 부울 플래그입니다. bool
배달 특성의 값입니다. 문자열

StorageBlobDeadLetterDestination

이름 묘사
endpointType 배달 못한 편지 대상에 대한 엔드포인트 유형 'StorageBlob'(필수)
속성 스토리지 Blob 기반 데드렛 대상의 속성 StorageBlobDeadLetterDestinationProperties

StorageBlobDeadLetterDestinationProperties

이름 묘사
blobContainerName 배달 못 한 이벤트의 대상인 Storage Blob 컨테이너의 이름입니다. 문자열
resourceId 배달 못 한 이벤트의 대상인 스토리지 계정의 Azure 리소스 ID 문자열

StorageQueueEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'StorageQueue'(필수)
속성 이벤트 구독 대상의 스토리지 큐 속성입니다. StorageQueueEventSubscriptionDestinationProperties

StorageQueueEventSubscriptionDestinationProperties

이름 묘사
queueMessageTimeToLiveInSeconds 스토리지 큐 메시지 시간(초)입니다. 메시지의 Time To Live가 무한임을 나타내기 위해 -1 사용하는 경우를 제외하고 이 값은 0이거나 음수일 수 없습니다. int
queueName 이벤트 구독의 대상인 스토리지 계정 아래의 Storage 큐 이름입니다. 문자열
resourceId 이벤트 구독의 대상인 큐를 포함하는 스토리지 계정의 Azure 리소스 ID입니다. 문자열

StringBeginsWithAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringBeginsWith'(필수)
필터 값 집합입니다. string[]

StringContainsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringContains'(필수)
필터 값 집합입니다. string[]

StringEndsWithAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringEndsWith'(필수)
필터 값 집합입니다. string[]

StringInAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringIn'(필수)
필터 값 집합입니다. string[]

StringNotBeginsWithAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringNotBeginsWith'(필수)
필터 값 집합입니다. string[]

StringNotContainsAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringNotContains'(필수)
필터 값 집합입니다. string[]

StringNotEndsWithAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringNotEndsWith'(필수)
필터 값 집합입니다. string[]

StringNotInAdvancedFilter

이름 묘사
operatorType 필터링에 사용되는 연산자 형식(예: NumberIn, StringContains, BoolEquals 등)입니다. 'StringNotIn'(필수)
필터 값 집합입니다. string[]

WebHookEventSubscriptionDestination

이름 묘사
endpointType 이벤트 구독 대상에 대한 엔드포인트의 유형입니다. 'WebHook'(필수)
속성 이벤트 구독 대상의 WebHook 속성입니다. WebHookEventSubscriptionDestinationProperties

WebHookEventSubscriptionDestinationProperties

이름 묘사
azureActiveDirectoryApplicationIdOrUri 배달 요청에 전달자 토큰으로 포함될 액세스 토큰을 가져오는 Azure Active Directory 애플리케이션 ID 또는 URI입니다. 문자열
azureActiveDirectoryTenantId 배달 요청에 전달자 토큰으로 포함될 액세스 토큰을 가져오는 Azure Active Directory 테넌트 ID입니다. 문자열
deliveryAttributeMappings 배달 특성 세부 정보입니다. DeliveryAttributeMapping[]
endpointUrl 이벤트 구독 대상의 엔드포인트를 나타내는 URL입니다. 문자열

제약 조건:
중요한 값입니다. 보안 매개 변수로 전달합니다.
maxEventsPerBatch 일괄 처리당 최대 이벤트 수입니다. int
minimumTlsVersionAllowed 웹후크 엔드포인트에서 지원해야 하는 최소 TLS 버전 '1.0'
'1.1'
'1.2'
preferredBatchSizeInKilobytes 기본 배치 크기(킬로바이트)입니다. int