-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathopenapi.json
4075 lines (4075 loc) · 135 KB
/
openapi.json
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
{
"swagger": "2.0",
"info": {
"contact": {
"email": "[email protected]",
"name": "Mike Ralphson",
"url": "https://github.com/mermade/aws2openapi",
"x-twitter": "PermittedSoc"
},
"description": "<fullname>AWS OpsWorks CM</fullname> <p>AWS OpsWorks for configuration management (CM) is a service that runs and manages configuration management servers. You can use AWS OpsWorks CM to create and manage AWS OpsWorks for Chef Automate and AWS OpsWorks for Puppet Enterprise servers, and add or remove nodes for the servers to manage.</p> <p> <b>Glossary of terms</b> </p> <ul> <li> <p> <b>Server</b>: A configuration management server that can be highly-available. The configuration management server runs on an Amazon Elastic Compute Cloud (EC2) instance, and may use various other AWS services, such as Amazon Relational Database Service (RDS) and Elastic Load Balancing. A server is a generic abstraction over the configuration manager that you want to use, much like Amazon RDS. In AWS OpsWorks CM, you do not start or stop servers. After you create servers, they continue to run until they are deleted.</p> </li> <li> <p> <b>Engine</b>: The engine is the specific configuration manager that you want to use. Valid values in this release include <code>ChefAutomate</code> and <code>Puppet</code>.</p> </li> <li> <p> <b>Backup</b>: This is an application-level backup of the data that the configuration manager stores. AWS OpsWorks CM creates an S3 bucket for backups when you launch the first server. A backup maintains a snapshot of a server's configuration-related attributes at the time the backup starts.</p> </li> <li> <p> <b>Events</b>: Events are always related to a server. Events are written during server creation, when health checks run, when backups are created, when system maintenance is performed, etc. When you delete a server, the server's events are also deleted.</p> </li> <li> <p> <b>Account attributes</b>: Every account has attributes that are assigned in the AWS OpsWorks CM database. These attributes store information about configuration limits (servers, backups, etc.) and your customer account. </p> </li> </ul> <p> <b>Endpoints</b> </p> <p>AWS OpsWorks CM supports the following endpoints, all HTTPS. You must connect to one of the following endpoints. Your servers can only be accessed or managed within the endpoint in which they are created.</p> <ul> <li> <p>opsworks-cm.us-east-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.us-east-2.amazonaws.com</p> </li> <li> <p>opsworks-cm.us-west-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.us-west-2.amazonaws.com</p> </li> <li> <p>opsworks-cm.ap-northeast-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.ap-southeast-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.ap-southeast-2.amazonaws.com</p> </li> <li> <p>opsworks-cm.eu-central-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.eu-west-1.amazonaws.com</p> </li> </ul> <p>For more information, see <a href=\"https://docs.aws.amazon.com/general/latest/gr/opsworks-service.html\">AWS OpsWorks endpoints and quotas</a> in the AWS General Reference.</p> <p> <b>Throttling limits</b> </p> <p>All API operations allow for five requests per second with a burst of 10 requests per second.</p>",
"license": {
"name": "Apache 2.0 License",
"url": "http://www.apache.org/licenses/"
},
"termsOfService": "https://aws.amazon.com/service-terms/",
"title": "AWS OpsWorks CM",
"version": "2016-11-01",
"x-apiClientRegistration": {
"url": "https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct"
},
"x-apisguru-categories": [
"cloud"
],
"x-logo": {
"backgroundColor": "#FFFFFF",
"url": "https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png"
},
"x-origin": [
{
"contentType": "application/json",
"converter": {
"url": "https://github.com/mermade/aws2openapi",
"version": "1.0.0"
},
"url": "https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/opsworkscm-2016-11-01.normal.json",
"x-apisguru-driver": "external"
}
],
"x-preferred": true,
"x-providerName": "amazonaws.com",
"x-release": "v4",
"x-serviceName": "opsworkscm",
"x-datafire": {
"name": "amazonaws_opsworks_cm",
"type": "openapi"
}
},
"host": "opsworks-cm.us-east-1.amazonaws.com",
"basePath": "/",
"schemes": [
"http"
],
"paths": {
"/#X-Amz-Target=OpsWorksCM_V2016_11_01.AssociateNode": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"enum": [
"OpsWorksCM_V2016_11_01.AssociateNode"
],
"in": "header",
"name": "X-Amz-Target",
"required": true,
"type": "string"
},
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"$ref": "#/definitions/AssociateNodeRequest"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/AssociateNodeResponse"
}
},
"480": {
"description": "InvalidStateException",
"schema": {
"$ref": "#/definitions/InvalidStateException"
}
},
"481": {
"description": "ResourceNotFoundException",
"schema": {
"$ref": "#/definitions/ResourceNotFoundException"
}
},
"482": {
"description": "ValidationException",
"schema": {
"$ref": "#/definitions/ValidationException"
}
}
},
"description": "<p> Associates a new node with the server. For more information about how to disassociate a node, see <a>DisassociateNode</a>.</p> <p> On a Chef server: This command is an alternative to <code>knife bootstrap</code>.</p> <p> Example (Chef): <code>aws opsworks-cm associate-node --server-name <i>MyServer</i> --node-name <i>MyManagedNode</i> --engine-attributes \"Name=<i>CHEF_ORGANIZATION</i>,Value=default\" \"Name=<i>CHEF_NODE_PUBLIC_KEY</i>,Value=<i>public-key-pem</i>\"</code> </p> <p> On a Puppet server, this command is an alternative to the <code>puppet cert sign</code> command that signs a Puppet node CSR. </p> <p> Example (Puppet): <code>aws opsworks-cm associate-node --server-name <i>MyServer</i> --node-name <i>MyManagedNode</i> --engine-attributes \"Name=<i>PUPPET_NODE_CSR</i>,Value=<i>csr-pem</i>\"</code> </p> <p> A node can can only be associated with servers that are in a <code>HEALTHY</code> state. Otherwise, an <code>InvalidStateException</code> is thrown. A <code>ResourceNotFoundException</code> is thrown when the server does not exist. A <code>ValidationException</code> is raised when parameters of the request are not valid. The AssociateNode API call can be integrated into Auto Scaling configurations, AWS Cloudformation templates, or the user data of a server's instance. </p>",
"operationId": "AssociateNode"
}
},
"/#X-Amz-Target=OpsWorksCM_V2016_11_01.CreateBackup": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"enum": [
"OpsWorksCM_V2016_11_01.CreateBackup"
],
"in": "header",
"name": "X-Amz-Target",
"required": true,
"type": "string"
},
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"$ref": "#/definitions/CreateBackupRequest"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/CreateBackupResponse"
}
},
"480": {
"description": "InvalidStateException",
"schema": {
"$ref": "#/definitions/InvalidStateException"
}
},
"481": {
"description": "LimitExceededException",
"schema": {
"$ref": "#/definitions/LimitExceededException"
}
},
"482": {
"description": "ResourceNotFoundException",
"schema": {
"$ref": "#/definitions/ResourceNotFoundException"
}
},
"483": {
"description": "ValidationException",
"schema": {
"$ref": "#/definitions/ValidationException"
}
}
},
"description": "<p> Creates an application-level backup of a server. While the server is in the <code>BACKING_UP</code> state, the server cannot be changed, and no additional backup can be created. </p> <p> Backups can be created for servers in <code>RUNNING</code>, <code>HEALTHY</code>, and <code>UNHEALTHY</code> states. By default, you can create a maximum of 50 manual backups. </p> <p> This operation is asynchronous. </p> <p> A <code>LimitExceededException</code> is thrown when the maximum number of manual backups is reached. An <code>InvalidStateException</code> is thrown when the server is not in any of the following states: RUNNING, HEALTHY, or UNHEALTHY. A <code>ResourceNotFoundException</code> is thrown when the server is not found. A <code>ValidationException</code> is thrown when parameters of the request are not valid. </p>",
"operationId": "CreateBackup"
}
},
"/#X-Amz-Target=OpsWorksCM_V2016_11_01.CreateServer": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"enum": [
"OpsWorksCM_V2016_11_01.CreateServer"
],
"in": "header",
"name": "X-Amz-Target",
"required": true,
"type": "string"
},
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"$ref": "#/definitions/CreateServerRequest"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/CreateServerResponse"
}
},
"480": {
"description": "LimitExceededException",
"schema": {
"$ref": "#/definitions/LimitExceededException"
}
},
"481": {
"description": "ResourceAlreadyExistsException",
"schema": {
"$ref": "#/definitions/ResourceAlreadyExistsException"
}
},
"482": {
"description": "ResourceNotFoundException",
"schema": {
"$ref": "#/definitions/ResourceNotFoundException"
}
},
"483": {
"description": "ValidationException",
"schema": {
"$ref": "#/definitions/ValidationException"
}
}
},
"description": "<p> Creates and immedately starts a new server. The server is ready to use when it is in the <code>HEALTHY</code> state. By default, you can create a maximum of 10 servers. </p> <p> This operation is asynchronous. </p> <p> A <code>LimitExceededException</code> is thrown when you have created the maximum number of servers (10). A <code>ResourceAlreadyExistsException</code> is thrown when a server with the same name already exists in the account. A <code>ResourceNotFoundException</code> is thrown when you specify a backup ID that is not valid or is for a backup that does not exist. A <code>ValidationException</code> is thrown when parameters of the request are not valid. </p> <p> If you do not specify a security group by adding the <code>SecurityGroupIds</code> parameter, AWS OpsWorks creates a new security group. </p> <p> <i>Chef Automate:</i> The default security group opens the Chef server to the world on TCP port 443. If a KeyName is present, AWS OpsWorks enables SSH access. SSH is also open to the world on TCP port 22. </p> <p> <i>Puppet Enterprise:</i> The default security group opens TCP ports 22, 443, 4433, 8140, 8142, 8143, and 8170. If a KeyName is present, AWS OpsWorks enables SSH access. SSH is also open to the world on TCP port 22. </p> <p>By default, your server is accessible from any IP address. We recommend that you update your security group rules to allow access from known IP addresses and address ranges only. To edit security group rules, open Security Groups in the navigation pane of the EC2 management console. </p> <p>To specify your own domain for a server, and provide your own self-signed or CA-signed certificate and private key, specify values for <code>CustomDomain</code>, <code>CustomCertificate</code>, and <code>CustomPrivateKey</code>.</p>",
"operationId": "CreateServer"
}
},
"/#X-Amz-Target=OpsWorksCM_V2016_11_01.DeleteBackup": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"enum": [
"OpsWorksCM_V2016_11_01.DeleteBackup"
],
"in": "header",
"name": "X-Amz-Target",
"required": true,
"type": "string"
},
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"$ref": "#/definitions/DeleteBackupRequest"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/DeleteBackupResponse"
}
},
"480": {
"description": "InvalidStateException",
"schema": {
"$ref": "#/definitions/InvalidStateException"
}
},
"481": {
"description": "ResourceNotFoundException",
"schema": {
"$ref": "#/definitions/ResourceNotFoundException"
}
},
"482": {
"description": "ValidationException",
"schema": {
"$ref": "#/definitions/ValidationException"
}
}
},
"description": "<p> Deletes a backup. You can delete both manual and automated backups. This operation is asynchronous. </p> <p> An <code>InvalidStateException</code> is thrown when a backup deletion is already in progress. A <code>ResourceNotFoundException</code> is thrown when the backup does not exist. A <code>ValidationException</code> is thrown when parameters of the request are not valid. </p>",
"operationId": "DeleteBackup"
}
},
"/#X-Amz-Target=OpsWorksCM_V2016_11_01.DeleteServer": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"enum": [
"OpsWorksCM_V2016_11_01.DeleteServer"
],
"in": "header",
"name": "X-Amz-Target",
"required": true,
"type": "string"
},
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"$ref": "#/definitions/DeleteServerRequest"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/DeleteServerResponse"
}
},
"480": {
"description": "InvalidStateException",
"schema": {
"$ref": "#/definitions/InvalidStateException"
}
},
"481": {
"description": "ResourceNotFoundException",
"schema": {
"$ref": "#/definitions/ResourceNotFoundException"
}
},
"482": {
"description": "ValidationException",
"schema": {
"$ref": "#/definitions/ValidationException"
}
}
},
"description": "<p> Deletes the server and the underlying AWS CloudFormation stacks (including the server's EC2 instance). When you run this command, the server state is updated to <code>DELETING</code>. After the server is deleted, it is no longer returned by <code>DescribeServer</code> requests. If the AWS CloudFormation stack cannot be deleted, the server cannot be deleted. </p> <p> This operation is asynchronous. </p> <p> An <code>InvalidStateException</code> is thrown when a server deletion is already in progress. A <code>ResourceNotFoundException</code> is thrown when the server does not exist. A <code>ValidationException</code> is raised when parameters of the request are not valid. </p> <p> </p>",
"operationId": "DeleteServer"
}
},
"/#X-Amz-Target=OpsWorksCM_V2016_11_01.DescribeAccountAttributes": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"enum": [
"OpsWorksCM_V2016_11_01.DescribeAccountAttributes"
],
"in": "header",
"name": "X-Amz-Target",
"required": true,
"type": "string"
},
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"$ref": "#/definitions/DescribeAccountAttributesRequest"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/DescribeAccountAttributesResponse"
}
}
},
"description": "<p> Describes your OpsWorks-CM account attributes. </p> <p> This operation is synchronous. </p>",
"operationId": "DescribeAccountAttributes"
}
},
"/#X-Amz-Target=OpsWorksCM_V2016_11_01.DescribeBackups": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"description": "Pagination limit",
"in": "query",
"name": "MaxResults",
"required": false,
"type": "string"
},
{
"description": "Pagination token",
"in": "query",
"name": "NextToken",
"required": false,
"type": "string"
},
{
"enum": [
"OpsWorksCM_V2016_11_01.DescribeBackups"
],
"in": "header",
"name": "X-Amz-Target",
"required": true,
"type": "string"
},
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"$ref": "#/definitions/DescribeBackupsRequest"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/DescribeBackupsResponse"
}
},
"480": {
"description": "ValidationException",
"schema": {
"$ref": "#/definitions/ValidationException"
}
},
"481": {
"description": "ResourceNotFoundException",
"schema": {
"$ref": "#/definitions/ResourceNotFoundException"
}
},
"482": {
"description": "InvalidNextTokenException",
"schema": {
"$ref": "#/definitions/InvalidNextTokenException"
}
}
},
"description": "<p> Describes backups. The results are ordered by time, with newest backups first. If you do not specify a BackupId or ServerName, the command returns all backups. </p> <p> This operation is synchronous. </p> <p> A <code>ResourceNotFoundException</code> is thrown when the backup does not exist. A <code>ValidationException</code> is raised when parameters of the request are not valid. </p>",
"operationId": "DescribeBackups"
}
},
"/#X-Amz-Target=OpsWorksCM_V2016_11_01.DescribeEvents": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"description": "Pagination limit",
"in": "query",
"name": "MaxResults",
"required": false,
"type": "string"
},
{
"description": "Pagination token",
"in": "query",
"name": "NextToken",
"required": false,
"type": "string"
},
{
"enum": [
"OpsWorksCM_V2016_11_01.DescribeEvents"
],
"in": "header",
"name": "X-Amz-Target",
"required": true,
"type": "string"
},
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"$ref": "#/definitions/DescribeEventsRequest"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/DescribeEventsResponse"
}
},
"480": {
"description": "ValidationException",
"schema": {
"$ref": "#/definitions/ValidationException"
}
},
"481": {
"description": "InvalidNextTokenException",
"schema": {
"$ref": "#/definitions/InvalidNextTokenException"
}
},
"482": {
"description": "ResourceNotFoundException",
"schema": {
"$ref": "#/definitions/ResourceNotFoundException"
}
}
},
"description": "<p> Describes events for a specified server. Results are ordered by time, with newest events first. </p> <p> This operation is synchronous. </p> <p> A <code>ResourceNotFoundException</code> is thrown when the server does not exist. A <code>ValidationException</code> is raised when parameters of the request are not valid. </p>",
"operationId": "DescribeEvents"
}
},
"/#X-Amz-Target=OpsWorksCM_V2016_11_01.DescribeNodeAssociationStatus": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Credential",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Security-Token",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Signature",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-SignedHeaders",
"required": false,
"type": "string"
}
],
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"enum": [
"OpsWorksCM_V2016_11_01.DescribeNodeAssociationStatus"
],
"in": "header",
"name": "X-Amz-Target",
"required": true,
"type": "string"
},
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"$ref": "#/definitions/DescribeNodeAssociationStatusRequest"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/DescribeNodeAssociationStatusResponse"
}
},
"480": {
"description": "ResourceNotFoundException",
"schema": {
"$ref": "#/definitions/ResourceNotFoundException"
}
},
"481": {
"description": "ValidationException",
"schema": {
"$ref": "#/definitions/ValidationException"
}
}
},
"description": "<p> Returns the current status of an existing association or disassociation request. </p> <p> A <code>ResourceNotFoundException</code> is thrown when no recent association or disassociation request with the specified token is found, or when the server does not exist. A <code>ValidationException</code> is raised when parameters of the request are not valid. </p>",
"operationId": "DescribeNodeAssociationStatus"
}
},
"/#X-Amz-Target=OpsWorksCM_V2016_11_01.DescribeServers": {
"parameters": [
{
"in": "header",
"name": "X-Amz-Content-Sha256",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Date",
"required": false,
"type": "string"
},
{
"in": "header",
"name": "X-Amz-Algorithm",
"required": false,
"type": "string"
},
{
"in": "header",