다음을 통해 공유


Microsoft.IoTOperations instances/dataflowProfiles

Bicep 리소스 정의

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

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

리소스 형식

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

resource symbolicname 'Microsoft.IoTOperations/instances/dataflowProfiles@2025-10-01' = {
  parent: resourceSymbolicName
  extendedLocation: {
    name: 'string'
    type: 'string'
  }
  name: 'string'
  properties: {
    diagnostics: {
      logs: {
        level: 'string'
      }
      metrics: {
        prometheusPort: int
      }
    }
    instanceCount: int
  }
}

속성 값

Microsoft.IoTOperations/instances/dataflowProfiles

Name Description Value
extendedLocation 리소스의 에지 위치입니다. ExtendedLocation
name 리소스 이름 string

Constraints:
최소 길이 = 3
최대 길이 = 63
패턴 = ^[a-z0-9][a-z0-9-]*[a-z0-9]$(필수)
parent Bicep에서 자식 리소스에 대한 부모 리소스를 지정할 수 있습니다. 자식 리소스가 부모 리소스 외부에서 선언된 경우에만 이 속성을 추가해야 합니다.

자세한 내용은 부모 리소스외부의 자식 리소스 참조하세요.
형식 리소스의 기호 이름: 인스턴스
properties 이 리소스에 대한 리소스별 속성입니다. DataflowProfileProperties

DataflowProfileProperties

Name Description Value
diagnostics 사양은 NBC 진단 설정의 원하는 ID를 정의합니다. ProfileDiagnostics
instanceCount 데이터 흐름 프로필의 크기를 수동으로 조정하려면 실행하려는 최대 인스턴스 수를 지정합니다. int

Constraints:
최소값 = 1
최대값 = 20

DiagnosticsLogs

Name Description Value
level 로그 수준입니다. 예 - 'debug', 'info', 'warn', 'error', 'trace'. string

ExtendedLocation

Name Description Value
name 확장된 위치의 이름입니다. string(필수)
type ExtendedLocation의 형식입니다. 'CustomLocation'(필수)

Metrics

Name Description Value
prometheusPort 메트릭을 노출할 prometheus 포트입니다. int

Constraints:
최소값 = 0
최대값 = 65535

ProfileDiagnostics

Name Description Value
logs 리소스에 대한 진단 로그 설정입니다. DiagnosticsLogs
metrics 리소스에 대한 메트릭 설정입니다. Metrics

ARM 템플릿 리소스 정의

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

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

리소스 형식

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

{
  "type": "Microsoft.IoTOperations/instances/dataflowProfiles",
  "apiVersion": "2025-10-01",
  "name": "string",
  "extendedLocation": {
    "name": "string",
    "type": "string"
  },
  "properties": {
    "diagnostics": {
      "logs": {
        "level": "string"
      },
      "metrics": {
        "prometheusPort": "int"
      }
    },
    "instanceCount": "int"
  }
}

속성 값

Microsoft.IoTOperations/instances/dataflowProfiles

Name Description Value
apiVersion api 버전 '2025-10-01'
extendedLocation 리소스의 에지 위치입니다. ExtendedLocation
name 리소스 이름 string

Constraints:
최소 길이 = 3
최대 길이 = 63
패턴 = ^[a-z0-9][a-z0-9-]*[a-z0-9]$(필수)
properties 이 리소스에 대한 리소스별 속성입니다. DataflowProfileProperties
type 리소스 종류 'Microsoft.IoTOperations/instances/dataflowProfiles'

DataflowProfileProperties

Name Description Value
diagnostics 사양은 NBC 진단 설정의 원하는 ID를 정의합니다. ProfileDiagnostics
instanceCount 데이터 흐름 프로필의 크기를 수동으로 조정하려면 실행하려는 최대 인스턴스 수를 지정합니다. int

Constraints:
최소값 = 1
최대값 = 20

DiagnosticsLogs

Name Description Value
level 로그 수준입니다. 예 - 'debug', 'info', 'warn', 'error', 'trace'. string

ExtendedLocation

Name Description Value
name 확장된 위치의 이름입니다. string(필수)
type ExtendedLocation의 형식입니다. 'CustomLocation'(필수)

Metrics

Name Description Value
prometheusPort 메트릭을 노출할 prometheus 포트입니다. int

Constraints:
최소값 = 0
최대값 = 65535

ProfileDiagnostics

Name Description Value
logs 리소스에 대한 진단 로그 설정입니다. DiagnosticsLogs
metrics 리소스에 대한 메트릭 설정입니다. Metrics

사용 예제

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

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

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

리소스 형식

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.IoTOperations/instances/dataflowProfiles@2025-10-01"
  name = "string"
  parent_id = "string"
  body = {
    extendedLocation = {
      name = "string"
      type = "string"
    }
    properties = {
      diagnostics = {
        logs = {
          level = "string"
        }
        metrics = {
          prometheusPort = int
        }
      }
      instanceCount = int
    }
  }
}

속성 값

Microsoft.IoTOperations/instances/dataflowProfiles

Name Description Value
extendedLocation 리소스의 에지 위치입니다. ExtendedLocation
name 리소스 이름 string

Constraints:
최소 길이 = 3
최대 길이 = 63
패턴 = ^[a-z0-9][a-z0-9-]*[a-z0-9]$(필수)
parent_id 이 리소스의 부모인 리소스의 ID입니다. 형식 리소스의 ID: 인스턴스
properties 이 리소스에 대한 리소스별 속성입니다. DataflowProfileProperties
type 리소스 종류 "Microsoft.IoTOperations/instances/dataflowProfiles@2025-10-01"

DataflowProfileProperties

Name Description Value
diagnostics 사양은 NBC 진단 설정의 원하는 ID를 정의합니다. ProfileDiagnostics
instanceCount 데이터 흐름 프로필의 크기를 수동으로 조정하려면 실행하려는 최대 인스턴스 수를 지정합니다. int

Constraints:
최소값 = 1
최대값 = 20

DiagnosticsLogs

Name Description Value
level 로그 수준입니다. 예 - 'debug', 'info', 'warn', 'error', 'trace'. string

ExtendedLocation

Name Description Value
name 확장된 위치의 이름입니다. string(필수)
type ExtendedLocation의 형식입니다. 'CustomLocation'(필수)

Metrics

Name Description Value
prometheusPort 메트릭을 노출할 prometheus 포트입니다. int

Constraints:
최소값 = 0
최대값 = 65535

ProfileDiagnostics

Name Description Value
logs 리소스에 대한 진단 로그 설정입니다. DiagnosticsLogs
metrics 리소스에 대한 메트릭 설정입니다. Metrics