Skip to content

Commit 0443c07

Browse files
committed
Add missing file. Also refer to LAG MACsec secY
1 parent 7feb1a4 commit 0443c07

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
components:
2+
schemas:
3+
SecureEntity.DataPlane:
4+
description: >-
5+
A container of data plane properties.
6+
type: object
7+
properties:
8+
choice:
9+
description: >-
10+
Choose "encapsulation" so that data packets are sent with MACsec encapsulation. Choose "no_encapsulation" so that data packets are sent without MACsec encapsulation.
11+
type: string
12+
default: encapsulation
13+
x-field-uid: 1
14+
x-enum:
15+
encapsulation:
16+
x-field-uid: 1
17+
no_encapsulation:
18+
x-field-uid: 2
19+
encapsulation:
20+
description: >-
21+
A container of encapsulation properties for a secure entity(SecY).
22+
$ref: './tx.yaml#/components/schemas/SecureEntity.DataPlane.Encapsulation'
23+
x-field-uid: 2
24+
25+
SecureEntity.DataPlane.Encapsulation:
26+
description: >-
27+
A container of encapsulation properties for a secure entity(SecY).
28+
type: object
29+
required: [crypto_engine]
30+
properties:
31+
tx:
32+
description: >-
33+
Tx properties of SecY.
34+
$ref: './tx.yaml#/components/schemas/SecureEntity.DataPlane.Tx'
35+
x-field-uid: 1
36+
rx:
37+
description: >-
38+
Rx properties of SecY.
39+
$ref: './rx.yaml#/components/schemas/SecureEntity.DataPlane.Rx'
40+
x-field-uid: 2
41+
crypto_engine:
42+
description: >-
43+
Crypto engine properties of SecY.
44+
$ref: './cryptoengine.yaml#/components/schemas/SecureEntity.CryptoEngine'
45+
x-field-uid: 3

0 commit comments

Comments
 (0)