-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathV1Beta1StreamClassSpec.cs
51 lines (43 loc) · 1.48 KB
/
V1Beta1StreamClassSpec.cs
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Arcane.Operator.Models.StreamClass;
public class V1Beta1StreamClassSpec
{
/// <summary>
/// Api group of the stream class
/// </summary>
[JsonPropertyName("streamClassResourceKind")]
public string StreamClassResourceKind { get; set; }
/// <summary>
/// Api group of the stream class
/// </summary>
[JsonPropertyName("apiGroupRef")]
public string ApiGroupRef { get; set; }
/// <summary>
/// Stream class object version
/// </summary>
[JsonPropertyName("apiVersion")]
public string ApiVersion { get; set; }
/// <summary>
/// Stream class object plural name
/// </summary>
[JsonPropertyName("pluralName")]
public string PluralName { get; set; }
/// <summary>
/// Stream class object kind
/// </summary>
[JsonPropertyName("kindRef")]
public string KindRef { get; set; }
/// <summary>
/// Stream class buffer object max capacity.
/// This value is dependent on the expected number of streams that will be created for this class.
/// </summary>
[JsonPropertyName("maxBufferCapacity")]
public int MaxBufferCapacity { get; set; }
/// <summary>
/// Stream class buffer object max capacity.
/// This value is dependent on the expected number of streams that will be created for this class.
/// </summary>
[JsonPropertyName("secretRefs")]
public List<string> SecretRefs { get; set; }
}