-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportainer.yaml
13511 lines (13480 loc) · 366 KB
/
portainer.yaml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
basePath: /api
definitions:
auth.authenticatePayload:
properties:
password:
description: Password
example: mypassword
type: string
username:
description: Username
example: admin
type: string
required:
- password
- username
type: object
auth.authenticateResponse:
properties:
jwt:
description: JWT token used to authenticate against the API
example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsInJvbGUiOjEsImV4cCI6MTQ5OTM3NjE1NH0.NJ6vE8FY1WG6jsRQzfMqeatJ4vh2TWAeeYfDhP71YEE
type: string
type: object
auth.oauthPayload:
properties:
code:
description: OAuth code returned from OAuth Provided
type: string
type: object
backup.backupPayload:
properties:
password:
type: string
type: object
backup.backupStatus:
properties:
failed:
type: boolean
timestampUTC:
type: string
type: object
backup.restorePayload:
properties:
fileContent:
description: Content of the backup
items:
type: integer
type: array
fileName:
description: File name
type: string
password:
description: Password to decrypt the backup with
type: string
required:
- fileContent
- fileName
type: object
backup.restoreS3Settings:
properties:
accessKeyID:
description: AWS access key id
type: string
bucketName:
description: AWS S3 bucket name
type: string
filename:
description: AWS S3 filename in the bucket
type: string
password:
type: string
region:
description: AWS S3 region. Default to "us-east-1"
example: us-east-1
type: string
s3CompatibleHost:
description: S3 compatible host
type: string
secretAccessKey:
description: AWS secret access key
type: string
type: object
backup.s3BackupPayload:
properties:
accessKeyID:
description: AWS access key id
type: string
bucketName:
description: AWS S3 bucket name
type: string
cronRule:
description: Crontab rule to make periodical backups
type: string
password:
description: Password to encrypt the backup with
type: string
region:
description: AWS S3 region. Default to "us-east-1"
example: us-east-1
type: string
s3CompatibleHost:
description: S3 compatible host
type: string
secretAccessKey:
description: AWS secret access key
type: string
type: object
chat.chatQueryPayload:
properties:
context:
description: |-
Context is used to build a context that will be added to the prompt sent to OpenAI.
Only accepts a list of specific values:
environment_aware will create a context based on environment information (EnvironmentID parameter is mandatory).
example: environment_aware
type: string
environmentID:
description: |-
EnvironmentID is the ID of the environment for which the chat query is being made
it will be used to retrieve context information about the environment and pass it to then OpenAI API.
Mandatory when environment_aware context is used.
example: 1
type: integer
message:
description: Message is the message that will be forwarded to the OpenAI API.
example: I would like to deploy a wordpress production setup
type: string
model:
description: |-
Model is the name of the OpenAI model that will be used to generate the response.
Only accepts a list of specific values: text-davinci-003, gpt-3.5-turbo, gpt-4
Note that the use of the GPT-4 model requires access to its API.
Optional: will default to gpt-3.5-turbo if not provided.
example: gpt-3.5-turbo
type: string
required:
- context
- message
type: object
chat.chatQueryResponse:
properties:
message:
description: Message is the message that is returned by the OpenAI API.
type: string
yaml:
description: Yaml is the content of the compose / kubernetes manifest file
that was generated by the OpenAI API as part of the response.
type: string
type: object
containers.containerGpusResponse:
properties:
gpus:
type: string
type: object
customtemplates.customTemplateFromFileContentPayload:
properties:
description:
description: Description of the template
example: High performance web server
type: string
fileContent:
description: Content of stack file
type: string
logo:
description: URL of the template's logo
example: https://cloudinovasi.id/assets/img/logos/nginx.png
type: string
note:
description: A note that will be displayed in the UI. Supports HTML content
example: This is my <b>custom</b> template
type: string
platform:
description: |-
Platform associated to the template.
Valid values are: 1 - 'linux', 2 - 'windows'
Required for Docker stacks
enum:
- 1
- 2
example: 1
type: integer
title:
description: Title of the template
example: Nginx
type: string
type:
description: Type of created stack (1 - swarm, 2 - compose, 3 - kubernetes)
enum:
- 1
- 2
- 3
example: 1
type: integer
variables:
description: Definitions of variables in the stack file
items:
$ref: '#/definitions/portaineree.CustomTemplateVariableDefinition'
type: array
required:
- description
- fileContent
- title
- type
type: object
customtemplates.customTemplateFromGitRepositoryPayload:
properties:
composeFilePathInRepository:
default: docker-compose.yml
description: Path to the Stack file inside the Git repository
example: docker-compose.yml
type: string
description:
description: Description of the template
example: High performance web server
type: string
logo:
description: URL of the template's logo
example: https://cloudinovasi.id/assets/img/logos/nginx.png
type: string
note:
description: A note that will be displayed in the UI. Supports HTML content
example: This is my <b>custom</b> template
type: string
platform:
description: |-
Platform associated to the template.
Valid values are: 1 - 'linux', 2 - 'windows'
Required for Docker stacks
enum:
- 1
- 2
example: 1
type: integer
repositoryAuthentication:
description: Use basic authentication to clone the Git repository
example: true
type: boolean
repositoryGitCredentialID:
description: |-
GitCredentialID used to identify the bound git credential. Required when RepositoryAuthentication
is true and RepositoryUsername/RepositoryPassword are not provided
example: 0
type: integer
repositoryPassword:
description: |-
Password used in basic authentication. Required when RepositoryAuthentication is true
and RepositoryGitCredentialID is 0
example: myGitPassword
type: string
repositoryReferenceName:
description: Reference name of a Git repository hosting the Stack file
example: refs/heads/master
type: string
repositoryURL:
description: URL of a Git repository hosting the Stack file
example: https://github.com/openfaas/faas
type: string
repositoryUsername:
description: |-
Username used in basic authentication. Required when RepositoryAuthentication is true
and RepositoryGitCredentialID is 0
example: myGitUsername
type: string
title:
description: Title of the template
example: Nginx
type: string
tlsskipVerify:
description: TLSSkipVerify skips SSL verification when cloning the Git repository
example: false
type: boolean
type:
description: Type of created stack (1 - swarm, 2 - compose)
enum:
- 1
- 2
example: 1
type: integer
variables:
description: Definitions of variables in the stack file
items:
$ref: '#/definitions/portaineree.CustomTemplateVariableDefinition'
type: array
required:
- description
- repositoryURL
- title
- type
type: object
customtemplates.customTemplateUpdatePayload:
properties:
description:
description: Description of the template
example: High performance web server
type: string
fileContent:
description: Content of stack file
type: string
logo:
description: URL of the template's logo
example: https://cloudinovasi.id/assets/img/logos/nginx.png
type: string
note:
description: A note that will be displayed in the UI. Supports HTML content
example: This is my <b>custom</b> template
type: string
platform:
description: |-
Platform associated to the template.
Valid values are: 1 - 'linux', 2 - 'windows'
Required for Docker stacks
enum:
- 1
- 2
example: 1
type: integer
title:
description: Title of the template
example: Nginx
type: string
type:
description: Type of created stack (1 - swarm, 2 - compose, 3 - kubernetes)
enum:
- 1
- 2
- 3
example: 1
type: integer
variables:
description: Definitions of variables in the stack file
items:
$ref: '#/definitions/portaineree.CustomTemplateVariableDefinition'
type: array
required:
- description
- fileContent
- title
- type
type: object
customtemplates.fileResponse:
properties:
fileContent:
type: string
type: object
edgegroups.decoratedEdgeGroup:
properties:
Dynamic:
type: boolean
Endpoints:
items:
description: Environment(Endpoint) identifier. Reference the environment(endpoint)
that will be used for deployment
type: integer
type: array
HasEdgeGroup:
type: boolean
HasEdgeStack:
type: boolean
Id:
description: EdgeGroup Identifier
example: 1
type: integer
Name:
type: string
PartialMatch:
type: boolean
TagIds:
items:
description: Tag identifier
example: 1
type: integer
type: array
endpointTypes:
items:
description: Environment(Endpoint) environment(endpoint) type. 1 for a Docker
environment(endpoint), 2 for an agent on Docker environment(endpoint)
or 3 for an Azure environment(endpoint).
example: 1
type: integer
type: array
type: object
edgegroups.edgeGroupCreatePayload:
properties:
dynamic:
type: boolean
endpoints:
items:
description: Environment(Endpoint) identifier. Reference the environment(endpoint)
that will be used for deployment
type: integer
type: array
name:
type: string
partialMatch:
type: boolean
tagIDs:
items:
description: Tag identifier
example: 1
type: integer
type: array
type: object
edgegroups.edgeGroupUpdatePayload:
properties:
dynamic:
type: boolean
endpoints:
items:
description: Environment(Endpoint) identifier. Reference the environment(endpoint)
that will be used for deployment
type: integer
type: array
name:
type: string
partialMatch:
type: boolean
tagIDs:
items:
description: Tag identifier
example: 1
type: integer
type: array
type: object
edgejobs.edgeJobCreateFromFileContentPayload:
properties:
cronExpression:
type: string
edgeGroups:
items:
description: EdgeGroup Identifier
example: 1
type: integer
type: array
endpoints:
items:
description: Environment(Endpoint) identifier. Reference the environment(endpoint)
that will be used for deployment
type: integer
type: array
fileContent:
type: string
name:
type: string
recurring:
type: boolean
type: object
edgejobs.edgeJobCreateFromFilePayload:
properties:
cronExpression:
type: string
edgeGroups:
items:
description: EdgeGroup Identifier
example: 1
type: integer
type: array
endpoints:
items:
description: Environment(Endpoint) identifier. Reference the environment(endpoint)
that will be used for deployment
type: integer
type: array
file:
items:
type: integer
type: array
name:
type: string
recurring:
type: boolean
type: object
edgejobs.edgeJobFileResponse:
properties:
FileContent:
type: string
type: object
edgejobs.edgeJobUpdatePayload:
properties:
cronExpression:
type: string
edgeGroups:
items:
description: EdgeGroup Identifier
example: 1
type: integer
type: array
endpoints:
items:
description: Environment(Endpoint) identifier. Reference the environment(endpoint)
that will be used for deployment
type: integer
type: array
fileContent:
type: string
name:
type: string
recurring:
type: boolean
type: object
edgejobs.fileResponse:
properties:
FileContent:
type: string
type: object
edgejobs.taskContainer:
properties:
EndpointId:
type: integer
Id:
type: string
LogsStatus:
type: integer
type: object
edgestacks.stackFileResponse:
properties:
StackFileContent:
type: string
type: object
edgestacks.swarmStackFromFileContentPayload:
properties:
deploymentType:
description: |-
Deployment type to deploy this stack
Valid values are: 0 - 'compose', 1 - 'kubernetes', 2 - 'nomad'
for compose stacks will use kompose to convert to kubernetes manifest for kubernetes environments(endpoints)
kubernetes deploy type is enabled only for kubernetes environments(endpoints)
nomad deploy type is enabled only for nomad environments(endpoints)
enum:
- 0
- 1
- 2
example: 0
type: integer
edgeGroups:
description: List of identifiers of EdgeGroups
example:
- 1
items:
description: EdgeGroup Identifier
example: 1
type: integer
type: array
name:
description: Name of the stack
example: myStack
type: string
prePullImage:
description: Pre Pull image
example: false
type: boolean
registries:
description: List of Registries to use for this stack
items:
description: Registry Identifier
type: integer
type: array
retryDeploy:
description: Retry deploy
example: false
type: boolean
stackFileContent:
description: Content of the Stack file
example: |-
version: 3
services:
web:
image:nginx
type: string
useManifestNamespaces:
description: Uses the manifest's namespaces instead of the default one
type: boolean
required:
- name
- stackFileContent
type: object
edgestacks.swarmStackFromFileUploadPayload:
properties:
deploymentType:
description: |-
Deployment type to deploy this stack
Valid values are: 0 - 'compose', 1 - 'kubernetes', 2 - 'nomad'
for compose stacks will use kompose to convert to kubernetes manifest for kubernetes environments(endpoints)
kubernetes deploytype is enabled only for kubernetes environments(endpoints)
nomad deploytype is enabled only for nomad environments(endpoints)
enum:
- 0
- 1
- 2
example: 0
type: integer
edgeGroups:
items:
description: EdgeGroup Identifier
example: 1
type: integer
type: array
name:
type: string
prePullImage:
description: Pre Pull image
example: false
type: boolean
registries:
items:
description: Registry Identifier
type: integer
type: array
retryDeploy:
description: Retry deploy
example: false
type: boolean
stackFileContent:
items:
type: integer
type: array
useManifestNamespaces:
description: Uses the manifest's namespaces instead of the default one
type: boolean
type: object
edgestacks.swarmStackFromGitRepositoryPayload:
properties:
deploymentType:
description: |-
Deployment type to deploy this stack
Valid values are: 0 - 'compose', 1 - 'kubernetes', 2 - 'nomad'
for compose stacks will use kompose to convert to kubernetes manifest for kubernetes environments(endpoints)
kubernetes deploy type is enabled only for kubernetes environments(endpoints)
nomad deploy type is enabled only for nomad environments(endpoints)
enum:
- 0
- 1
- 2
example: 0
type: integer
edgeGroups:
description: List of identifiers of EdgeGroups
example:
- 1
items:
description: EdgeGroup Identifier
example: 1
type: integer
type: array
filePathInRepository:
default: docker-compose.yml
description: Path to the Stack file inside the Git repository
example: docker-compose.yml
type: string
name:
description: Name of the stack
example: myStack
type: string
prePullImage:
description: Pre Pull image
example: false
type: boolean
registries:
description: List of Registries to use for this stack
items:
description: Registry Identifier
type: integer
type: array
repositoryAuthentication:
description: Use basic authentication to clone the Git repository
example: true
type: boolean
repositoryGitCredentialID:
description: GitCredentialID used to identify the binded git credential
example: 0
type: integer
repositoryPassword:
description: Password used in basic authentication. Required when RepositoryAuthentication
is true.
example: myGitPassword
type: string
repositoryReferenceName:
description: Reference name of a Git repository hosting the Stack file
example: refs/heads/master
type: string
repositoryURL:
description: URL of a Git repository hosting the Stack file
example: https://github.com/openfaas/faas
type: string
repositoryUsername:
description: Username used in basic authentication. Required when RepositoryAuthentication
is true.
example: myGitUsername
type: string
retryDeploy:
description: Retry deploy
example: false
type: boolean
tlsskipVerify:
description: TLSSkipVerify skips SSL verification when cloning the Git repository
example: false
type: boolean
useManifestNamespaces:
description: Uses the manifest's namespaces instead of the default one
type: boolean
required:
- name
- repositoryURL
type: object
edgestacks.updateEdgeStackPayload:
properties:
deploymentType:
description: |-
Deployment type to deploy this stack
Valid values are: 0 - 'compose', 1 - 'kubernetes', 2 - 'nomad'
for compose stacks will use kompose to convert to kubernetes manifest for kubernetes environments(endpoints)
kubernetes deploy type is enabled only for kubernetes environments(endpoints)
nomad deploy type is enabled only for nomad environments(endpoints)
type: integer
edgeGroups:
items:
description: EdgeGroup Identifier
example: 1
type: integer
type: array
prePullImage:
type: boolean
rePullImage:
type: boolean
registries:
items:
description: Registry Identifier
type: integer
type: array
retryDeploy:
type: boolean
stackFileContent:
type: string
useManifestNamespaces:
description: Uses the manifest's namespaces instead of the default one
type: boolean
version:
type: integer
type: object
edgeupdateschedules.activeSchedulePayload:
properties:
environmentIDs:
items:
description: Environment(Endpoint) identifier. Reference the environment(endpoint)
that will be used for deployment
type: integer
type: array
type: object
edgeupdateschedules.createPayload:
properties:
groupIDs:
items:
description: EdgeGroup Identifier
example: 1
type: integer
type: array
name:
type: string
registryID:
type: integer
scheduledTime:
type: string
type:
type: integer
version:
type: string
type: object
edgeupdateschedules.decoratedUpdateSchedule:
properties:
created:
description: Created timestamp
example: 1564897200
type: integer
createdBy:
description: Created by user id
example: 1
type: integer
edgeGroupIds:
items:
description: EdgeGroup Identifier
example: 1
type: integer
type: array
edgeStackId:
description: EdgeStack Identifier
example: 1
type: integer
environmentsPreviousVersions:
additionalProperties:
type: string
type: object
id:
description: EdgeUpdateSchedule Identifier
example: 1
type: integer
name:
description: Name of the schedule
example: Update Schedule
type: string
registryId:
description: ID of registry
example: 1
type: integer
scheduledTime:
type: string
status:
type: integer
statusMessage:
type: string
type:
description: Type of the update (1 - update, 2 - rollback)
enum:
- 1
- 2
example: 1
type: integer
version:
example: 1.0.0
type: string
type: object
edgeupdateschedules.updatePayload:
properties:
groupIDs:
items:
description: EdgeGroup Identifier
example: 1
type: integer
type: array
name:
type: string
registryID:
description: ID of registry
example: 1
type: integer
scheduledTime:
type: string
type:
description: Type of the update (1 - update, 2 - rollback)
enum:
- 1
- 2
example: 1
type: integer
version:
type: string
type: object
endpointedge.EdgeAsyncResponse:
properties:
commandInterval:
type: integer
commands:
items:
$ref: '#/definitions/portaineree.EdgeAsyncCommand'
type: array
endpointID:
type: integer
needFullSnapshot:
type: boolean
pingInterval:
type: integer
snapshotInterval:
type: integer
type: object
endpointedge.configResponse:
properties:
edgeUpdateID:
type: integer
name:
type: string
namespace:
description: Namespace to use for Kubernetes manifests, leave empty to use
the namespaces defined in the manifest
type: string
prePullImage:
type: boolean
rePullImage:
type: boolean
registryCredentials:
items:
$ref: '#/definitions/portaineree.EdgeRegistryCredential'
type: array
retryDeploy:
type: boolean
stackFileContent:
type: string
type: object
endpointedge.edgeJobResponse:
properties:
CollectLogs:
description: Whether to collect logs
example: true
type: boolean
CronExpression:
description: A cron expression to schedule this job
example: '* * * * *'
type: string
Id:
description: EdgeJob Identifier
example: 2
type: integer
Script:
description: Script to run
example: echo hello
type: string
Version:
description: Version of this EdgeJob
example: 2
type: integer
type: object
endpointedge.endpointEdgeStatusInspectResponse:
properties:
checkin:
description: The current value of CheckinInterval
example: 5
type: integer
credentials:
type: string
port:
description: The tunnel port
example: 8732
type: integer
schedules:
description: List of requests for jobs to run on the environment(endpoint)
items:
$ref: '#/definitions/endpointedge.edgeJobResponse'
type: array
stacks:
description: List of stacks to be deployed on the environments(endpoints)
items:
$ref: '#/definitions/endpointedge.stackStatusResponse'
type: array
status:
description: Status represents the environment(endpoint) status
example: REQUIRED
type: string
type: object
endpointedge.generateKeyResponse:
properties:
edgeKey:
type: string
type: object
endpointedge.stackStatusResponse:
properties:
id:
description: EdgeStack Identifier
example: 1
type: integer
version:
description: Version of this stack
example: 3
type: integer
type: object
endpointgroups.endpointGroupCreatePayload:
properties:
associatedEndpoints:
description: List of environment(endpoint) identifiers that will be part of
this group
example:
- 1
- 3
items:
description: Environment(Endpoint) identifier. Reference the environment(endpoint)
that will be used for deployment
type: integer
type: array
description:
description: Environment(Endpoint) group description
example: description
type: string
name:
description: Environment(Endpoint) group name
example: my-Environment-group
type: string
tagIDs:
description: List of tag identifiers to which this environment(endpoint) group
is associated
example:
- 1
- 2
items:
description: Tag identifier
example: 1
type: integer
type: array
required:
- name
type: object
endpointgroups.endpointGroupUpdatePayload:
properties:
description:
description: Environment(Endpoint) group description
example: description
type: string
name:
description: Environment(Endpoint) group name
example: my-environment-group
type: string
tagIDs:
description: List of tag identifiers associated to the environment(endpoint)
group
example: