-
Notifications
You must be signed in to change notification settings - Fork 29
/
plugin_1_4.yaml
5374 lines (5366 loc) · 213 KB
/
plugin_1_4.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
plugins:
aws:
executor: central_deployment_agent
package_name: cloudify-aws-plugin
package_version: 3.2.4
data_types:
cloudify.datatypes.swift.Connection:
properties:
swift_username:
description: >
The USERNAME of your Swift.
type: string
required: true
swift_password:
description: >
The PASSWORD of your Swift.
type: string
required: true
swift_auth_url:
description: >
The auth url in order to authenticate against and generate token
type: string
required: true
swift_region_name:
description: >
The server region name, such as us-east-1. (Not us-east-1b, which is an availability zone, or US East, which is a Region.)
type: string
required: true
cloudify.datatypes.aws.ConnectionConfig:
properties:
aws_session_token:
description: Session token.
type: string
required: false
aws_access_key_id:
description: >
The ID of your AWS ACCESS KEY ID.
type: string
required: false
aws_secret_access_key:
description: >
The ID of your AWS SECRET ACCESS KEY.
type: string
required: false
region_name:
description: >
The server region name, such as us-east-1. (Not us-east-1b, which is an availability zone, or US East, which is a Region.)
type: string
required: false
endpoint_url:
description: >
The complete URL to use for the constructed client. Normally, botocore will automatically construct the appropriate URL to use when communicating with a service. You can specify a complete URL (including the "http/https" scheme) to override this behavior. If this value is provided, then ``use_ssl`` is ignored.
type: string
required: false
api_version:
type: string
required: false
description: The API Version to use, if not latest.
assume_role:
type: string
required: false
description: The role ARN that Cloudify manager instance is able to assume.
additional_config:
required: false
description: >
An abstraction of the 'config' parameter accepted by boto3.client function. This parameter should only be used by experienced users. Example usage: vm:
type: cloudify.nodes.aws.ec2.Instances
properties:
client_config:
additional_config:
retries:
max_attempts: 10
mode: adaptive
cloudify.datatypes.aws.dynamodb.Table.config:
properties:
TableName:
description: The name of the table to create.
type: string
required: true
AttributeDefinitions:
description: An array of attributes that describe the key schema (dict) for the table and indexes. Keys are AttributeName, AttributeType.
default: []
KeySchema:
description: Specifies the attributes that make up the primary key for a table or an index. The attributes in KeySchema must also be defined in the AttributeDefinitions array. For more information, see Data Model in the Amazon DynamoDB Developer Guide .
default: []
LocalSecondaryIndexes:
description: One or more local secondary indexes (the maximum is five) to be created on the table. Each index is scoped to a given partition key value. There is a 10 GB size limit per partition key value; otherwise, the size of a local secondary index is unconstrained.
default: []
GlobalSecondaryIndexes:
description: One or more global secondary indexes (the maximum is five) to be created on the table..
default: []
BillingMode:
description: Controls how you are charged for read and write throughput and how you manage capacity. This setting can be changed later. Either 'PROVISIONED' or 'PAY_PER_REQUEST'.
type: string
required: false
ProvisionedThroughput:
description: Represents the provisioned throughput settings for a specified table or index. The settings can be modified using the UpdateTable operation.
default: {}
StreamSpecification:
description: The settings for DynamoDB Streams on the table.
default: {}
SSESpecification:
description: Represents the settings used to enable server-side encryption.
default: {}
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/dynamodb.html#DynamoDB.Client.create_table
default: {}
cloudify.datatypes.aws.iam.Group.config:
properties:
Path:
description: The path to the group. For more information about paths, see IAM Identifiers in the IAM User Guide.
type: string
required: false
GroupName:
description: The name of the group to create. Do not include the path in this value.
type: string
required: true
default: cfy_CloudifyGroup
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/iam.html#IAM.Client.create_group
default: {}
cloudify.datatypes.aws.iam.AccessKey.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/iam.html#IAM.Client.create_access_key
default: {}
cloudify.datatypes.aws.iam.LoginProfile.config:
properties:
UserName:
type: string
description: The name of the IAM user that the new key will belong to.
required: false
Password:
type: string
description: The new password for the user.
required: false
PasswordResetRequired:
type: boolean
description: Specifies whether the user is required to set a new password on next sign-in.
required: false
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/iam.html#IAM.Client.create_login_profile
default: {}
cloudify.datatypes.aws.iam.User.config:
properties:
UserName:
type: string
description: The name of the IAM user that the new key will belong to.
required: false
Path:
description: The path to the user. For more information about paths, see IAM Identifiers in the IAM User Guide.
type: string
required: false
PermissionsBoundary:
description: The ARN of the policy that is used to set the permissions boundary for the user.
type: string
required: false
Tags:
description: A list of tags that you want to attach to the newly created user. Each tag consists of a key name and an associated value. For more information about tagging, see Tagging IAM Identities in the IAM User Guide.
default: []
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/iam.html#IAM.Client.create_user
default: {}
cloudify.datatypes.aws.iam.Role.config:
properties:
AssumeRolePolicyDocument:
description: The trust relationship policy document that grants an entity permission to assume the role.
required: true
default:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action: sts:AssumeRole
RoleName:
description: The name of the role to create.
type: string
required: true
default: cfy_lambdarole
Path:
description: The path to the role.
type: string
required: false
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/iam.html#IAM.Client.create_role
default: {}
cloudify.datatypes.aws.iam.RolePolicy.config:
properties:
RoleName:
type: string
description: The name of the role to associate the policy with. Required if no relationship to a Role was provided.
required: false
PolicyName:
type: string
description: The name of the policy document.
required: true
PolicyDocument:
type: string
description: The policy document.
required: true
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/iam.html#IAM.Client.put_role_policy
default: {}
cloudify.datatypes.aws.iam.InstanceProfile.config:
properties:
InstanceProfileName:
type: string
description: The name of the instance profile to create.
required: true
default: cfy_iam_user_instance_profile
Path:
type: string
description: The path to the instance profile.
required: true
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/iam.html#IAM.Client.create_instance_profile
default: {}
cloudify.datatypes.aws.iam.Policy.config:
properties:
PolicyName:
type: string
description: The friendly name of the policy.
required: true
Path:
type: string
description: The path to the policy.
required: false
PolicyDocument:
type: string
description: The policy document.
required: true
Description:
type: string
description: A friendly description of the policy.
required: false
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/iam.html#IAM.Client.create_policy
default: {}
cloudify.datatypes.aws.lambda.Function.config:
properties:
FunctionName:
type: string
description: The name of the Lambda function.
required: true
Runtime:
type: string
description: The runtime version for the function.
required: true
Handler:
type: string
description: The name of the method within your code that Lambda calls to execute your function.
required: true
Code:
description: The code for the function.
required: true
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/lambda.html#Lambda.Client.create_function
default: {}
cloudify.datatypes.aws.lambda.Invoke.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/lambda.html#Lambda.Client.invoke
default: {}
cloudify.datatypes.aws.lambda.Permission.config:
properties:
FunctionName:
type: string
description: The name of the Lambda function. Required. May also be provided from a relationship to a cloudify.nodes.aws.lambda.Function.
required: false
StatementId:
type: string
description: A unique statement identifier.
required: true
Action:
type: string
description: The AWS Lambda action you want to allow in this statement.
required: true
Principal:
type: string
description: The principal who is getting this permission.
required: true
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/lambda.html#Lambda.Client.add_permission
default: {}
cloudify.datatypes.aws.rds.Instance.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/rds.html#RDS.Client.create_db_instance
default: {}
cloudify.datatypes.aws.rds.InstanceReadReplica.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/rds.html#RDS.Client.create_db_instance_read_replica
default: {}
cloudify.datatypes.aws.rds.SubnetGroup.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/rds.html#RDS.Client.create_db_subnet_group
default: {}
cloudify.datatypes.aws.rds.OptionGroup.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/rds.html#RDS.Client.create_option_group
default: {}
cloudify.datatypes.aws.rds.Option.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/rds.html#RDS.Client.modify_option_group
default: {}
cloudify.datatypes.aws.rds.ParameterGroup.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/rds.html#RDS.Client.create_db_parameter_group
default: {}
cloudify.datatypes.aws.rds.Parameter.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/rds.html#RDS.Client.modify_db_parameter_group
default: {}
cloudify.datatypes.aws.route53.HostedZone.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/route53.html#Route53.Client.create_hosted_zone
default: {}
cloudify.datatypes.aws.route53.RecordSet.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/route53.html#Route53.Client.change_resource_record_sets
default: {}
cloudify.datatypes.aws.elb.LoadBalancer.config:
properties:
Name:
type: string
description: The name of the load balancer.
required: true
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/elbv2.html#ElasticLoadBalancingv2.Client.create_load_balancer
default: {}
cloudify.datatypes.aws.elb.TargetGroup.config:
properties:
Name:
type: string
description: The name of the target group.
required: true
Protocol:
type: string
description: The protocol to use for routing traffic to the targets.
required: false
Port:
type: string
description: The port on which the targets receive traffic.
required: false
HealthCheckProtocol:
type: string
description: The protocol the load balancer uses when performing health checks on targets.
required: false
HealthCheckPort:
type: string
description: The port the load balancer uses when performing health checks on targets..
required: false
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/elbv2.html#ElasticLoadBalancingv2.Client.create_target_group
default: {}
cloudify.datatypes.aws.elb.Listener.config:
properties:
Protocol:
type: string
description: The protocol for connections from clients to the load balancer. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocol is TCP.
required: true
Port:
type: integer
description: The port on which the load balancer is listening.
required: true
DefaultActions:
description: The actions for the default rule.
default: []
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/elbv2.html#ElasticLoadBalancingv2.Client.create_listener
default: {}
cloudify.datatypes.aws.elb.Rule.config:
properties:
Conditions:
description: The conditions. Each condition specifies a field name and a single value.
default: []
Priority:
type: integer
description: The rule priority. A listener can't have multiple rules with the same priority.
required: true
Actions:
description: The actions. Each rule must include exactly one of the following types of actions - forward, fixed-response, or redirect.
default: []
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/elbv2.html#ElasticLoadBalancingv2.Client.create_rule
default: {}
cloudify.datatypes.aws.elb.Classic.LoadBalancer.config:
properties:
LoadBalancerName:
type: string
description: The name of the load balancer.
required: true
Listeners:
description: The listeners.
default: {}
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/elb.html#ElasticLoadBalancing.Client.create_load_balancer
default: {}
cloudify.datatypes.aws.elb.Classic.Listener.config:
properties:
LoadBalancerName:
type: string
description: The name of the load balancer.
required: false
Listeners:
description: The listeners.
default: {}
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/elb.html#ElasticLoadBalancing.Client.create_load_balancer_listeners
default: {}
cloudify.datatypes.aws.elb.Classic.healthCheck.healthCheck:
properties:
Target:
type: string
required: true
description: The instance being checked. The protocol is either TCP, HTTP, HTTPS, or SSL. The range of valid ports is one (1) through 65535.
Interval:
type: integer
required: true
description: The approximate interval, in seconds, between health checks of an individual instance.
Timeout:
type: integer
required: true
description: The amount of time, in seconds, during which no response means a failed health check.
UnhealthyThreshold:
type: integer
required: true
description: The number of consecutive health check failures required before moving the instance to the Unhealthy state.
HealthyThreshold:
type: integer
required: true
description: The number of consecutive health checks successes required before moving the instance to the Healthy state.
cloudify.datatypes.aws.elb.Classic.HealthCheck.config:
properties:
LoadBalancerName:
type: string
description: The name of the load balancer.
required: false
HealthCheck:
type: cloudify.datatypes.aws.elb.Classic.healthCheck.healthCheck
required: true
description: The configuration information.
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/elb.html#ElasticLoadBalancing.Client.configure_health_check
default: {}
cloudify.datatypes.aws.elb.Classic.Policy.config:
properties:
LoadBalancerName:
type: string
description: The name of the load balancer.
required: false
PolicyName:
type: string
required: true
description: The name of the load balancer policy to be created. This name must be unique within the set of policies for this load balancer.
PolicyTypeName:
type: string
required: true
description: The name of the base policy type. To get the list of policy types, use DescribeLoadBalancerPolicyTypes.
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/elb.html#ElasticLoadBalancing.Client.create_load_balancer_policy
default: {}
cloudify.datatypes.aws.elb.Classic.StickinessPolicy.config:
properties:
LoadBalancerName:
type: string
description: The name of the load balancer.
required: false
PolicyName:
type: string
required: true
description: The name of the load balancer policy to be created. This name must be unique within the set of policies for this load balancer.
CookieExpirationPeriod:
type: integer
required: false
description: The time period, in seconds, after which the cookie should be considered stale.
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/elb.html#ElasticLoadBalancing.Client.create_lb_cookie_stickiness_policy
default: {}
cloudify.datatypes.aws.SQS.Queue.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/sqs.html#SQS.Client.create_queue
default: {}
cloudify.datatypes.aws.SNS.Topic.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/sns.html#SNS.Client.create_topic
default: {}
cloudify.datatypes.aws.SNS.Subscription.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/sns.html#SNS.Client.get_subscription_attributes
default: {}
cloudify.datatypes.aws.s3.BucketTagging.Tagging:
properties:
TagSet:
required: true
description: A list of dictionaries with a keys Key and Value.
default: []
cloudify.datatypes.aws.s3.BucketTagging.config:
properties:
Bucket:
type: string
required: false
description: The bucket to tag.
Tagging:
type: cloudify.datatypes.aws.s3.BucketTagging.Tagging
required: true
description: The tagging set.
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/s3.html#S3.Client.put_bucket_tagging
default: {}
cloudify.datatypes.aws.s3.BucketLifecycleConfiguration.Lifecycle:
properties:
Rules:
default: []
required: true
description: A list of rules in dict format with keys Prefix, Status, etc.
cloudify.datatypes.aws.s3.BucketLifecycleConfiguration.config:
properties:
Bucket:
type: string
required: false
description: The bucket to tag.
LifecycleConfiguration:
type: cloudify.datatypes.aws.s3.BucketLifecycleConfiguration.Lifecycle
required: false
description: The lifecycle configuration.
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/s3.html#S3.Client.put_bucket_lifecycle
default: {}
cloudify.datatypes.aws.s3.BucketPolicy.config:
properties:
Bucket:
type: string
required: false
description: The bucket to tag.
ConfirmRemoveSelfBucketAccess:
type: boolean
required: false
description: Set this parameter to true to confirm that you want to remove your permissions to change this bucket policy in the future.
Policy:
required: true
description: The bucket policy as a JSON document.
default: {}
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/s3.html#S3.Client.put_bucket_policy
default: {}
cloudify.datatypes.aws.s3.CreateBucketConfiguration:
properties:
LocationConstraint:
type: string
required: false
description: Specifies the region where the bucket will be created. If you don't specify a region, the bucket will be created in US Standard.
cloudify.datatypes.aws.s3.Bucket.config:
properties:
Bucket:
type: string
required: true
description: The bucket name.
ACL:
type: string
required: false
description: The canned ACL to apply to the bucket.
CreateBucketConfiguration:
type: cloudify.datatypes.aws.s3.CreateBucketConfiguration
required: false
description: Specifies the region where the bucket will be created.
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/s3.html#S3.Client.create_bucket
default: {}
cloudify.datatypes.aws.s3.BucketObject.config:
properties:
Bucket:
type: string
required: false
description: The bucket name.
Key:
type: string
required: false
description: Object key for which the PUT operation was initiated.
ACL:
type: string
required: false
description: Object key for which the PUT operation was initiated.
kwargs:
description: https://boto3.readthedocs.io/en/latest/reference/services/s3.html#S3.Client.put_object
default: {}
cloudify.datatypes.aws.ec2.Vpc.config:
properties:
CidrBlock:
type: string
description: The IPv4 network range for the VPC, in CIDR notation.
required: true
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_vpc
default: {}
cloudify.datatypes.aws.ec2.VpcPeering.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_vpc_peering_connection
default: {}
cloudify.datatypes.aws.ec2.VpcPeeringRequest.config:
properties:
kwargs:
description: >
http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.accept_vpc_peering_connection http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.reject_vpc_peering_connection
default: {}
cloudify.datatypes.aws.ec2.Subnet.config:
properties:
AvailabilityZone:
type: string
description: The Availability Zone for the subnet.
required: false
CidrBlock:
type: string
description: The IPv4 network range for the subnet, in CIDR notation.
required: false
VpcId:
type: string
description: The ID of the VPC. May be provided via relationship to a VPC type.
required: false
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_subnet
default: {}
cloudify.datatypes.aws.ec2.SecurityGroup.config:
properties:
Description:
type: string
description: The description for the security group.
required: true
GroupName:
type: string
description: The name of the security group.
required: true
VpcId:
type: string
description: The ID of the VPC. Required for EC2-VPC.
required: false
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_security_group
default: {}
cloudify.datatypes.aws.ec2.SecurityGroupRules.config:
properties:
IpPermissions:
description: One or more sets of IP permissions.
default: []
kwargs:
description: >
http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.authorize_security_group_ingress http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.authorize_security_group_egress
default: {}
cloudify.datatypes.aws.ec2.NATGateway.config:
properties:
ConnectivityType:
type: string
required: false
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_nat_gateway
default: {}
cloudify.datatypes.aws.ec2.NetworkACL.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_network_acl
default: {}
cloudify.datatypes.aws.ec2.Interface.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_network_interface
default: {}
cloudify.datatypes.aws.ec2.Instances.LaunchTemplate:
properties:
LaunchTemplateId:
type: string
required: false
LaunchTemplateName:
type: string
required: false
Version:
type: string
required: false
cloudify.datatypes.aws.ec2.Instances.config:
properties:
MinCount:
type: integer
default: 1
MaxCount:
type: integer
default: 1
ImageId:
type: string
required: false
InstanceType:
type: string
required: false
LaunchTemplate:
type: cloudify.datatypes.aws.ec2.Instances.LaunchTemplate
required: false
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.run_instances
default: {}
cloudify.datatypes.aws.ec2.SpotInstances.config:
properties:
kwargs:
description: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html#EC2.Client.request_spot_instances
default: {}
cloudify.datatypes.aws.ec2.SpotFleetRequest.config:
properties:
kwargs:
description: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html#EC2.Client.request_spot_fleet
default: {}
cloudify.datatypes.aws.ec2.Keypair.config:
properties:
KeyName:
type: string
required: false
description: >
If not provided, this defaults to the node-instance ID.
PublicKeyMaterial:
type: string
required: false
description: >
If PublicKeyMaterial is provided, the import_key_pair operation is executed instead of create_key_pair. See documentation: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.import_key_pair.
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_key_pair
default: {}
cloudify.datatypes.aws.ec2.ElasticIP.config:
properties:
Domain:
type: string
description: Set to vpc to allocate the address for use with instances in a VPC, valid values are 'vpc' or 'standard'.
default: vpc
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.allocate_address
default: {}
cloudify.datatypes.aws.ec2.NetworkAclEntry.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_network_acl_entry
default: {}
cloudify.datatypes.aws.ec2.DHCPOptions.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_dhcp_options
default: {}
cloudify.datatypes.aws.ec2.VPNGateway.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_vpn_gateway
default: {}
cloudify.datatypes.aws.ec2.VPNConnection.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_vpn_connection
default: {}
cloudify.datatypes.aws.ec2.VPNConnectionRoute.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_vpn_connection_route
default: {}
cloudify.datatypes.aws.ec2.CustomerGateway.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_customer_gateway
default: {}
cloudify.datatypes.aws.ec2.InternetGateway.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_internet_gateway
default: {}
cloudify.datatypes.aws.ec2.TransitGateway.config:
properties:
kwargs:
description: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html#EC2.Client.create_transit_gateway
default: {}
cloudify.datatypes.aws.ec2.TransitGatewayVPCAttachment.config:
properties:
kwargs:
description: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html#EC2.Client.create_transit_gateway_vpc_attachment
default: {}
cloudify.datatypes.aws.ec2.TransitGatewayRouteTable.config:
properties:
kwargs:
description: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html#EC2.Client.create_transit_gateway_route_table
default: {}
cloudify.datatypes.aws.ec2.TransitGatewayRoute.config:
properties:
kwargs:
description: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html#EC2.Client.create_transit_gateway_route
default: {}
cloudify.datatypes.aws.ec2.RouteTable.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_route_table
default: {}
cloudify.datatypes.aws.ec2.Route.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_route
default: {}
cloudify.datatypes.aws.ec2.Image.config.create.BlockDeviceMappings:
properties:
DeviceName:
type: string
required: false
description: ~
VirtualName:
type: string
required: false
description: ~
Ebs:
type: cloudify.datatypes.aws.ec2.Image.config.create.BlockDeviceMappings.Ebs
required: false
description: ~
NoDevice:
type: string
required: false
description: ~
kwargs:
description: ~
default: {}
cloudify.datatypes.aws.ec2.Image.config:
properties:
BlockDeviceMappings:
type: cloudify.datatypes.aws.ec2.Image.config.create.BlockDeviceMappings
required: false
description: list contaning a dict of arguments to create an ami.
Description:
type: string
required: false
description: The description of the created image.
DryRun:
type: boolean
required: false
description: ~
InstanceId:
type: string
required: false
description: The InstanceId to create an image from.
Name:
type: string
required: false
description: The name of the image.
NoReboot:
type: boolean
required: false
description: ~
TagSpecifications:
type: cloudify.datatypes.aws.TagSpecifications
required: false
description: ~
kwargs:
description: https://docs.cloudify.co/latest/working_with/official_plugins/infrastructure/aws/#cloudify-nodes-aws-ec2-image
default: {}
cloudify.datatypes.aws.ec2.Image.config.create.BlockDeviceMappings.Ebs:
properties:
DeleteOnTermination:
type: boolean
required: false
description: ~
Iops:
type: integer
required: false
description: ~
SnapshotId:
type: string
required: false
description: ~
VolumeSize:
type: integer
required: false
description: ~
VolumeType:
type: string
required: false
description: ~
KmsKeyId:
type: string
required: false
description: ~
Throughput:
type: integer
required: false
description: ~
OutpostArn:
type: string
required: false
description: ~
Encrypted:
type: boolean
required: false
description: ~
kwargs:
description: ~
default: {}
cloudify.datatypes.aws.TagSpecifications:
properties:
ResourceType:
type: string
required: false
description: ~
Tags:
type: list
required: false
cloudify.datatypes.aws.ec2.Tags.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_tags
default: {}
cloudify.datatypes.aws.ec2.EBSVolume.config:
properties:
AvailabilityZone:
type: string
description: The Availability Zone in which to create the volume.
required: true
Size:
type: integer
description: The size of the volume, in GiBs.
required: false
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.create_volume
default: {}
cloudify.datatypes.aws.ec2.EBSAttachment.config:
properties:
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.attach_volume
default: {}
cloudify.datatypes.aws.autoscaling.LaunchTemplate:
properties:
LaunchTemplateId:
type: string
required: false
description: The ID of the launch template. You must specify either a template ID or a template name.
LaunchTemplateName:
type: string
required: false
description: The name of the launch template. You must specify either a template name or a template ID.
Version:
type: string
required: false
description: The version number, $Latest , or $Default . If the value is $Latest , Amazon EC2 Auto Scaling selects the latest version of the launch template when launching instances. If the value is $Default , Amazon EC2 Auto Scaling selects the default version of the launch template when launching instances. The default value is $Default.
cloudify.datatypes.aws.autoscaling.Group.config:
properties:
AutoScalingGroupName:
type: string
required: true
description: The name of the Auto Scaling group. This name must be unique within the scope of your AWS account.
LaunchConfigurationName:
type: string
required: false
description: The name of the launch configuration. This parameter, a launch template, a mixed instances policy, or an EC2 instance must be specified.
LaunchTemplate:
type: cloudify.datatypes.aws.autoscaling.LaunchTemplate
required: false
description: The launch template to use to launch instances. This parameter, a launch configuration, a mixed instances policy, or an EC2 instance must be specified.
InstanceId:
type: string
required: false
description: The ID of the instance used to create a launch configuration for the group. This parameter, a launch configuration, a launch template, or a mixed instances policy must be specified.
MinSize:
type: integer
required: true
description: The minimum size of the group.
MaxSize:
type: integer
required: true
description: The maximum size of the group.
kwargs:
description: http://boto3.readthedocs.io/en/latest/reference/services/autoscaling.html#AutoScaling.Client.create_auto_scaling_group
default: {}
cloudify.datatypes.aws.autoscaling.LaunchConfiguration.config:
properties:
LaunchConfigurationName:
type: string
required: true
description: The name of the launch configuration. This name must be unique within the scope of your AWS account.
ImageId:
type: string
required: false
description: The ID of the Amazon Machine Image (AMI) to use to launch your EC2 instances.
InstanceType:
type: string
required: false
description: The instance type of the EC2 instance. If you do not specify InstanceId, you must specify InstanceType.
InstanceId:
type: string
required: false
description: The ID of the instance to use to create the launch configuration. The new launch configuration derives attributes from the instance, except for the block device mapping. If you do not specify InstanceId , you must specify both ImageId and InstanceType.
KeyName:
type: string