sparkle_formation 2.0.0 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/docs/helper-methods.md +1 -1
- data/lib/sparkle_formation/error.rb +9 -0
- data/lib/sparkle_formation/function_struct.rb +4 -1
- data/lib/sparkle_formation/resources.rb +22 -6
- data/lib/sparkle_formation/resources/aws_resources.json +10 -3
- data/lib/sparkle_formation/resources/azure.rb +18 -1
- data/lib/sparkle_formation/resources/azure_resources.json +1321 -15
- data/lib/sparkle_formation/resources/heat_resources.json +104 -36
- data/lib/sparkle_formation/resources/rackspace_resources.json +36 -262
- data/lib/sparkle_formation/sparkle_formation.rb +16 -8
- data/lib/sparkle_formation/sparkle_struct.rb +3 -0
- data/lib/sparkle_formation/version.rb +1 -1
- metadata +2 -2
@@ -1748,6 +1748,7 @@
|
|
1748
1748
|
"OS::Heat::TestResource": {
|
1749
1749
|
"properties": [
|
1750
1750
|
"action_wait_secs",
|
1751
|
+
"attr_wait_secs",
|
1751
1752
|
"client_name",
|
1752
1753
|
"entity_name",
|
1753
1754
|
"fail",
|
@@ -1762,6 +1763,12 @@
|
|
1762
1763
|
"type": "map",
|
1763
1764
|
"update_causes": "none"
|
1764
1765
|
},
|
1766
|
+
"attr_wait_secs": {
|
1767
|
+
"description": "Number value for timeout during resolving output value.",
|
1768
|
+
"required": false,
|
1769
|
+
"type": "number",
|
1770
|
+
"update_causes": "none"
|
1771
|
+
},
|
1765
1772
|
"client_name": {
|
1766
1773
|
"description": "Client to poll.",
|
1767
1774
|
"required": false,
|
@@ -2225,6 +2232,8 @@
|
|
2225
2232
|
"name",
|
2226
2233
|
"network_driver",
|
2227
2234
|
"no_proxy",
|
2235
|
+
"public",
|
2236
|
+
"registry_enabled",
|
2228
2237
|
"ssh_authorized_key",
|
2229
2238
|
"tls_disabled"
|
2230
2239
|
],
|
@@ -2319,6 +2328,18 @@
|
|
2319
2328
|
"type": "string",
|
2320
2329
|
"update_causes": "replacement"
|
2321
2330
|
},
|
2331
|
+
"public": {
|
2332
|
+
"description": "Make the baymodel public.",
|
2333
|
+
"required": false,
|
2334
|
+
"type": "boolean",
|
2335
|
+
"update_causes": "replacement"
|
2336
|
+
},
|
2337
|
+
"registry_enabled": {
|
2338
|
+
"description": "Enable the docker registry in the bay.",
|
2339
|
+
"required": false,
|
2340
|
+
"type": "boolean",
|
2341
|
+
"update_causes": "replacement"
|
2342
|
+
},
|
2322
2343
|
"ssh_authorized_key": {
|
2323
2344
|
"description": "The SSH Authorized Key.",
|
2324
2345
|
"required": false,
|
@@ -2326,7 +2347,7 @@
|
|
2326
2347
|
"update_causes": "replacement"
|
2327
2348
|
},
|
2328
2349
|
"tls_disabled": {
|
2329
|
-
"description": "Disable TLS in the
|
2350
|
+
"description": "Disable TLS in the bay.",
|
2330
2351
|
"required": false,
|
2331
2352
|
"type": "boolean",
|
2332
2353
|
"update_causes": "replacement"
|
@@ -2663,6 +2684,40 @@
|
|
2663
2684
|
}
|
2664
2685
|
}
|
2665
2686
|
},
|
2687
|
+
"OS::Neutron::AddressScope": {
|
2688
|
+
"properties": [
|
2689
|
+
"ip_version",
|
2690
|
+
"name",
|
2691
|
+
"shared",
|
2692
|
+
"tenant_id"
|
2693
|
+
],
|
2694
|
+
"full_properties": {
|
2695
|
+
"name": {
|
2696
|
+
"description": "The name for the address scope.",
|
2697
|
+
"required": true,
|
2698
|
+
"type": "string",
|
2699
|
+
"update_causes": "none"
|
2700
|
+
},
|
2701
|
+
"ip_version": {
|
2702
|
+
"description": "Address family of the address scope, which is 4 or 6.",
|
2703
|
+
"required": false,
|
2704
|
+
"type": "integer",
|
2705
|
+
"update_causes": "replacement"
|
2706
|
+
},
|
2707
|
+
"shared": {
|
2708
|
+
"description": "Whether the address scope should be shared to other tenants. Note that the default policy setting restricts usage of this attribute to administrative users only, and restricts changing of shared address scope to unshared with update.",
|
2709
|
+
"required": false,
|
2710
|
+
"type": "boolean",
|
2711
|
+
"update_causes": "none"
|
2712
|
+
},
|
2713
|
+
"tenant_id": {
|
2714
|
+
"description": "The owner tenant ID of the address scope. Only administrative users can specify a tenant ID other than their own.",
|
2715
|
+
"required": false,
|
2716
|
+
"type": "string",
|
2717
|
+
"update_causes": "replacement"
|
2718
|
+
}
|
2719
|
+
}
|
2720
|
+
},
|
2666
2721
|
"OS::Neutron::Firewall": {
|
2667
2722
|
"properties": [
|
2668
2723
|
"admin_state_up",
|
@@ -3644,6 +3699,47 @@
|
|
3644
3699
|
}
|
3645
3700
|
}
|
3646
3701
|
},
|
3702
|
+
"OS::Neutron::RBACPolicy": {
|
3703
|
+
"properties": [
|
3704
|
+
"action",
|
3705
|
+
"object_id",
|
3706
|
+
"object_type",
|
3707
|
+
"target_tenant",
|
3708
|
+
"tenant_id"
|
3709
|
+
],
|
3710
|
+
"full_properties": {
|
3711
|
+
"action": {
|
3712
|
+
"description": "Action for the RBAC policy.",
|
3713
|
+
"required": true,
|
3714
|
+
"type": "string",
|
3715
|
+
"update_causes": "replacement"
|
3716
|
+
},
|
3717
|
+
"object_id": {
|
3718
|
+
"description": "ID or name of the RBAC object.",
|
3719
|
+
"required": true,
|
3720
|
+
"type": "string",
|
3721
|
+
"update_causes": "replacement"
|
3722
|
+
},
|
3723
|
+
"object_type": {
|
3724
|
+
"description": "Type of the object that RBAC policy affects.",
|
3725
|
+
"required": true,
|
3726
|
+
"type": "string",
|
3727
|
+
"update_causes": "replacement"
|
3728
|
+
},
|
3729
|
+
"target_tenant": {
|
3730
|
+
"description": "ID of the tenant to which the RBAC policy will be enforced.",
|
3731
|
+
"required": true,
|
3732
|
+
"type": "string",
|
3733
|
+
"update_causes": "none"
|
3734
|
+
},
|
3735
|
+
"tenant_id": {
|
3736
|
+
"description": "The owner tenant ID. Only required if the caller has an administrative role and wants to create a RBAC for another tenant.",
|
3737
|
+
"required": false,
|
3738
|
+
"type": "string",
|
3739
|
+
"update_causes": "replacement"
|
3740
|
+
}
|
3741
|
+
}
|
3742
|
+
},
|
3647
3743
|
"OS::Neutron::Router": {
|
3648
3744
|
"properties": [
|
3649
3745
|
"admin_state_up",
|
@@ -4732,43 +4828,43 @@
|
|
4732
4828
|
"description": "The name or id of the Senlin profile.",
|
4733
4829
|
"required": true,
|
4734
4830
|
"type": "string",
|
4735
|
-
"update_causes": "
|
4831
|
+
"update_causes": "none"
|
4736
4832
|
},
|
4737
4833
|
"desired_capacity": {
|
4738
4834
|
"description": "Desired initial number of resources in cluster.",
|
4739
4835
|
"required": false,
|
4740
4836
|
"type": "integer",
|
4741
|
-
"update_causes": "
|
4837
|
+
"update_causes": "none"
|
4742
4838
|
},
|
4743
4839
|
"max_size": {
|
4744
4840
|
"description": "Maximum number of resources in the cluster. -1 means unlimited.",
|
4745
4841
|
"required": false,
|
4746
4842
|
"type": "integer",
|
4747
|
-
"update_causes": "
|
4843
|
+
"update_causes": "none"
|
4748
4844
|
},
|
4749
4845
|
"metadata": {
|
4750
4846
|
"description": "Metadata key-values defined for cluster.",
|
4751
4847
|
"required": false,
|
4752
4848
|
"type": "map",
|
4753
|
-
"update_causes": "
|
4849
|
+
"update_causes": "none"
|
4754
4850
|
},
|
4755
4851
|
"min_size": {
|
4756
4852
|
"description": "Minimum number of resources in the cluster.",
|
4757
4853
|
"required": false,
|
4758
4854
|
"type": "integer",
|
4759
|
-
"update_causes": "
|
4855
|
+
"update_causes": "none"
|
4760
4856
|
},
|
4761
4857
|
"name": {
|
4762
4858
|
"description": "Name of the cluster. By default, physical resource name is used.",
|
4763
4859
|
"required": false,
|
4764
4860
|
"type": "string",
|
4765
|
-
"update_causes": "
|
4861
|
+
"update_causes": "none"
|
4766
4862
|
},
|
4767
4863
|
"timeout": {
|
4768
4864
|
"description": "The number of seconds to wait for the cluster actions.",
|
4769
4865
|
"required": false,
|
4770
4866
|
"type": "integer",
|
4771
|
-
"update_causes": "
|
4867
|
+
"update_causes": "none"
|
4772
4868
|
}
|
4773
4869
|
}
|
4774
4870
|
},
|
@@ -4802,10 +4898,6 @@
|
|
4802
4898
|
"OS::Swift::Container": {
|
4803
4899
|
"properties": [
|
4804
4900
|
"PurgeOnDelete",
|
4805
|
-
"X-Account-Meta",
|
4806
|
-
"X-Container-Meta",
|
4807
|
-
"X-Container-Read",
|
4808
|
-
"X-Container-Write",
|
4809
4901
|
"name"
|
4810
4902
|
],
|
4811
4903
|
"full_properties": {
|
@@ -4815,30 +4907,6 @@
|
|
4815
4907
|
"type": "boolean",
|
4816
4908
|
"update_causes": "replacement"
|
4817
4909
|
},
|
4818
|
-
"X-Account-Meta": {
|
4819
|
-
"description": "A map of user-defined meta data to associate with the account. Each key in the map will set the header X-Account-Meta-{key} with the corresponding value.",
|
4820
|
-
"required": false,
|
4821
|
-
"type": "map",
|
4822
|
-
"update_causes": "replacement"
|
4823
|
-
},
|
4824
|
-
"X-Container-Meta": {
|
4825
|
-
"description": "A map of user-defined meta data to associate with the container. Each key in the map will set the header X-Container-Meta-{key} with the corresponding value.",
|
4826
|
-
"required": false,
|
4827
|
-
"type": "map",
|
4828
|
-
"update_causes": "replacement"
|
4829
|
-
},
|
4830
|
-
"X-Container-Read": {
|
4831
|
-
"description": "Specify the ACL permissions on who can read objects in the container.",
|
4832
|
-
"required": false,
|
4833
|
-
"type": "string",
|
4834
|
-
"update_causes": "replacement"
|
4835
|
-
},
|
4836
|
-
"X-Container-Write": {
|
4837
|
-
"description": "Specify the ACL permissions on who can write objects to the container.",
|
4838
|
-
"required": false,
|
4839
|
-
"type": "string",
|
4840
|
-
"update_causes": "replacement"
|
4841
|
-
},
|
4842
4910
|
"name": {
|
4843
4911
|
"description": "Name for the container. If not specified, a unique name will be generated.",
|
4844
4912
|
"required": false,
|
@@ -183,7 +183,7 @@
|
|
183
183
|
"update_causes": "replacement"
|
184
184
|
},
|
185
185
|
"salt": {
|
186
|
-
"description": "Value which can be set or changed on stack update to trigger the resource for replacement with a new random string
|
186
|
+
"description": "Value which can be set or changed on stack update to trigger the resource for replacement with a new random string. The salt value itself is ignored by the random generator.",
|
187
187
|
"required": false,
|
188
188
|
"type": "string",
|
189
189
|
"update_causes": "replacement"
|
@@ -559,6 +559,40 @@
|
|
559
559
|
}
|
560
560
|
}
|
561
561
|
},
|
562
|
+
"OS::Neutron::AddressScope": {
|
563
|
+
"properties": [
|
564
|
+
"ip_version",
|
565
|
+
"name",
|
566
|
+
"shared",
|
567
|
+
"tenant_id"
|
568
|
+
],
|
569
|
+
"full_properties": {
|
570
|
+
"name": {
|
571
|
+
"description": "The name for the address scope.",
|
572
|
+
"required": true,
|
573
|
+
"type": "string",
|
574
|
+
"update_causes": "none"
|
575
|
+
},
|
576
|
+
"ip_version": {
|
577
|
+
"description": "Address family of the address scope, which is 4 or 6.",
|
578
|
+
"required": false,
|
579
|
+
"type": "integer",
|
580
|
+
"update_causes": "replacement"
|
581
|
+
},
|
582
|
+
"shared": {
|
583
|
+
"description": "Whether the address scope should be shared to other tenants. Note that the default policy setting restricts usage of this attribute to administrative users only, and restricts changing of shared address scope to unshared with update.",
|
584
|
+
"required": false,
|
585
|
+
"type": "boolean",
|
586
|
+
"update_causes": "none"
|
587
|
+
},
|
588
|
+
"tenant_id": {
|
589
|
+
"description": "The owner tenant ID of the address scope. Only administrative users can specify a tenant ID other than their own.",
|
590
|
+
"required": false,
|
591
|
+
"type": "string",
|
592
|
+
"update_causes": "replacement"
|
593
|
+
}
|
594
|
+
}
|
595
|
+
},
|
562
596
|
"OS::Neutron::Net": {
|
563
597
|
"properties": [
|
564
598
|
"admin_state_up",
|
@@ -614,7 +648,7 @@
|
|
614
648
|
"update_causes": "replacement"
|
615
649
|
},
|
616
650
|
"value_specs": {
|
617
|
-
"description": "Extra parameters to include in the
|
651
|
+
"description": "Extra parameters to include in the request. Parameters are often specific to installed hardware or extensions.",
|
618
652
|
"required": false,
|
619
653
|
"type": "map",
|
620
654
|
"update_causes": "none"
|
@@ -676,74 +710,6 @@
|
|
676
710
|
}
|
677
711
|
}
|
678
712
|
},
|
679
|
-
"OS::Neutron::QoSBandwidthLimitRule": {
|
680
|
-
"properties": [
|
681
|
-
"max_burst_kbps",
|
682
|
-
"max_kbps",
|
683
|
-
"policy",
|
684
|
-
"tenant_id"
|
685
|
-
],
|
686
|
-
"full_properties": {
|
687
|
-
"max_kbps": {
|
688
|
-
"description": "Max bandwidth in kbps.",
|
689
|
-
"required": true,
|
690
|
-
"type": "integer",
|
691
|
-
"update_causes": "none"
|
692
|
-
},
|
693
|
-
"policy": {
|
694
|
-
"description": "ID or name of the QoS policy.",
|
695
|
-
"required": true,
|
696
|
-
"type": "string",
|
697
|
-
"update_causes": "replacement"
|
698
|
-
},
|
699
|
-
"max_burst_kbps": {
|
700
|
-
"description": "Max burst bandwidth in kbps.",
|
701
|
-
"required": false,
|
702
|
-
"type": "integer",
|
703
|
-
"update_causes": "none"
|
704
|
-
},
|
705
|
-
"tenant_id": {
|
706
|
-
"description": "The owner tenant ID of this rule.",
|
707
|
-
"required": false,
|
708
|
-
"type": "string",
|
709
|
-
"update_causes": "replacement"
|
710
|
-
}
|
711
|
-
}
|
712
|
-
},
|
713
|
-
"OS::Neutron::QoSPolicy": {
|
714
|
-
"properties": [
|
715
|
-
"description",
|
716
|
-
"name",
|
717
|
-
"shared",
|
718
|
-
"tenant_id"
|
719
|
-
],
|
720
|
-
"full_properties": {
|
721
|
-
"name": {
|
722
|
-
"description": "The name for the QoS policy.",
|
723
|
-
"required": true,
|
724
|
-
"type": "string",
|
725
|
-
"update_causes": "none"
|
726
|
-
},
|
727
|
-
"description": {
|
728
|
-
"description": "The description for the QoS policy.",
|
729
|
-
"required": false,
|
730
|
-
"type": "string",
|
731
|
-
"update_causes": "none"
|
732
|
-
},
|
733
|
-
"shared": {
|
734
|
-
"description": "Whether this QoS policy should be shared to other tenants.",
|
735
|
-
"required": false,
|
736
|
-
"type": "boolean",
|
737
|
-
"update_causes": "none"
|
738
|
-
},
|
739
|
-
"tenant_id": {
|
740
|
-
"description": "The owner tenant ID of this QoS policy.",
|
741
|
-
"required": false,
|
742
|
-
"type": "string",
|
743
|
-
"update_causes": "replacement"
|
744
|
-
}
|
745
|
-
}
|
746
|
-
},
|
747
713
|
"OS::Neutron::SecurityGroup": {
|
748
714
|
"properties": [
|
749
715
|
"description",
|
@@ -882,116 +848,6 @@
|
|
882
848
|
}
|
883
849
|
}
|
884
850
|
},
|
885
|
-
"OS::Neutron::SubnetPool": {
|
886
|
-
"properties": [
|
887
|
-
"address_scope",
|
888
|
-
"default_prefixlen",
|
889
|
-
"default_quota",
|
890
|
-
"is_default",
|
891
|
-
"max_prefixlen",
|
892
|
-
"min_prefixlen",
|
893
|
-
"name",
|
894
|
-
"prefixes",
|
895
|
-
"shared",
|
896
|
-
"tenant_id"
|
897
|
-
],
|
898
|
-
"full_properties": {
|
899
|
-
"prefixes": {
|
900
|
-
"description": "List of subnet prefixes to assign.",
|
901
|
-
"required": true,
|
902
|
-
"type": "list",
|
903
|
-
"update_causes": "none"
|
904
|
-
},
|
905
|
-
"address_scope": {
|
906
|
-
"description": "An address scope ID to assign to the subnet pool.",
|
907
|
-
"required": false,
|
908
|
-
"type": "string",
|
909
|
-
"update_causes": "none"
|
910
|
-
},
|
911
|
-
"default_prefixlen": {
|
912
|
-
"description": "The size of the prefix to allocate when the cidr or prefixlen attributes are not specified while creating a subnet.",
|
913
|
-
"required": false,
|
914
|
-
"type": "integer",
|
915
|
-
"update_causes": "none"
|
916
|
-
},
|
917
|
-
"default_quota": {
|
918
|
-
"description": "A per-tenant quota on the prefix space that can be allocated from the subnet pool for tenant subnets.",
|
919
|
-
"required": false,
|
920
|
-
"type": "integer",
|
921
|
-
"update_causes": "none"
|
922
|
-
},
|
923
|
-
"is_default": {
|
924
|
-
"description": "Whether this is default IPv4/IPv6 subnet pool.There can only be one default subnet pool for each IP family.Note that the default policy setting restricts administrative users to set this to True",
|
925
|
-
"required": false,
|
926
|
-
"type": "boolean",
|
927
|
-
"update_causes": "none"
|
928
|
-
},
|
929
|
-
"max_prefixlen": {
|
930
|
-
"description": "Maximum prefix size that can be allocated from the subnet pool.",
|
931
|
-
"required": false,
|
932
|
-
"type": "integer",
|
933
|
-
"update_causes": "none"
|
934
|
-
},
|
935
|
-
"min_prefixlen": {
|
936
|
-
"description": "Smallest prefix size that can be allocated from the subnet pool.",
|
937
|
-
"required": false,
|
938
|
-
"type": "integer",
|
939
|
-
"update_causes": "none"
|
940
|
-
},
|
941
|
-
"name": {
|
942
|
-
"description": "Name of the subnet pool.",
|
943
|
-
"required": false,
|
944
|
-
"type": "string",
|
945
|
-
"update_causes": "none"
|
946
|
-
},
|
947
|
-
"shared": {
|
948
|
-
"description": "Whether the subnet pool will be shared across all tenants.Note that the default policy setting restricts usage of this attribute to administrative users only.",
|
949
|
-
"required": false,
|
950
|
-
"type": "boolean",
|
951
|
-
"update_causes": "replacement"
|
952
|
-
},
|
953
|
-
"tenant_id": {
|
954
|
-
"description": "The ID of the tenant who owns the subnet pool. Only administrative users can specify a tenant ID other than their own.",
|
955
|
-
"required": false,
|
956
|
-
"type": "string",
|
957
|
-
"update_causes": "replacement"
|
958
|
-
}
|
959
|
-
}
|
960
|
-
},
|
961
|
-
"OS::Nova::HostAggregate": {
|
962
|
-
"properties": [
|
963
|
-
"availability_zone",
|
964
|
-
"hosts",
|
965
|
-
"metadata",
|
966
|
-
"name"
|
967
|
-
],
|
968
|
-
"full_properties": {
|
969
|
-
"availability_zone": {
|
970
|
-
"description": "Name for the availability zone.",
|
971
|
-
"required": true,
|
972
|
-
"type": "string",
|
973
|
-
"update_causes": "none"
|
974
|
-
},
|
975
|
-
"name": {
|
976
|
-
"description": "Name for the aggregate.",
|
977
|
-
"required": true,
|
978
|
-
"type": "string",
|
979
|
-
"update_causes": "none"
|
980
|
-
},
|
981
|
-
"hosts": {
|
982
|
-
"description": "List of hosts to join aggregate.",
|
983
|
-
"required": false,
|
984
|
-
"type": "list",
|
985
|
-
"update_causes": "none"
|
986
|
-
},
|
987
|
-
"metadata": {
|
988
|
-
"description": "Arbitrary key/value metadata to store information for aggregate.",
|
989
|
-
"required": false,
|
990
|
-
"type": "map",
|
991
|
-
"update_causes": "none"
|
992
|
-
}
|
993
|
-
}
|
994
|
-
},
|
995
851
|
"OS::Nova::KeyPair": {
|
996
852
|
"properties": [
|
997
853
|
"name",
|
@@ -1172,88 +1028,6 @@
|
|
1172
1028
|
}
|
1173
1029
|
}
|
1174
1030
|
},
|
1175
|
-
"OS::Senlin::Cluster": {
|
1176
|
-
"properties": [
|
1177
|
-
"desired_capacity",
|
1178
|
-
"max_size",
|
1179
|
-
"metadata",
|
1180
|
-
"min_size",
|
1181
|
-
"name",
|
1182
|
-
"profile",
|
1183
|
-
"timeout"
|
1184
|
-
],
|
1185
|
-
"full_properties": {
|
1186
|
-
"profile": {
|
1187
|
-
"description": "The name or id of the Senlin profile.",
|
1188
|
-
"required": true,
|
1189
|
-
"type": "string",
|
1190
|
-
"update_causes": "replacement"
|
1191
|
-
},
|
1192
|
-
"desired_capacity": {
|
1193
|
-
"description": "Desired initial number of resources in cluster.",
|
1194
|
-
"required": false,
|
1195
|
-
"type": "integer",
|
1196
|
-
"update_causes": "replacement"
|
1197
|
-
},
|
1198
|
-
"max_size": {
|
1199
|
-
"description": "Maximum number of resources in the cluster. -1 means unlimited.",
|
1200
|
-
"required": false,
|
1201
|
-
"type": "integer",
|
1202
|
-
"update_causes": "replacement"
|
1203
|
-
},
|
1204
|
-
"metadata": {
|
1205
|
-
"description": "Metadata key-values defined for cluster.",
|
1206
|
-
"required": false,
|
1207
|
-
"type": "map",
|
1208
|
-
"update_causes": "replacement"
|
1209
|
-
},
|
1210
|
-
"min_size": {
|
1211
|
-
"description": "Minimum number of resources in the cluster.",
|
1212
|
-
"required": false,
|
1213
|
-
"type": "integer",
|
1214
|
-
"update_causes": "replacement"
|
1215
|
-
},
|
1216
|
-
"name": {
|
1217
|
-
"description": "Name of the cluster. By default, physical resource name is used.",
|
1218
|
-
"required": false,
|
1219
|
-
"type": "string",
|
1220
|
-
"update_causes": "replacement"
|
1221
|
-
},
|
1222
|
-
"timeout": {
|
1223
|
-
"description": "The number of seconds to wait for the cluster actions.",
|
1224
|
-
"required": false,
|
1225
|
-
"type": "integer",
|
1226
|
-
"update_causes": "replacement"
|
1227
|
-
}
|
1228
|
-
}
|
1229
|
-
},
|
1230
|
-
"OS::Senlin::Profile": {
|
1231
|
-
"properties": [
|
1232
|
-
"metadata",
|
1233
|
-
"name",
|
1234
|
-
"spec"
|
1235
|
-
],
|
1236
|
-
"full_properties": {
|
1237
|
-
"spec": {
|
1238
|
-
"description": "The spec template content for Senlin profile, should be either in YAML or JSON format.",
|
1239
|
-
"required": true,
|
1240
|
-
"type": "string",
|
1241
|
-
"update_causes": "replacement"
|
1242
|
-
},
|
1243
|
-
"metadata": {
|
1244
|
-
"description": "Metadata key-values defined for profile.",
|
1245
|
-
"required": false,
|
1246
|
-
"type": "map",
|
1247
|
-
"update_causes": "none"
|
1248
|
-
},
|
1249
|
-
"name": {
|
1250
|
-
"description": "Name of the senlin profile. By default, physical resource name is used.",
|
1251
|
-
"required": false,
|
1252
|
-
"type": "string",
|
1253
|
-
"update_causes": "none"
|
1254
|
-
}
|
1255
|
-
}
|
1256
|
-
},
|
1257
1031
|
"OS::Swift::Container": {
|
1258
1032
|
"properties": [
|
1259
1033
|
"PurgeOnDelete",
|