Skip to content

Commit c58a4b4

Browse files
fix(smartevents-mgmt/v1): update smartevents-mgmt/v1 SDK (#383)
Co-authored-by: app-services-ci <app-services-ci@users.noreply.github.com>
1 parent 9228d82 commit c58a4b4

16 files changed

Lines changed: 284 additions & 170 deletions

.openapi/smartevents_mgmt_v2.yaml

Lines changed: 61 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -845,16 +845,22 @@ components:
845845
type: object
846846
properties:
847847
name:
848+
description: The name of the bridge
848849
minLength: 1
849850
type: string
851+
example: bridge1
850852
nullable: false
851853
cloud_provider:
854+
description: The cloud provider where the bridge resides
852855
minLength: 1
853856
type: string
857+
example: aws
854858
nullable: false
855859
region:
860+
description: The cloud provider region where the bridge resides
856861
minLength: 1
857862
type: string
863+
example: us-east-1
858864
nullable: false
859865
BridgeResponse:
860866
required:
@@ -864,18 +870,21 @@ components:
864870
- submitted_at
865871
- status
866872
- owner
873+
- name
867874
type: object
868875
properties:
869876
kind:
877+
description: The kind (type) of this resource
870878
type: string
871879
nullable: false
872880
id:
881+
description: The unique identifier of this resource
873882
type: string
874883
nullable: false
875-
name:
876-
type: string
877884
href:
885+
description: "The URL of this resource, without the protocol"
878886
type: string
887+
example: example.com/resource
879888
nullable: false
880889
submitted_at:
881890
format: date-time
@@ -890,17 +899,34 @@ components:
890899
status:
891900
allOf:
892901
- $ref: '#/components/schemas/ManagedResourceStatus'
893-
- nullable: false
902+
- description: The status of this resource
903+
example: ready
904+
nullable: false
894905
owner:
906+
description: The user that owns this resource
895907
type: string
908+
example: userName
909+
nullable: false
910+
name:
911+
description: The name of the bridge
912+
type: string
913+
example: bridge1
896914
nullable: false
897915
endpoint:
916+
description: The HTTPS endpoint on which the bridge accepts events
898917
type: string
918+
example: https://example.com/bridge
899919
cloud_provider:
920+
description: The cloud provider where the bridge resides
900921
type: string
922+
example: aws
901923
region:
924+
description: The cloud provider region where the bridge resides
902925
type: string
926+
example: us-east
903927
status_message:
928+
description: A detailed status message in case there is a problem with the
929+
bridge
904930
type: string
905931
CloudProviderListResponse:
906932
required:
@@ -939,15 +965,21 @@ components:
939965
type: object
940966
properties:
941967
kind:
968+
description: The kind (type) of this resource
942969
type: string
943970
nullable: false
944971
id:
972+
description: The unique identifier of this resource
945973
type: string
946974
nullable: false
947975
name:
976+
description: The name of this resource
948977
type: string
978+
example: resourceName1
949979
href:
980+
description: "The URL of this resource, without the protocol"
950981
type: string
982+
example: example.com/resource
951983
nullable: false
952984
display_name:
953985
type: string
@@ -1011,10 +1043,13 @@ components:
10111043
type: object
10121044
properties:
10131045
kind:
1046+
description: The kind (type) of this resource
10141047
type: string
10151048
nullable: false
10161049
name:
1050+
description: The name of this resource
10171051
type: string
1052+
example: resourceName1
10181053
code:
10191054
type: string
10201055
reason:
@@ -1117,15 +1152,21 @@ components:
11171152
type: object
11181153
properties:
11191154
kind:
1155+
description: The kind (type) of this resource
11201156
type: string
11211157
nullable: false
11221158
id:
1159+
description: The unique identifier of this resource
11231160
type: string
11241161
nullable: false
11251162
name:
1163+
description: The name of this resource
11261164
type: string
1165+
example: resourceName1
11271166
href:
1167+
description: "The URL of this resource, without the protocol"
11281168
type: string
1169+
example: example.com/resource
11291170
nullable: false
11301171
ProcessingErrorListResponse:
11311172
required:
@@ -1200,10 +1241,14 @@ components:
12001241
type: object
12011242
properties:
12021243
name:
1244+
description: The name of the processor
12031245
minLength: 1
12041246
type: string
1247+
example: processor1
12051248
nullable: false
12061249
flows:
1250+
description: "The Camel YAML DSL code, formatted as JSON, that defines the\
1251+
\ flows in the processor"
12071252
type: object
12081253
nullable: false
12091254
ProcessorResponse:
@@ -1219,13 +1264,17 @@ components:
12191264
type: object
12201265
properties:
12211266
kind:
1267+
description: The kind (type) of this resource
12221268
type: string
12231269
nullable: false
12241270
id:
1271+
description: The unique identifier of this resource
12251272
type: string
12261273
nullable: false
12271274
href:
1275+
description: "The URL of this resource, without the protocol"
12281276
type: string
1277+
example: example.com/resource
12291278
nullable: false
12301279
submitted_at:
12311280
format: date-time
@@ -1240,14 +1289,22 @@ components:
12401289
status:
12411290
allOf:
12421291
- $ref: '#/components/schemas/ManagedResourceStatus'
1243-
- nullable: false
1292+
- description: The status of this resource
1293+
example: ready
1294+
nullable: false
12441295
owner:
1296+
description: The user that owns this resource
12451297
type: string
1298+
example: userName
12461299
nullable: false
12471300
name:
1301+
description: The name of the processor
12481302
type: string
1303+
example: processor1
12491304
nullable: false
12501305
flows:
1306+
description: "The Camel YAML DSL code, formatted as JSON, that defines the\
1307+
\ flows in the processor"
12511308
type: object
12521309
nullable: false
12531310
status_message:

0 commit comments

Comments
 (0)