File tree Expand file tree Collapse file tree
services/observability_pipelines/src/v2/models Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39639,6 +39639,8 @@ components:
3963939639 $ref: '#/components/schemas/ObservabilityPipelineBufferOptionsDiskType'
3964039640 when_full:
3964139641 $ref: '#/components/schemas/ObservabilityPipelineBufferOptionsWhenFull'
39642+ required:
39643+ - max_size
3964239644 type: object
3964339645 ObservabilityPipelineElasticsearchDestination:
3964439646 description: 'The `elasticsearch` destination writes logs to an Elasticsearch
@@ -40892,6 +40894,8 @@ components:
4089240894 $ref: '#/components/schemas/ObservabilityPipelineBufferOptionsMemoryType'
4089340895 when_full:
4089440896 $ref: '#/components/schemas/ObservabilityPipelineBufferOptionsWhenFull'
40897+ required:
40898+ - max_size
4089540899 type: object
4089640900 ObservabilityPipelineMemoryBufferSizeOptions:
4089740901 description: Options for configuring a memory buffer by queue length.
@@ -40905,6 +40909,8 @@ components:
4090540909 $ref: '#/components/schemas/ObservabilityPipelineBufferOptionsMemoryType'
4090640910 when_full:
4090740911 $ref: '#/components/schemas/ObservabilityPipelineBufferOptionsWhenFull'
40912+ required:
40913+ - max_events
4090840914 type: object
4090940915 ObservabilityPipelineMetadataEntry:
4091040916 description: A custom metadata entry.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export class ObservabilityPipelineDiskBufferOptions {
1010 /**
1111 * Maximum size of the disk buffer.
1212 */
13- "maxSize" ? : number ;
13+ "maxSize" : number ;
1414 /**
1515 * The type of the buffer that will be configured, a disk buffer.
1616 */
@@ -37,6 +37,7 @@ export class ObservabilityPipelineDiskBufferOptions {
3737 maxSize : {
3838 baseName : "max_size" ,
3939 type : "number" ,
40+ required : true ,
4041 format : "int64" ,
4142 } ,
4243 type : {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export class ObservabilityPipelineMemoryBufferOptions {
1010 /**
1111 * Maximum size of the memory buffer.
1212 */
13- "maxSize" ? : number ;
13+ "maxSize" : number ;
1414 /**
1515 * The type of the buffer that will be configured, a memory buffer.
1616 */
@@ -37,6 +37,7 @@ export class ObservabilityPipelineMemoryBufferOptions {
3737 maxSize : {
3838 baseName : "max_size" ,
3939 type : "number" ,
40+ required : true ,
4041 format : "int64" ,
4142 } ,
4243 type : {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export class ObservabilityPipelineMemoryBufferSizeOptions {
1010 /**
1111 * Maximum events for the memory buffer.
1212 */
13- "maxEvents" ? : number ;
13+ "maxEvents" : number ;
1414 /**
1515 * The type of the buffer that will be configured, a memory buffer.
1616 */
@@ -37,6 +37,7 @@ export class ObservabilityPipelineMemoryBufferSizeOptions {
3737 maxEvents : {
3838 baseName : "max_events" ,
3939 type : "number" ,
40+ required : true ,
4041 format : "int64" ,
4142 } ,
4243 type : {
You can’t perform that action at this time.
0 commit comments