blob: ec29b82377f369cc081c5d1b8e873f209e9d51ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
tosca_definitions_version: tosca_simple_yaml_1_0_0
node_types:
policy.nodes.Root:
derived_from: tosca.nodes.Root
properties:
policyDescription:
required: false
type: string
policyName:
required: true
type: string
policyScope:
required: true
type: string
policyVersion:
required: true
type: string
policy.nodes.dcaegen2.services.pm-mapper:
derived_from: policy.nodes.Root
properties:
buscontroller_feed_subscription_endpoint:
type: string
description: DMAAP Bus Controller subscription endpoint
dmaap_dr_delete_endpoint:
type: string
description: DMAAP Data Router endpoint to delete file
dmaap_dr_feed_id:
type: string
description: ID of the data router feed that the PM Mapper will subscribe to
policy:
type: string
description: PM Mapper policy JSON string
|