다음을 통해 공유


Microsoft.EventGrid systemTopics/eventSubscriptions 2021-10-15-preview

Bicep 리소스 정의

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

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

리소스 형식

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

resource symbolicname 'Microsoft.EventGrid/systemTopics/eventSubscriptions@2021-10-15-preview' = {
  name: 'string'
  parent: resourceSymbolicName
  properties: {
    deadLetterDestination: {
      endpointType: 'string'
      // For remaining properties, see DeadLetterDestination objects
    }
    deadLetterWithResourceIdentity: {
      deadLetterDestination: {
        endpointType: 'string'
        // For remaining properties, see DeadLetterDestination objects
      }
      identity: {
        type: 'string'
        userAssignedIdentity: 'string'
      }
    }
    deliveryWithResourceIdentity: {
      destination: {
        endpointType: 'string'
        // For remaining properties, see EventSubscriptionDestination objects
      }
      identity: {
        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'
  }

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'
  }

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
    preferredBatchSizeInKilobytes: int
  }

DeliveryAttributeMapping 개체

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

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

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

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

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

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'
  ]

속성 값

systemTopics/eventSubscriptions

이름 묘사
이름 리소스 이름

Bicep자식 리소스의 이름과 형식을 설정하는 방법을 알아보세요.
string(필수)
부모 Bicep에서 자식 리소스에 대한 부모 리소스를 지정할 수 있습니다. 자식 리소스가 부모 리소스 외부에서 선언된 경우에만 이 속성을 추가해야 합니다.

자세한 내용은 부모 리소스외부의 자식 리소스 참조하세요.
형식 리소스의 기호 이름: systemTopics
속성 이벤트 구독의 속성입니다. EventSubscriptionProperties

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

DeadLetterDestination

이름 묘사
endpointType 개체 유형 설정 StorageBlob (필수)

StorageBlobDeadLetterDestination

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

StorageBlobDeadLetterDestinationProperties

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

DeadLetterWithResourceIdentity

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

EventSubscriptionIdentity

이름 묘사
사용되는 관리 ID의 형식입니다. 'SystemAssigned, UserAssigned' 형식에는 암시적으로 생성된 ID와 사용자 할당 ID 집합이 모두 포함됩니다. 'None' 형식은 모든 ID를 제거합니다. 'SystemAssigned'
'UserAssigned'
userAssignedIdentity 리소스와 연결된 사용자 ID입니다. 문자열

DeliveryWithResourceIdentity

이름 묘사
목적지 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
Azure Event Grid의 ID를 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
eventSubscriptionDestination
신원 이벤트를 배달할 때 사용할 ID입니다. EventSubscriptionIdentity

EventSubscriptionDestination

이름 묘사
endpointType 개체 유형 설정 AzureFunction
eventHub

HybridConnection
PartnerDestination
ServiceBusQueue
serviceBusTopic

StorageQueue

WebHook(필수)

AzureFunctionEventSubscriptionDestination

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

AzureFunctionEventSubscriptionDestinationProperties

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

DeliveryAttributeMapping

이름 묘사
이름 배달 특성 또는 헤더의 이름입니다. 문자열
개체 유형 설정 동적
정적(필수)

DynamicDeliveryAttributeMapping

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

DynamicDeliveryAttributeMappingProperties

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

StaticDeliveryAttributeMapping

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

StaticDeliveryAttributeMappingProperties

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

EventHubEventSubscriptionDestination

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

EventHubEventSubscriptionDestinationProperties

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

HybridConnectionEventSubscriptionDestination

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

HybridConnectionEventSubscriptionDestinationProperti...

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

PartnerEventSubscriptionDestination

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

PartnerEventSubscriptionDestinationProperties

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

ServiceBusQueueEventSubscriptionDestination

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

ServiceBusQueueEventSubscriptionDestinationPropertie...

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

ServiceBusTopicEventSubscriptionDestination

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

ServiceBusTopicEventSubscriptionDestinationPropertie...

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

StorageQueueEventSubscriptionDestination

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

StorageQueueEventSubscriptionDestinationProperties

이름 묘사
queueMessageTimeToLiveInSeconds 스토리지 큐 메시지 시간(초)입니다. int
queueName 이벤트 구독의 대상인 스토리지 계정 아래의 Storage 큐 이름입니다. 문자열
resourceId 이벤트 구독의 대상인 큐를 포함하는 스토리지 계정의 Azure 리소스 ID입니다. 문자열

WebHookEventSubscriptionDestination

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

WebHookEventSubscriptionDestinationProperties

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

제약 조건:
중요한 값입니다. 보안 매개 변수로 전달합니다.
maxEventsPerBatch 일괄 처리당 최대 이벤트 수입니다. int
preferredBatchSizeInKilobytes 기본 배치 크기(킬로바이트)입니다. int

EventSubscriptionFilter

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

AdvancedFilter

이름 묘사
열쇠 필터링할 이벤트의 필드/속성입니다. 문자열
operatorType 개체 유형 설정 BoolEquals
isNotNull
IsNullOrUn 정의
NumberGreaterThan
NumberGreaterThanOrEquals
NumberIn
numberInRange

NumberLessThan
NumberLessThanOrEquals
numberNotIn

numberNotInRange

StringBeginsWith
StringContains
StringEndsWith
StringIn
StringNotBeginsWith
StringNotContains
StringNotEndsWith
StringNotIn(필수)

BoolEqualsAdvancedFilter

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

IsNotNullAdvancedFilter

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

IsNullOrUndefinedAdvancedFilter

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

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[][]

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[]

RetryPolicy

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

빠른 시작 템플릿

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

템플렛 묘사
Blob 대한 Blob Storage 및 Event Grid 구독 만들기

Azure
배포
Azure Blob Storage 계정을 만든 다음 해당 Blob에 대한 Event Grid 구독을 만듭니다.
Event Grid 연결 사용하여 Azure Data Explorer db 배포

Azure
배포
Event Grid 연결을 사용하여 Azure Data Explorer db를 배포합니다.

ARM 템플릿 리소스 정의

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

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

리소스 형식

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

{
  "type": "Microsoft.EventGrid/systemTopics/eventSubscriptions",
  "apiVersion": "2021-10-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": {
        "type": "string",
        "userAssignedIdentity": "string"
      }
    },
    "deliveryWithResourceIdentity": {
      "destination": {
        "endpointType": "string"
        // For remaining properties, see EventSubscriptionDestination objects
      },
      "identity": {
        "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"
  }

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"
  }

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",
    "preferredBatchSizeInKilobytes": "int"
  }

DeliveryAttributeMapping 개체

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

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

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

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

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

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" ]

속성 값

systemTopics/eventSubscriptions

이름 묘사
리소스 종류 'Microsoft.EventGrid/systemTopics/eventSubscriptions'
apiVersion 리소스 api 버전 '2021-10-15-preview'
이름 리소스 이름

JSON ARM 템플릿자식 리소스의 이름과 형식을 설정하는 방법을 참조하세요.
string(필수)
속성 이벤트 구독의 속성입니다. EventSubscriptionProperties

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

DeadLetterDestination

이름 묘사
endpointType 개체 유형 설정 StorageBlob (필수)

StorageBlobDeadLetterDestination

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

StorageBlobDeadLetterDestinationProperties

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

DeadLetterWithResourceIdentity

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

EventSubscriptionIdentity

이름 묘사
사용되는 관리 ID의 형식입니다. 'SystemAssigned, UserAssigned' 형식에는 암시적으로 생성된 ID와 사용자 할당 ID 집합이 모두 포함됩니다. 'None' 형식은 모든 ID를 제거합니다. 'SystemAssigned'
'UserAssigned'
userAssignedIdentity 리소스와 연결된 사용자 ID입니다. 문자열

DeliveryWithResourceIdentity

이름 묘사
목적지 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
Azure Event Grid의 ID를 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
eventSubscriptionDestination
신원 이벤트를 배달할 때 사용할 ID입니다. EventSubscriptionIdentity

EventSubscriptionDestination

이름 묘사
endpointType 개체 유형 설정 AzureFunction
eventHub

HybridConnection
PartnerDestination
ServiceBusQueue
serviceBusTopic

StorageQueue

WebHook(필수)

AzureFunctionEventSubscriptionDestination

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

AzureFunctionEventSubscriptionDestinationProperties

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

DeliveryAttributeMapping

이름 묘사
이름 배달 특성 또는 헤더의 이름입니다. 문자열
개체 유형 설정 동적
정적(필수)

DynamicDeliveryAttributeMapping

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

DynamicDeliveryAttributeMappingProperties

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

StaticDeliveryAttributeMapping

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

StaticDeliveryAttributeMappingProperties

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

EventHubEventSubscriptionDestination

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

EventHubEventSubscriptionDestinationProperties

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

HybridConnectionEventSubscriptionDestination

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

HybridConnectionEventSubscriptionDestinationProperti...

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

PartnerEventSubscriptionDestination

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

PartnerEventSubscriptionDestinationProperties

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

ServiceBusQueueEventSubscriptionDestination

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

ServiceBusQueueEventSubscriptionDestinationPropertie...

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

ServiceBusTopicEventSubscriptionDestination

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

ServiceBusTopicEventSubscriptionDestinationPropertie...

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

StorageQueueEventSubscriptionDestination

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

StorageQueueEventSubscriptionDestinationProperties

이름 묘사
queueMessageTimeToLiveInSeconds 스토리지 큐 메시지 시간(초)입니다. int
queueName 이벤트 구독의 대상인 스토리지 계정 아래의 Storage 큐 이름입니다. 문자열
resourceId 이벤트 구독의 대상인 큐를 포함하는 스토리지 계정의 Azure 리소스 ID입니다. 문자열

WebHookEventSubscriptionDestination

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

WebHookEventSubscriptionDestinationProperties

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

제약 조건:
중요한 값입니다. 보안 매개 변수로 전달합니다.
maxEventsPerBatch 일괄 처리당 최대 이벤트 수입니다. int
preferredBatchSizeInKilobytes 기본 배치 크기(킬로바이트)입니다. int

EventSubscriptionFilter

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

AdvancedFilter

이름 묘사
열쇠 필터링할 이벤트의 필드/속성입니다. 문자열
operatorType 개체 유형 설정 BoolEquals
isNotNull
IsNullOrUn 정의
NumberGreaterThan
NumberGreaterThanOrEquals
NumberIn
numberInRange

NumberLessThan
NumberLessThanOrEquals
numberNotIn

numberNotInRange

StringBeginsWith
StringContains
StringEndsWith
StringIn
StringNotBeginsWith
StringNotContains
StringNotEndsWith
StringNotIn(필수)

BoolEqualsAdvancedFilter

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

IsNotNullAdvancedFilter

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

IsNullOrUndefinedAdvancedFilter

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

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[][]

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[]

RetryPolicy

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

빠른 시작 템플릿

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

템플렛 묘사
Blob 대한 Blob Storage 및 Event Grid 구독 만들기

Azure
배포
Azure Blob Storage 계정을 만든 다음 해당 Blob에 대한 Event Grid 구독을 만듭니다.
Event Grid 연결 사용하여 Azure Data Explorer db 배포

Azure
배포
Event Grid 연결을 사용하여 Azure Data Explorer db를 배포합니다.

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

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

  • 리소스 그룹

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

리소스 형식

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.EventGrid/systemTopics/eventSubscriptions@2021-10-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 = {
          type = "string"
          userAssignedIdentity = "string"
        }
      }
      deliveryWithResourceIdentity = {
        destination = {
          endpointType = "string"
          // For remaining properties, see EventSubscriptionDestination objects
        }
        identity = {
          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"
  }

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"
  }

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
    preferredBatchSizeInKilobytes = int
  }

DeliveryAttributeMapping 개체

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

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

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

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

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

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"
  ]

속성 값

systemTopics/eventSubscriptions

이름 묘사
리소스 종류 "Microsoft.EventGrid/systemTopics/eventSubscriptions@2021-10-15-preview"
이름 리소스 이름 string(필수)
parent_id 이 리소스의 부모인 리소스의 ID입니다. 형식의 리소스 ID: systemTopics
속성 이벤트 구독의 속성입니다. EventSubscriptionProperties

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

DeadLetterDestination

이름 묘사
endpointType 개체 유형 설정 StorageBlob (필수)

StorageBlobDeadLetterDestination

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

StorageBlobDeadLetterDestinationProperties

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

DeadLetterWithResourceIdentity

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

EventSubscriptionIdentity

이름 묘사
사용되는 관리 ID의 형식입니다. 'SystemAssigned, UserAssigned' 형식에는 암시적으로 생성된 ID와 사용자 할당 ID 집합이 모두 포함됩니다. 'None' 형식은 모든 ID를 제거합니다. "SystemAssigned"
"UserAssigned"
userAssignedIdentity 리소스와 연결된 사용자 ID입니다. 문자열

DeliveryWithResourceIdentity

이름 묘사
목적지 이벤트 구독에 대해 이벤트를 배달해야 하는 대상에 대한 정보입니다.
Azure Event Grid의 ID를 사용하여 배달/배달 못 한 편지 중에 사용되는 인증 토큰을 획득합니다.
eventSubscriptionDestination
신원 이벤트를 배달할 때 사용할 ID입니다. EventSubscriptionIdentity

EventSubscriptionDestination

이름 묘사
endpointType 개체 유형 설정 AzureFunction
eventHub

HybridConnection
PartnerDestination
ServiceBusQueue
serviceBusTopic

StorageQueue

WebHook(필수)

AzureFunctionEventSubscriptionDestination

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

AzureFunctionEventSubscriptionDestinationProperties

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

DeliveryAttributeMapping

이름 묘사
이름 배달 특성 또는 헤더의 이름입니다. 문자열
개체 유형 설정 동적
정적(필수)

DynamicDeliveryAttributeMapping

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

DynamicDeliveryAttributeMappingProperties

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

StaticDeliveryAttributeMapping

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

StaticDeliveryAttributeMappingProperties

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

EventHubEventSubscriptionDestination

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

EventHubEventSubscriptionDestinationProperties

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

HybridConnectionEventSubscriptionDestination

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

HybridConnectionEventSubscriptionDestinationProperti...

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

PartnerEventSubscriptionDestination

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

PartnerEventSubscriptionDestinationProperties

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

ServiceBusQueueEventSubscriptionDestination

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

ServiceBusQueueEventSubscriptionDestinationPropertie...

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

ServiceBusTopicEventSubscriptionDestination

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

ServiceBusTopicEventSubscriptionDestinationPropertie...

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

StorageQueueEventSubscriptionDestination

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

StorageQueueEventSubscriptionDestinationProperties

이름 묘사
queueMessageTimeToLiveInSeconds 스토리지 큐 메시지 시간(초)입니다. int
queueName 이벤트 구독의 대상인 스토리지 계정 아래의 Storage 큐 이름입니다. 문자열
resourceId 이벤트 구독의 대상인 큐를 포함하는 스토리지 계정의 Azure 리소스 ID입니다. 문자열

WebHookEventSubscriptionDestination

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

WebHookEventSubscriptionDestinationProperties

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

제약 조건:
중요한 값입니다. 보안 매개 변수로 전달합니다.
maxEventsPerBatch 일괄 처리당 최대 이벤트 수입니다. int
preferredBatchSizeInKilobytes 기본 배치 크기(킬로바이트)입니다. int

EventSubscriptionFilter

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

AdvancedFilter

이름 묘사
열쇠 필터링할 이벤트의 필드/속성입니다. 문자열
operatorType 개체 유형 설정 BoolEquals
isNotNull
IsNullOrUn 정의
NumberGreaterThan
NumberGreaterThanOrEquals
NumberIn
numberInRange

NumberLessThan
NumberLessThanOrEquals
numberNotIn

numberNotInRange

StringBeginsWith
StringContains
StringEndsWith
StringIn
StringNotBeginsWith
StringNotContains
StringNotEndsWith
StringNotIn(필수)

BoolEqualsAdvancedFilter

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

IsNotNullAdvancedFilter

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

IsNullOrUndefinedAdvancedFilter

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

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[][]

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[]

RetryPolicy

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