cloud-mu 2.0.0.pre.beta2 → 2.0.0.pre.beta3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/Berksfile.lock +1 -1
  3. data/cloud-mu.gemspec +4 -3
  4. data/cookbooks/mu-master/templates/default/mu.rc.erb +2 -2
  5. data/cookbooks/mu-tools/files/default/Mu_CA.pem +18 -19
  6. data/cookbooks/mu-tools/recipes/rsyslog.rb +1 -1
  7. data/modules/mu/cleanup.rb +14 -1
  8. data/modules/mu/cloud.rb +40 -22
  9. data/modules/mu/clouds/aws/alarm.rb +6 -0
  10. data/modules/mu/clouds/aws/bucket.rb +29 -0
  11. data/modules/mu/clouds/aws/cache_cluster.rb +6 -0
  12. data/modules/mu/clouds/aws/container_cluster.rb +6 -0
  13. data/modules/mu/clouds/aws/database.rb +6 -0
  14. data/modules/mu/clouds/aws/dnszone.rb +6 -0
  15. data/modules/mu/clouds/aws/endpoint.rb +6 -0
  16. data/modules/mu/clouds/aws/firewall_rule.rb +6 -0
  17. data/modules/mu/clouds/aws/folder.rb +6 -0
  18. data/modules/mu/clouds/aws/function.rb +6 -0
  19. data/modules/mu/clouds/aws/group.rb +6 -0
  20. data/modules/mu/clouds/aws/loadbalancer.rb +6 -0
  21. data/modules/mu/clouds/aws/log.rb +6 -0
  22. data/modules/mu/clouds/aws/msg_queue.rb +6 -0
  23. data/modules/mu/clouds/aws/nosqldb.rb +6 -0
  24. data/modules/mu/clouds/aws/notifier.rb +6 -0
  25. data/modules/mu/clouds/aws/role.rb +97 -11
  26. data/modules/mu/clouds/aws/search_domain.rb +6 -0
  27. data/modules/mu/clouds/aws/server.rb +6 -0
  28. data/modules/mu/clouds/aws/server_pool.rb +6 -0
  29. data/modules/mu/clouds/aws/storage_pool.rb +6 -0
  30. data/modules/mu/clouds/aws/user.rb +6 -0
  31. data/modules/mu/clouds/aws/vpc.rb +25 -1
  32. data/modules/mu/clouds/google.rb +86 -16
  33. data/modules/mu/clouds/google/bucket.rb +78 -3
  34. data/modules/mu/clouds/google/container_cluster.rb +12 -0
  35. data/modules/mu/clouds/google/database.rb +15 -1
  36. data/modules/mu/clouds/google/firewall_rule.rb +18 -2
  37. data/modules/mu/clouds/google/folder.rb +183 -16
  38. data/modules/mu/clouds/google/group.rb +7 -1
  39. data/modules/mu/clouds/google/habitat.rb +139 -24
  40. data/modules/mu/clouds/google/loadbalancer.rb +26 -12
  41. data/modules/mu/clouds/google/server.rb +25 -10
  42. data/modules/mu/clouds/google/server_pool.rb +16 -3
  43. data/modules/mu/clouds/google/user.rb +7 -1
  44. data/modules/mu/clouds/google/vpc.rb +87 -76
  45. data/modules/mu/config.rb +12 -0
  46. data/modules/mu/config/bucket.rb +4 -0
  47. data/modules/mu/config/folder.rb +1 -0
  48. data/modules/mu/config/habitat.rb +1 -1
  49. data/modules/mu/config/role.rb +78 -34
  50. data/modules/mu/config/vpc.rb +1 -0
  51. data/modules/mu/groomers/chef.rb +1 -1
  52. data/modules/mu/kittens.rb +689 -283
  53. metadata +5 -4
@@ -38,54 +38,98 @@ module MU
38
38
  }
39
39
  },
40
40
  "policies" => {
41
+ "type" => "array",
42
+ "items" => self.policy_primitive
43
+ }
44
+ }
45
+ }
46
+ end
47
+
48
+ # A generic, cloud-neutral descriptor for a policy that grants or denies
49
+ # permissions to some entity over some other entity.
50
+ # @param subobjects [Boolean]: Whether the returned schema should include a +path+ parameter
51
+ # @param grant_to [Boolean]: Whether the returned schema should include an explicit +grant_to+ parameter
52
+ # @return [Hash]
53
+ def self.policy_primitive(subobjects: false, grant_to: false, permissions_optional: false)
54
+ cfg = {
55
+ "type" => "object",
56
+ "description" => "Policies which grant or deny permissions.",
57
+ "required" => ["name", "targets"],
58
+ # "additionalProperties" => false,
59
+ "properties" => {
60
+ "name" => {
61
+ "type" => "string",
62
+ "description" => "A unique name for this policy"
63
+ },
64
+ "flag" => {
65
+ "type" => "string",
66
+ "enum" => ["allow", "deny"],
67
+ "default" => "allow"
68
+ },
69
+ "permissions" => {
70
+ "type" => "array",
71
+ "items" => {
72
+ "type" => "string",
73
+ "description" => "Permissions to grant or deny. Valid permission strings are cloud-specific."
74
+ }
75
+ },
76
+ "targets" => {
41
77
  "type" => "array",
42
78
  "items" => {
43
79
  "type" => "object",
44
- "description" => "Policies which grant or deny permissions.",
45
- "required" => ["name", "permissions", "targets"],
80
+ "description" => "Entities to which this policy will grant or deny access.",
81
+ "required" => ["identifier"],
46
82
  "additionalProperties" => false,
47
83
  "properties" => {
48
- "name" => {
84
+ "type" => {
49
85
  "type" => "string",
50
- "description" => "A unique name for this policy"
86
+ "description" => "A Mu resource type, used when referencing a sibling Mu resource in this stack with +identifier+.",
87
+ "enum" => MU::Cloud.resource_types.values.map { |t| t[:cfg_name] }.sort
51
88
  },
52
- "flag" => {
89
+ "identifier" => {
53
90
  "type" => "string",
54
- "enum" => ["allow", "deny"],
55
- "default" => "allow"
56
- },
57
- "permissions" => {
58
- "type" => "array",
59
- "items" => {
60
- "type" => "string",
61
- "description" => "Permissions to grant or deny. Valid permission strings are cloud-specific."
62
- }
63
- },
64
- "targets" => {
65
- "type" => "array",
66
- "items" => {
67
- "type" => "object",
68
- "description" => "Entities to which this policy will grant or deny access.",
69
- "required" => ["identifier"],
70
- "additionalProperties" => false,
71
- "properties" => {
72
- "type" => {
73
- "type" => "string",
74
- "description" => "A Mu resource type, used when referencing a sibling Mu resource in this stack with +identifier+.",
75
- "enum" => MU::Cloud.resource_types.values.map { |t| t[:cfg_name] }.sort
76
- },
77
- "identifier" => {
78
- "type" => "string",
79
- "description" => "Either the name of a sibling Mu resource in this stack (used in conjunction with +entity_type+), or the full cloud identifier for a resource, such as an ARN in Amazon Web Services."
80
- }
81
- }
82
- }
91
+ "description" => "Either the name of a sibling Mu resource in this stack (used in conjunction with +entity_type+), or the full cloud identifier for a resource, such as an ARN in Amazon Web Services."
83
92
  }
84
93
  }
85
94
  }
86
95
  }
87
96
  }
88
97
  }
98
+
99
+ cfg["required"] << "permissions" if !permissions_optional
100
+
101
+ if grant_to
102
+ cfg["properties"]["grant_to"] = {
103
+ "type" => "array",
104
+ "default" => [ { "identifier" => "*" } ],
105
+ "items" => {
106
+ "type" => "object",
107
+ "description" => "Entities to which this policy will grant or deny access.",
108
+ "required" => ["identifier"],
109
+ "additionalProperties" => false,
110
+ "properties" => {
111
+ "type" => {
112
+ "type" => "string",
113
+ "description" => "A Mu resource type, used when referencing a sibling Mu resource in this stack with +identifier+.",
114
+ "enum" => MU::Cloud.resource_types.values.map { |t| t[:cfg_name] }.sort
115
+ },
116
+ "identifier" => {
117
+ "type" => "string",
118
+ "description" => "Either the name of a sibling Mu resource in this stack (used in conjunction with +entity_type+), or the full cloud identifier for a resource, such as an Amazon ARN or email-address-formatted Google Cloud username. Wildcards (+*+) are valid if supported by the cloud provider."
119
+ }
120
+ }
121
+ }
122
+ }
123
+ end
124
+
125
+ if subobjects
126
+ cfg["properties"]["targets"]["items"]["properties"]["path"] = {
127
+ "type" => "string",
128
+ "description" => "Target this policy to a path or child resource of the object to which we are granting or denying permissions, such as a key or wildcard in an S3 or Cloud Storage bucket."
129
+ }
130
+ end
131
+
132
+ cfg
89
133
  end
90
134
 
91
135
  # Generic pre-processing of {MU::Config::BasketofKittens::role}, bare and unvalidated.
@@ -456,6 +456,7 @@ module MU
456
456
  delete.each { |delete_me|
457
457
  vpc["peers"].delete(delete_me)
458
458
  }
459
+ vpc["peers"].uniq!
459
460
  end
460
461
  ok
461
462
  end
@@ -613,7 +613,7 @@ module MU
613
613
  }
614
614
  # throws Net::HTTPServerException if we haven't really bootstrapped
615
615
  ::Chef::Node.load(@server.mu_name)
616
- rescue Net::SSH::Disconnect, SystemCallError, Timeout::Error, Errno::ECONNRESET, Errno::EHOSTUNREACH, Net::SSH::Proxy::ConnectError, SocketError, Net::SSH::Disconnect, Net::SSH::AuthenticationFailed, IOError, Net::HTTPServerException, SystemExit, Errno::ECONNREFUSED, Errno::EPIPE, WinRM::WinRMError, HTTPClient::ConnectTimeoutError, RuntimeError, MU::Cloud::BootstrapTempFail => e
616
+ rescue Net::SSH::Disconnect, SystemCallError, Timeout::Error, Errno::ECONNRESET, Errno::EHOSTUNREACH, Net::SSH::Proxy::ConnectError, SocketError, Net::SSH::Disconnect, Net::SSH::AuthenticationFailed, IOError, Net::HTTPServerException, SystemExit, Errno::ECONNREFUSED, Errno::EPIPE, WinRM::WinRMError, HTTPClient::ConnectTimeoutError, RuntimeError, MU::Cloud::BootstrapTempFail, Net::SSH::Exception, Net::SSH::ConnectionTimeout => e
617
617
  if retries < max_retries
618
618
  retries += 1
619
619
  # Bad Chef installs are possible culprits of bootstrap failures, so
@@ -87,9 +87,235 @@ class Config
87
87
  # @!endgroup
88
88
  end
89
89
  end
90
+ class BasketofKittens
91
+ class folders
92
+ # Deploy into or connect with resources in a specific account/project
93
+ class parent
94
+ # @!group Optional parameters
95
+
96
+ # Discover this folder/OU by looking by its cloud provider identifier
97
+ #
98
+ # @return [String]
99
+ attr_accessor :id
100
+
101
+ # Discover this folder/OU by Mu-internal name; typically the shorthand 'name' field of an Folder object declared elsewhere in the deploy, or in another deploy that's being referenced with 'deploy_id'.
102
+ #
103
+ # @return [String]
104
+ attr_accessor :name
105
+
106
+ # **Default: `AWS`**,
107
+ # **Must be one of: `AWS, CloudFormation, Google, Azure`**
108
+ #
109
+ # @return [String]
110
+ attr_accessor :cloud
111
+
112
+ # Search for this folder in an existing Mu deploy; specify a Mu deploy id (e.g. DEMO-DEV-2014111400-NG).
113
+ #
114
+ # @return [String]
115
+ attr_accessor :deploy_id
116
+ # @!endgroup
117
+ end
118
+ end
119
+ end
120
+ class BasketofKittens
121
+ class folders
122
+ # Declare other objects which this resource requires. This resource will wait until the others are available to create itself.
123
+ class dependencies
124
+ # @!group Required parameters
125
+
126
+ # **REQUIRED**
127
+ #
128
+ # @return [String]
129
+ attr_accessor :name
130
+
131
+ # **REQUIRED**,
132
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
133
+ #
134
+ # @return [String]
135
+ attr_accessor :type
136
+ # @!endgroup
137
+ # @!group Optional parameters
138
+
139
+ # **Must be one of: `create, groom`** -
140
+ # Which part of the creation process of the resource we depend on should we wait for before starting our own creation? Defaults are usually sensible, but sometimes you want, say, a Server to wait on another Server to be completely ready (through its groom phase) before starting up.
141
+ #
142
+ # @return [String]
143
+ attr_accessor :phase
144
+
145
+ # **Default: `false`** -
146
+ # By default, it's assumed that we want to wait on our parents' creation phase, in addition to whatever is declared in this stanza. Setting this flag will bypass waiting on our parent resource's creation, so that our create or groom phase can instead depend only on the parent's groom phase.
147
+ #
148
+ # @return [Boolean]
149
+ attr_accessor :no_create_wait
150
+ # @!endgroup
151
+ end
152
+ end
153
+ end
154
+ class BasketofKittens
155
+ # Set up a cloud provider folder/OU for containing other account-level resources
156
+ #
157
+ # `AWS`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
158
+ #
159
+ # `Google`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
160
+ class folders
161
+ # @!group Optional parameters
162
+
163
+ #
164
+ # @return [String]
165
+ attr_accessor :name
166
+
167
+ # Deploy into or connect with resources in a specific account/project
168
+ #
169
+ # @return [BasketofKittens::folders::parent]
170
+ # @see BasketofKittens::folders::parent
171
+ attr_accessor :parent
172
+
173
+ # Internal use.
174
+ #
175
+ # @return [String]
176
+ attr_accessor :virtual_name
177
+
178
+ # Declare other objects which this resource requires. This resource will wait until the others are available to create itself.
179
+ #
180
+ # @return [Array<BasketofKittens::folders::dependencies>]
181
+ # @see BasketofKittens::folders::dependencies
182
+ attr_accessor :dependencies
183
+
184
+ # **Default: `AWS`**,
185
+ # **Must be one of: `AWS, CloudFormation, Google, Azure`**
186
+ #
187
+ # @return [String]
188
+ attr_accessor :cloud
189
+
190
+ # Specify a non-default set of credentials to use when authenticating to cloud provider APIs, as listed in `mu.yaml` under each provider's subsection. If
191
+ #
192
+ # @return [String]
193
+ attr_accessor :credentials
194
+ # @!endgroup
195
+ end
196
+ end
197
+ class BasketofKittens
198
+ class habitats
199
+ # Deploy into or connect with resources in a specific account/project
200
+ class parent
201
+ # @!group Optional parameters
202
+
203
+ # Discover this folder/OU by looking by its cloud provider identifier
204
+ #
205
+ # @return [String]
206
+ attr_accessor :id
207
+
208
+ # Discover this folder/OU by Mu-internal name; typically the shorthand 'name' field of an Folder object declared elsewhere in the deploy, or in another deploy that's being referenced with 'deploy_id'.
209
+ #
210
+ # @return [String]
211
+ attr_accessor :name
212
+
213
+ # **Default: `AWS`**,
214
+ # **Must be one of: `AWS, CloudFormation, Google, Azure`**
215
+ #
216
+ # @return [String]
217
+ attr_accessor :cloud
218
+
219
+ # Search for this folder in an existing Mu deploy; specify a Mu deploy id (e.g. DEMO-DEV-2014111400-NG).
220
+ #
221
+ # @return [String]
222
+ attr_accessor :deploy_id
223
+ # @!endgroup
224
+ end
225
+ end
226
+ end
227
+ class BasketofKittens
228
+ class habitats
229
+ # Declare other objects which this resource requires. This resource will wait until the others are available to create itself.
230
+ class dependencies
231
+ # @!group Required parameters
232
+
233
+ # **REQUIRED**
234
+ #
235
+ # @return [String]
236
+ attr_accessor :name
237
+
238
+ # **REQUIRED**,
239
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
240
+ #
241
+ # @return [String]
242
+ attr_accessor :type
243
+ # @!endgroup
244
+ # @!group Optional parameters
245
+
246
+ # **Must be one of: `create, groom`** -
247
+ # Which part of the creation process of the resource we depend on should we wait for before starting our own creation? Defaults are usually sensible, but sometimes you want, say, a Server to wait on another Server to be completely ready (through its groom phase) before starting up.
248
+ #
249
+ # @return [String]
250
+ attr_accessor :phase
251
+
252
+ # **Default: `false`** -
253
+ # By default, it's assumed that we want to wait on our parents' creation phase, in addition to whatever is declared in this stanza. Setting this flag will bypass waiting on our parent resource's creation, so that our create or groom phase can instead depend only on the parent's groom phase.
254
+ #
255
+ # @return [Boolean]
256
+ attr_accessor :no_create_wait
257
+ # @!endgroup
258
+ end
259
+ end
260
+ end
261
+ class BasketofKittens
262
+ # Generate a cloud habitat (AWS account, Google Cloud project, Azure Directory, etc)
263
+ #
264
+ # `AWS`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
265
+ #
266
+ # `Google`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
267
+ class habitats
268
+ # @!group Optional parameters
269
+
270
+ #
271
+ # @return [String]
272
+ attr_accessor :name
273
+
274
+ # Deploy into or connect with resources in a specific account/project
275
+ #
276
+ # @return [BasketofKittens::habitats::parent]
277
+ # @see BasketofKittens::habitats::parent
278
+ attr_accessor :parent
279
+
280
+ # Internal use.
281
+ #
282
+ # @return [String]
283
+ attr_accessor :virtual_name
284
+
285
+ # Declare other objects which this resource requires. This resource will wait until the others are available to create itself.
286
+ #
287
+ # @return [Array<BasketofKittens::habitats::dependencies>]
288
+ # @see BasketofKittens::habitats::dependencies
289
+ attr_accessor :dependencies
290
+
291
+ # **Default: `AWS`**,
292
+ # **Must be one of: `AWS, CloudFormation, Google, Azure`**
293
+ #
294
+ # @return [String]
295
+ attr_accessor :cloud
296
+
297
+ # Specify a non-default set of credentials to use when authenticating to cloud provider APIs, as listed in `mu.yaml` under each provider's subsection. If
298
+ #
299
+ # @return [String]
300
+ attr_accessor :credentials
301
+
302
+ # **AWS ONLY** -
303
+ # +AWS+: AWS accounts require a unique contact email address. If not provided, Mu will generate an alias to the global mu_admin_email using the +foo SMTP mechanism.
304
+ #
305
+ # @return [String]
306
+ attr_accessor :email
307
+
308
+ # **GOOGLE ONLY** -
309
+ # +GOOGLE+: Billing account ID to associate with a newly-created Google Project. If not specified, will attempt to locate a billing account associated with the default project for our credentials.
310
+ #
311
+ # @return [String]
312
+ attr_accessor :billing_acct
313
+ # @!endgroup
314
+ end
315
+ end
90
316
  class BasketofKittens
91
317
  class collections
92
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
318
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
93
319
  class tags
94
320
  # @!group Required parameters
95
321
 
@@ -137,7 +363,7 @@ class Config
137
363
  attr_accessor :name
138
364
 
139
365
  # **REQUIRED**,
140
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
366
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
141
367
  #
142
368
  # @return [String]
143
369
  attr_accessor :type
@@ -161,6 +387,10 @@ class Config
161
387
  end
162
388
  class BasketofKittens
163
389
  # Create an Amazon CloudFormation stack.
390
+ #
391
+ # `AWS`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
392
+ #
393
+ # `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
164
394
  class collections
165
395
  # @!group Required parameters
166
396
 
@@ -171,7 +401,7 @@ class Config
171
401
  # @!endgroup
172
402
  # @!group Optional parameters
173
403
 
174
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
404
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
175
405
  #
176
406
  # @return [Array<BasketofKittens::collections::tags>]
177
407
  # @see BasketofKittens::collections::tags
@@ -264,7 +494,7 @@ class Config
264
494
  end
265
495
  class BasketofKittens
266
496
  class databases
267
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
497
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
268
498
  class tags
269
499
  # @!group Required parameters
270
500
 
@@ -458,7 +688,7 @@ class Config
458
688
  # @return [String]
459
689
  attr_accessor :db_name
460
690
 
461
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
691
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
462
692
  #
463
693
  # @return [String]
464
694
  attr_accessor :region
@@ -753,7 +983,7 @@ class Config
753
983
  # @return [Integer]
754
984
  attr_accessor :weight
755
985
 
756
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
986
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
757
987
  #
758
988
  # @return [String]
759
989
  attr_accessor :region
@@ -843,7 +1073,7 @@ class Config
843
1073
  # @return [String]
844
1074
  attr_accessor :vpc_name
845
1075
 
846
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
1076
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
847
1077
  #
848
1078
  # @return [String]
849
1079
  attr_accessor :region
@@ -953,7 +1183,7 @@ class Config
953
1183
  attr_accessor :name
954
1184
 
955
1185
  # **REQUIRED**,
956
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
1186
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
957
1187
  #
958
1188
  # @return [String]
959
1189
  attr_accessor :type
@@ -1050,16 +1280,16 @@ class Config
1050
1280
  attr_accessor :auto_pause
1051
1281
 
1052
1282
  # **AWS & CLOUDFORMATION ONLY**,
1053
- # **Default: `1`**,
1054
- # **Must be one of: `1, 2, 4, 8, 16, 32, 64, 128, 256`** -
1283
+ # **Default: `2`**,
1284
+ # **Must be one of: `2, 4, 8, 16, 32, 64, 128, 256`** -
1055
1285
  # The minimum capacity for an Aurora DB cluster in serverless DB engine mode.
1056
1286
  #
1057
1287
  # @return [Integer]
1058
1288
  attr_accessor :min_capacity
1059
1289
 
1060
1290
  # **AWS & CLOUDFORMATION ONLY**,
1061
- # **Default: `1`**,
1062
- # **Must be one of: `1, 2, 4, 8, 16, 32, 64, 128, 256`** -
1291
+ # **Default: `2`**,
1292
+ # **Must be one of: `2, 4, 8, 16, 32, 64, 128, 256`** -
1063
1293
  # The maximum capacity for an Aurora DB cluster in serverless DB engine mode.
1064
1294
  #
1065
1295
  # @return [Integer]
@@ -1077,6 +1307,12 @@ class Config
1077
1307
  end
1078
1308
  class BasketofKittens
1079
1309
  # Create a dedicated database server.
1310
+ #
1311
+ # `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
1312
+ #
1313
+ # `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
1314
+ #
1315
+ # `Google`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
1080
1316
  class databases
1081
1317
  # @!group Required parameters
1082
1318
 
@@ -1124,7 +1360,7 @@ class Config
1124
1360
  # @return [Boolean]
1125
1361
  attr_accessor :scrub_mu_isms
1126
1362
 
1127
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
1363
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
1128
1364
  #
1129
1365
  # @return [String]
1130
1366
  attr_accessor :region
@@ -1133,7 +1369,7 @@ class Config
1133
1369
  # @return [String]
1134
1370
  attr_accessor :db_family
1135
1371
 
1136
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
1372
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
1137
1373
  #
1138
1374
  # @return [Array<BasketofKittens::databases::tags>]
1139
1375
  # @see BasketofKittens::databases::tags
@@ -1580,7 +1816,7 @@ class Config
1580
1816
  # @return [Integer]
1581
1817
  attr_accessor :weight
1582
1818
 
1583
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
1819
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
1584
1820
  #
1585
1821
  # @return [String]
1586
1822
  attr_accessor :region
@@ -1645,7 +1881,7 @@ class Config
1645
1881
  # @return [String]
1646
1882
  attr_accessor :vpc_name
1647
1883
 
1648
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
1884
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
1649
1885
  #
1650
1886
  # @return [String]
1651
1887
  attr_accessor :region
@@ -1682,7 +1918,7 @@ class Config
1682
1918
  attr_accessor :name
1683
1919
 
1684
1920
  # **REQUIRED**,
1685
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
1921
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
1686
1922
  #
1687
1923
  # @return [String]
1688
1924
  attr_accessor :type
@@ -1706,6 +1942,10 @@ class Config
1706
1942
  end
1707
1943
  class BasketofKittens
1708
1944
  # Create a DNS zone in Route 53.
1945
+ #
1946
+ # `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
1947
+ #
1948
+ # `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
1709
1949
  class dnszones
1710
1950
  # @!group Required parameters
1711
1951
 
@@ -1793,7 +2033,7 @@ class Config
1793
2033
  # @return [String]
1794
2034
  attr_accessor :vpc_name
1795
2035
 
1796
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
2036
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
1797
2037
  #
1798
2038
  # @return [String]
1799
2039
  attr_accessor :region
@@ -1820,7 +2060,7 @@ class Config
1820
2060
  end
1821
2061
  class BasketofKittens
1822
2062
  class firewall_rules
1823
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
2063
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
1824
2064
  class tags
1825
2065
  # @!group Required parameters
1826
2066
 
@@ -1914,7 +2154,7 @@ class Config
1914
2154
  attr_accessor :name
1915
2155
 
1916
2156
  # **REQUIRED**,
1917
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
2157
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
1918
2158
  #
1919
2159
  # @return [String]
1920
2160
  attr_accessor :type
@@ -1938,6 +2178,12 @@ class Config
1938
2178
  end
1939
2179
  class BasketofKittens
1940
2180
  # Create network-level access controls.
2181
+ #
2182
+ # `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
2183
+ #
2184
+ # `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
2185
+ #
2186
+ # `Google`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
1941
2187
  class firewall_rules
1942
2188
  # @!group Required parameters
1943
2189
 
@@ -1964,7 +2210,7 @@ class Config
1964
2210
  # @see BasketofKittens::firewall_rules::vpc
1965
2211
  attr_accessor :vpc
1966
2212
 
1967
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
2213
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
1968
2214
  #
1969
2215
  # @return [Array<BasketofKittens::firewall_rules::tags>]
1970
2216
  # @see BasketofKittens::firewall_rules::tags
@@ -2235,7 +2481,7 @@ class Config
2235
2481
  end
2236
2482
  class BasketofKittens
2237
2483
  class loadbalancers
2238
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
2484
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
2239
2485
  class tags
2240
2486
  # @!group Required parameters
2241
2487
 
@@ -2483,7 +2729,7 @@ class Config
2483
2729
  # @return [Integer]
2484
2730
  attr_accessor :weight
2485
2731
 
2486
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
2732
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
2487
2733
  #
2488
2734
  # @return [String]
2489
2735
  attr_accessor :region
@@ -2834,7 +3080,7 @@ class Config
2834
3080
  # @return [String]
2835
3081
  attr_accessor :vpc_name
2836
3082
 
2837
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
3083
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
2838
3084
  #
2839
3085
  # @return [String]
2840
3086
  attr_accessor :region
@@ -3065,7 +3311,7 @@ class Config
3065
3311
  attr_accessor :name
3066
3312
 
3067
3313
  # **REQUIRED**,
3068
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
3314
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
3069
3315
  #
3070
3316
  # @return [String]
3071
3317
  attr_accessor :type
@@ -3110,6 +3356,12 @@ class Config
3110
3356
  end
3111
3357
  class BasketofKittens
3112
3358
  # Create Load Balancers
3359
+ #
3360
+ # `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
3361
+ #
3362
+ # `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
3363
+ #
3364
+ # `Google`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
3113
3365
  class loadbalancers
3114
3366
  # @!group Required parameters
3115
3367
 
@@ -3151,7 +3403,7 @@ class Config
3151
3403
  # @return [Boolean]
3152
3404
  attr_accessor :scrub_mu_isms
3153
3405
 
3154
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
3406
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
3155
3407
  #
3156
3408
  # @return [Array<BasketofKittens::loadbalancers::tags>]
3157
3409
  # @see BasketofKittens::loadbalancers::tags
@@ -3193,7 +3445,7 @@ class Config
3193
3445
  # @see BasketofKittens::loadbalancers::ingress_rules
3194
3446
  attr_accessor :ingress_rules
3195
3447
 
3196
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
3448
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
3197
3449
  #
3198
3450
  # @return [String]
3199
3451
  attr_accessor :region
@@ -3513,7 +3765,7 @@ class Config
3513
3765
  # @return [Integer]
3514
3766
  attr_accessor :weight
3515
3767
 
3516
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
3768
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
3517
3769
  #
3518
3770
  # @return [String]
3519
3771
  attr_accessor :region
@@ -3637,7 +3889,7 @@ class Config
3637
3889
  # @return [String]
3638
3890
  attr_accessor :vpc_name
3639
3891
 
3640
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
3892
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
3641
3893
  #
3642
3894
  # @return [String]
3643
3895
  attr_accessor :region
@@ -3772,7 +4024,7 @@ class Config
3772
4024
  end
3773
4025
  class BasketofKittens
3774
4026
  class servers
3775
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
4027
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
3776
4028
  class tags
3777
4029
  # @!group Required parameters
3778
4030
 
@@ -4328,7 +4580,7 @@ class Config
4328
4580
  attr_accessor :name
4329
4581
 
4330
4582
  # **REQUIRED**,
4331
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
4583
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
4332
4584
  #
4333
4585
  # @return [String]
4334
4586
  attr_accessor :type
@@ -4406,6 +4658,12 @@ class Config
4406
4658
  end
4407
4659
  class BasketofKittens
4408
4660
  # Create individual server instances.
4661
+ #
4662
+ # `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
4663
+ #
4664
+ # `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
4665
+ #
4666
+ # `Google`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
4409
4667
  class servers
4410
4668
  # @!group Required parameters
4411
4669
 
@@ -4470,7 +4728,7 @@ class Config
4470
4728
  # @return [Boolean]
4471
4729
  attr_accessor :scrub_mu_isms
4472
4730
 
4473
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
4731
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
4474
4732
  #
4475
4733
  # @return [String]
4476
4734
  attr_accessor :region
@@ -4505,7 +4763,7 @@ class Config
4505
4763
  # @return [Boolean]
4506
4764
  attr_accessor :scrub_groomer
4507
4765
 
4508
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
4766
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
4509
4767
  #
4510
4768
  # @return [Array<BasketofKittens::servers::tags>]
4511
4769
  # @see BasketofKittens::servers::tags
@@ -5123,7 +5381,7 @@ class Config
5123
5381
  # @return [Integer]
5124
5382
  attr_accessor :weight
5125
5383
 
5126
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
5384
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
5127
5385
  #
5128
5386
  # @return [String]
5129
5387
  attr_accessor :region
@@ -5213,7 +5471,7 @@ class Config
5213
5471
  # @return [String]
5214
5472
  attr_accessor :vpc_name
5215
5473
 
5216
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
5474
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
5217
5475
  #
5218
5476
  # @return [String]
5219
5477
  attr_accessor :region
@@ -5284,7 +5542,7 @@ class Config
5284
5542
  end
5285
5543
  class BasketofKittens
5286
5544
  class server_pools
5287
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
5545
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
5288
5546
  class tags
5289
5547
  # @!group Required parameters
5290
5548
 
@@ -5840,7 +6098,7 @@ class Config
5840
6098
  attr_accessor :name
5841
6099
 
5842
6100
  # **REQUIRED**,
5843
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
6101
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
5844
6102
  #
5845
6103
  # @return [String]
5846
6104
  attr_accessor :type
@@ -6383,6 +6641,12 @@ class Config
6383
6641
  end
6384
6642
  class BasketofKittens
6385
6643
  # Create scalable pools of identical servers.
6644
+ #
6645
+ # `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
6646
+ #
6647
+ # `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
6648
+ #
6649
+ # `Google`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
6386
6650
  class server_pools
6387
6651
  # @!group Required parameters
6388
6652
 
@@ -6440,7 +6704,7 @@ class Config
6440
6704
  # @see BasketofKittens::server_pools::vpc
6441
6705
  attr_accessor :vpc
6442
6706
 
6443
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
6707
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
6444
6708
  #
6445
6709
  # @return [Array<BasketofKittens::server_pools::tags>]
6446
6710
  # @see BasketofKittens::server_pools::tags
@@ -6484,7 +6748,7 @@ class Config
6484
6748
  # @return [Array<String>]
6485
6749
  attr_accessor :zones
6486
6750
 
6487
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
6751
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
6488
6752
  #
6489
6753
  # @return [String]
6490
6754
  attr_accessor :region
@@ -6774,7 +7038,7 @@ class Config
6774
7038
  end
6775
7039
  class BasketofKittens
6776
7040
  class vpcs
6777
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
7041
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
6778
7042
  class tags
6779
7043
  # @!group Required parameters
6780
7044
 
@@ -6824,7 +7088,7 @@ class Config
6824
7088
  attr_accessor :name
6825
7089
 
6826
7090
  # **REQUIRED**,
6827
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
7091
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
6828
7092
  #
6829
7093
  # @return [String]
6830
7094
  attr_accessor :type
@@ -6895,7 +7159,7 @@ class Config
6895
7159
  # @return [String]
6896
7160
  attr_accessor :vpc_name
6897
7161
 
6898
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
7162
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
6899
7163
  #
6900
7164
  # @return [String]
6901
7165
  attr_accessor :region
@@ -7121,6 +7385,12 @@ class Config
7121
7385
  end
7122
7386
  class BasketofKittens
7123
7387
  # Create Virtual Private Clouds with custom public or private subnets.
7388
+ #
7389
+ # `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
7390
+ #
7391
+ # `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
7392
+ #
7393
+ # `Google`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
7124
7394
  class vpcs
7125
7395
  # @!group Required parameters
7126
7396
 
@@ -7144,7 +7414,7 @@ class Config
7144
7414
  # @return [String]
7145
7415
  attr_accessor :ip_block
7146
7416
 
7147
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
7417
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
7148
7418
  #
7149
7419
  # @return [Array<BasketofKittens::vpcs::tags>]
7150
7420
  # @see BasketofKittens::vpcs::tags
@@ -7277,7 +7547,7 @@ class Config
7277
7547
  attr_accessor :enable_traffic_logging
7278
7548
 
7279
7549
  # **GOOGLE ONLY**,
7280
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
7550
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
7281
7551
  #
7282
7552
  # @return [Array<String>]
7283
7553
  attr_accessor :regions
@@ -7292,7 +7562,7 @@ class Config
7292
7562
  end
7293
7563
  class BasketofKittens
7294
7564
  class cache_clusters
7295
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
7565
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
7296
7566
  class tags
7297
7567
  # @!group Required parameters
7298
7568
 
@@ -7589,7 +7859,7 @@ class Config
7589
7859
  # @return [Integer]
7590
7860
  attr_accessor :weight
7591
7861
 
7592
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
7862
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
7593
7863
  #
7594
7864
  # @return [String]
7595
7865
  attr_accessor :region
@@ -7825,7 +8095,7 @@ class Config
7825
8095
  # @return [String]
7826
8096
  attr_accessor :vpc_name
7827
8097
 
7828
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
8098
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
7829
8099
  #
7830
8100
  # @return [String]
7831
8101
  attr_accessor :region
@@ -7925,7 +8195,7 @@ class Config
7925
8195
  attr_accessor :name
7926
8196
 
7927
8197
  # **REQUIRED**,
7928
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
8198
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
7929
8199
  #
7930
8200
  # @return [String]
7931
8201
  attr_accessor :type
@@ -7949,6 +8219,10 @@ class Config
7949
8219
  end
7950
8220
  class BasketofKittens
7951
8221
  # Create cache cluster(s).
8222
+ #
8223
+ # `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
8224
+ #
8225
+ # `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
7952
8226
  class cache_clusters
7953
8227
  # @!group Required parameters
7954
8228
 
@@ -7984,12 +8258,12 @@ class Config
7984
8258
  # @return [Boolean]
7985
8259
  attr_accessor :scrub_mu_isms
7986
8260
 
7987
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
8261
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
7988
8262
  #
7989
8263
  # @return [String]
7990
8264
  attr_accessor :region
7991
8265
 
7992
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
8266
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
7993
8267
  #
7994
8268
  # @return [Array<BasketofKittens::cache_clusters::tags>]
7995
8269
  # @see BasketofKittens::cache_clusters::tags
@@ -8180,7 +8454,7 @@ class Config
8180
8454
  attr_accessor :name
8181
8455
 
8182
8456
  # **REQUIRED**,
8183
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
8457
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
8184
8458
  #
8185
8459
  # @return [String]
8186
8460
  attr_accessor :type
@@ -8204,6 +8478,10 @@ class Config
8204
8478
  end
8205
8479
  class BasketofKittens
8206
8480
  # Cloud platform monitoring alarms
8481
+ #
8482
+ # `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
8483
+ #
8484
+ # `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
8207
8485
  class alarms
8208
8486
  # @!group Optional parameters
8209
8487
 
@@ -8354,7 +8632,7 @@ class Config
8354
8632
  attr_accessor :name
8355
8633
 
8356
8634
  # **REQUIRED**,
8357
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
8635
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
8358
8636
  #
8359
8637
  # @return [String]
8360
8638
  attr_accessor :type
@@ -8378,6 +8656,8 @@ class Config
8378
8656
  end
8379
8657
  class BasketofKittens
8380
8658
  # A stub for inline resource that generate SNS notifications in AWS. This should really be expanded.
8659
+ #
8660
+ # `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
8381
8661
  class notifiers
8382
8662
  # @!group Optional parameters
8383
8663
 
@@ -8385,7 +8665,7 @@ class Config
8385
8665
  # @return [String]
8386
8666
  attr_accessor :name
8387
8667
 
8388
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
8668
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
8389
8669
  #
8390
8670
  # @return [String]
8391
8671
  attr_accessor :region
@@ -8432,7 +8712,7 @@ class Config
8432
8712
  attr_accessor :name
8433
8713
 
8434
8714
  # **REQUIRED**,
8435
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
8715
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
8436
8716
  #
8437
8717
  # @return [String]
8438
8718
  attr_accessor :type
@@ -8499,6 +8779,10 @@ class Config
8499
8779
  end
8500
8780
  class BasketofKittens
8501
8781
  # Log events using a cloud provider's log service.
8782
+ #
8783
+ # `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
8784
+ #
8785
+ # `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
8502
8786
  class logs
8503
8787
  # @!group Optional parameters
8504
8788
 
@@ -8506,7 +8790,7 @@ class Config
8506
8790
  # @return [String]
8507
8791
  attr_accessor :name
8508
8792
 
8509
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
8793
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
8510
8794
  #
8511
8795
  # @return [String]
8512
8796
  attr_accessor :region
@@ -8561,7 +8845,7 @@ class Config
8561
8845
  end
8562
8846
  class BasketofKittens
8563
8847
  class storage_pools
8564
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
8848
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
8565
8849
  class tags
8566
8850
  # @!group Required parameters
8567
8851
 
@@ -8590,7 +8874,7 @@ class Config
8590
8874
  attr_accessor :name
8591
8875
 
8592
8876
  # **REQUIRED**,
8593
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
8877
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
8594
8878
  #
8595
8879
  # @return [String]
8596
8880
  attr_accessor :type
@@ -8661,7 +8945,7 @@ class Config
8661
8945
  # @return [String]
8662
8946
  attr_accessor :vpc_name
8663
8947
 
8664
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
8948
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
8665
8949
  #
8666
8950
  # @return [String]
8667
8951
  attr_accessor :region
@@ -8836,6 +9120,8 @@ class Config
8836
9120
  end
8837
9121
  class BasketofKittens
8838
9122
  # Create a storage pool.
9123
+ #
9124
+ # `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
8839
9125
  class storage_pools
8840
9126
  # @!group Required parameters
8841
9127
 
@@ -8852,12 +9138,12 @@ class Config
8852
9138
  # @!endgroup
8853
9139
  # @!group Optional parameters
8854
9140
 
8855
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
9141
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
8856
9142
  #
8857
9143
  # @return [String]
8858
9144
  attr_accessor :region
8859
9145
 
8860
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
9146
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
8861
9147
  #
8862
9148
  # @return [Array<BasketofKittens::storage_pools::tags>]
8863
9149
  # @see BasketofKittens::storage_pools::tags
@@ -8982,7 +9268,7 @@ class Config
8982
9268
  # @return [String]
8983
9269
  attr_accessor :vpc_name
8984
9270
 
8985
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
9271
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
8986
9272
  #
8987
9273
  # @return [String]
8988
9274
  attr_accessor :region
@@ -9029,7 +9315,7 @@ class Config
9029
9315
  end
9030
9316
  class BasketofKittens
9031
9317
  class functions
9032
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
9318
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
9033
9319
  class tags
9034
9320
  # @!group Required parameters
9035
9321
 
@@ -9114,7 +9400,7 @@ class Config
9114
9400
  attr_accessor :name
9115
9401
 
9116
9402
  # **REQUIRED**,
9117
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
9403
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
9118
9404
  #
9119
9405
  # @return [String]
9120
9406
  attr_accessor :type
@@ -9180,6 +9466,8 @@ class Config
9180
9466
  end
9181
9467
  class BasketofKittens
9182
9468
  # Create a cloud function.
9469
+ #
9470
+ # `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
9183
9471
  class functions
9184
9472
  # @!group Required parameters
9185
9473
 
@@ -9201,7 +9489,7 @@ class Config
9201
9489
  attr_accessor :runtime
9202
9490
 
9203
9491
  # **REQUIRED**,
9204
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
9492
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
9205
9493
  #
9206
9494
  # @return [String]
9207
9495
  attr_accessor :region
@@ -9233,7 +9521,7 @@ class Config
9233
9521
  # @return [Integer]
9234
9522
  attr_accessor :timeout
9235
9523
 
9236
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
9524
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
9237
9525
  #
9238
9526
  # @return [Array<BasketofKittens::functions::tags>]
9239
9527
  # @see BasketofKittens::functions::tags
@@ -9327,7 +9615,7 @@ class Config
9327
9615
  # @return [String]
9328
9616
  attr_accessor :vpc_name
9329
9617
 
9330
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
9618
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
9331
9619
  #
9332
9620
  # @return [String]
9333
9621
  attr_accessor :region
@@ -9595,7 +9883,7 @@ class Config
9595
9883
  attr_accessor :name
9596
9884
 
9597
9885
  # **REQUIRED**,
9598
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
9886
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
9599
9887
  #
9600
9888
  # @return [String]
9601
9889
  attr_accessor :type
@@ -9619,6 +9907,8 @@ class Config
9619
9907
  end
9620
9908
  class BasketofKittens
9621
9909
  # Create a cloud API endpoint, e.g. Amazon API Gateway
9910
+ #
9911
+ # `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
9622
9912
  class endpoints
9623
9913
  # @!group Required parameters
9624
9914
 
@@ -9634,7 +9924,7 @@ class Config
9634
9924
  attr_accessor :name
9635
9925
 
9636
9926
  # **REQUIRED**,
9637
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
9927
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
9638
9928
  #
9639
9929
  # @return [String]
9640
9930
  attr_accessor :region
@@ -9727,7 +10017,7 @@ class Config
9727
10017
  # @return [String]
9728
10018
  attr_accessor :vpc_name
9729
10019
 
9730
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
10020
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
9731
10021
  #
9732
10022
  # @return [String]
9733
10023
  attr_accessor :region
@@ -9774,7 +10064,7 @@ class Config
9774
10064
  end
9775
10065
  class BasketofKittens
9776
10066
  class container_clusters
9777
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
10067
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
9778
10068
  class tags
9779
10069
  # @!group Required parameters
9780
10070
 
@@ -10348,7 +10638,7 @@ class Config
10348
10638
  attr_accessor :name
10349
10639
 
10350
10640
  # **REQUIRED**,
10351
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
10641
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
10352
10642
  #
10353
10643
  # @return [String]
10354
10644
  attr_accessor :type
@@ -10372,6 +10662,10 @@ class Config
10372
10662
  end
10373
10663
  class BasketofKittens
10374
10664
  # Create a cluster of container hosts.
10665
+ #
10666
+ # `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
10667
+ #
10668
+ # `Google`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
10375
10669
  class container_clusters
10376
10670
  # @!group Required parameters
10377
10671
 
@@ -10399,7 +10693,7 @@ class Config
10399
10693
  # @!endgroup
10400
10694
  # @!group Optional parameters
10401
10695
 
10402
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
10696
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
10403
10697
  #
10404
10698
  # @return [String]
10405
10699
  attr_accessor :region
@@ -10410,7 +10704,7 @@ class Config
10410
10704
  # @see BasketofKittens::container_clusters::vpc
10411
10705
  attr_accessor :vpc
10412
10706
 
10413
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
10707
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
10414
10708
  #
10415
10709
  # @return [Array<BasketofKittens::container_clusters::tags>]
10416
10710
  # @see BasketofKittens::container_clusters::tags
@@ -10722,7 +11016,7 @@ class Config
10722
11016
  # @return [String]
10723
11017
  attr_accessor :vpc_name
10724
11018
 
10725
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
11019
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
10726
11020
  #
10727
11021
  # @return [String]
10728
11022
  attr_accessor :region
@@ -10769,7 +11063,7 @@ class Config
10769
11063
  end
10770
11064
  class BasketofKittens
10771
11065
  class search_domains
10772
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
11066
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
10773
11067
  class tags
10774
11068
  # @!group Required parameters
10775
11069
 
@@ -10854,7 +11148,7 @@ class Config
10854
11148
  attr_accessor :name
10855
11149
 
10856
11150
  # **REQUIRED**,
10857
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
11151
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
10858
11152
  #
10859
11153
  # @return [String]
10860
11154
  attr_accessor :type
@@ -10923,6 +11217,8 @@ class Config
10923
11217
  end
10924
11218
  class BasketofKittens
10925
11219
  # Set up a cloud provider managed Elastic Search cluster.
11220
+ #
11221
+ # `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
10926
11222
  class search_domains
10927
11223
  # @!group Optional parameters
10928
11224
 
@@ -10933,7 +11229,7 @@ class Config
10933
11229
  # @return [String]
10934
11230
  attr_accessor :name
10935
11231
 
10936
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
11232
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
10937
11233
  #
10938
11234
  # @return [String]
10939
11235
  attr_accessor :region
@@ -10944,7 +11240,7 @@ class Config
10944
11240
  # @see BasketofKittens::search_domains::vpc
10945
11241
  attr_accessor :vpc
10946
11242
 
10947
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
11243
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
10948
11244
  #
10949
11245
  # @return [Array<BasketofKittens::search_domains::tags>]
10950
11246
  # @see BasketofKittens::search_domains::tags
@@ -11094,7 +11390,7 @@ class Config
11094
11390
  end
11095
11391
  class BasketofKittens
11096
11392
  class msg_queues
11097
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
11393
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
11098
11394
  class tags
11099
11395
  # @!group Required parameters
11100
11396
 
@@ -11123,7 +11419,7 @@ class Config
11123
11419
  attr_accessor :name
11124
11420
 
11125
11421
  # **REQUIRED**,
11126
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
11422
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
11127
11423
  #
11128
11424
  # @return [String]
11129
11425
  attr_accessor :type
@@ -11198,6 +11494,8 @@ class Config
11198
11494
  end
11199
11495
  class BasketofKittens
11200
11496
  # Set up a cloud provider queueing service.
11497
+ #
11498
+ # `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
11201
11499
  class msg_queues
11202
11500
  # @!group Optional parameters
11203
11501
 
@@ -11205,12 +11503,12 @@ class Config
11205
11503
  # @return [String]
11206
11504
  attr_accessor :name
11207
11505
 
11208
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
11506
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
11209
11507
  #
11210
11508
  # @return [String]
11211
11509
  attr_accessor :region
11212
11510
 
11213
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
11511
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
11214
11512
  #
11215
11513
  # @return [Array<BasketofKittens::msg_queues::tags>]
11216
11514
  # @see BasketofKittens::msg_queues::tags
@@ -11310,37 +11608,7 @@ class Config
11310
11608
  end
11311
11609
  end
11312
11610
  class BasketofKittens
11313
- class habitats
11314
- # Deploy into or connect with resources in a specific account/project
11315
- class folder
11316
- # @!group Optional parameters
11317
-
11318
- # Discover this folder/OU by looking by its cloud provider identifier
11319
- #
11320
- # @return [String]
11321
- attr_accessor :id
11322
-
11323
- # Discover this folder/OU by Mu-internal name; typically the shorthand 'name' field of an Folder object declared elsewhere in the deploy, or in another deploy that's being referenced with 'deploy_id'.
11324
- #
11325
- # @return [String]
11326
- attr_accessor :name
11327
-
11328
- # **Default: `AWS`**,
11329
- # **Must be one of: `AWS, CloudFormation, Google, Azure`**
11330
- #
11331
- # @return [String]
11332
- attr_accessor :cloud
11333
-
11334
- # Search for this folder in an existing Mu deploy; specify a Mu deploy id (e.g. DEMO-DEV-2014111400-NG).
11335
- #
11336
- # @return [String]
11337
- attr_accessor :deploy_id
11338
- # @!endgroup
11339
- end
11340
- end
11341
- end
11342
- class BasketofKittens
11343
- class habitats
11611
+ class users
11344
11612
  # Declare other objects which this resource requires. This resource will wait until the others are available to create itself.
11345
11613
  class dependencies
11346
11614
  # @!group Required parameters
@@ -11351,7 +11619,7 @@ class Config
11351
11619
  attr_accessor :name
11352
11620
 
11353
11621
  # **REQUIRED**,
11354
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
11622
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
11355
11623
  #
11356
11624
  # @return [String]
11357
11625
  attr_accessor :type
@@ -11373,155 +11641,9 @@ class Config
11373
11641
  end
11374
11642
  end
11375
11643
  end
11376
- class BasketofKittens
11377
- # Generate a cloud habitat (AWS account, Google Cloud project, Azure Directory, etc)
11378
- class habitats
11379
- # @!group Optional parameters
11380
-
11381
- #
11382
- # @return [String]
11383
- attr_accessor :name
11384
-
11385
- # Deploy into or connect with resources in a specific account/project
11386
- #
11387
- # @return [BasketofKittens::habitats::folder]
11388
- # @see BasketofKittens::habitats::folder
11389
- attr_accessor :folder
11390
-
11391
- # Internal use.
11392
- #
11393
- # @return [String]
11394
- attr_accessor :virtual_name
11395
-
11396
- # Declare other objects which this resource requires. This resource will wait until the others are available to create itself.
11397
- #
11398
- # @return [Array<BasketofKittens::habitats::dependencies>]
11399
- # @see BasketofKittens::habitats::dependencies
11400
- attr_accessor :dependencies
11401
-
11402
- # **Default: `AWS`**,
11403
- # **Must be one of: `AWS, CloudFormation, Google, Azure`**
11404
- #
11405
- # @return [String]
11406
- attr_accessor :cloud
11407
-
11408
- # Specify a non-default set of credentials to use when authenticating to cloud provider APIs, as listed in `mu.yaml` under each provider's subsection. If
11409
- #
11410
- # @return [String]
11411
- attr_accessor :credentials
11412
-
11413
- # **AWS ONLY** -
11414
- # +AWS+: AWS accounts require a unique contact email address. If not provided, Mu will generate an alias to the global mu_admin_email using the +foo SMTP mechanism.
11415
- #
11416
- # @return [String]
11417
- attr_accessor :email
11418
- # @!endgroup
11419
- end
11420
- end
11421
- class BasketofKittens
11422
- class folders
11423
- # Declare other objects which this resource requires. This resource will wait until the others are available to create itself.
11424
- class dependencies
11425
- # @!group Required parameters
11426
-
11427
- # **REQUIRED**
11428
- #
11429
- # @return [String]
11430
- attr_accessor :name
11431
-
11432
- # **REQUIRED**,
11433
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
11434
- #
11435
- # @return [String]
11436
- attr_accessor :type
11437
- # @!endgroup
11438
- # @!group Optional parameters
11439
-
11440
- # **Must be one of: `create, groom`** -
11441
- # Which part of the creation process of the resource we depend on should we wait for before starting our own creation? Defaults are usually sensible, but sometimes you want, say, a Server to wait on another Server to be completely ready (through its groom phase) before starting up.
11442
- #
11443
- # @return [String]
11444
- attr_accessor :phase
11445
-
11446
- # **Default: `false`** -
11447
- # By default, it's assumed that we want to wait on our parents' creation phase, in addition to whatever is declared in this stanza. Setting this flag will bypass waiting on our parent resource's creation, so that our create or groom phase can instead depend only on the parent's groom phase.
11448
- #
11449
- # @return [Boolean]
11450
- attr_accessor :no_create_wait
11451
- # @!endgroup
11452
- end
11453
- end
11454
- end
11455
- class BasketofKittens
11456
- # Set up a cloud provider folder/OU for containing other account-level resources
11457
- class folders
11458
- # @!group Optional parameters
11459
-
11460
- #
11461
- # @return [String]
11462
- attr_accessor :name
11463
-
11464
- # Internal use.
11465
- #
11466
- # @return [String]
11467
- attr_accessor :virtual_name
11468
-
11469
- # Declare other objects which this resource requires. This resource will wait until the others are available to create itself.
11470
- #
11471
- # @return [Array<BasketofKittens::folders::dependencies>]
11472
- # @see BasketofKittens::folders::dependencies
11473
- attr_accessor :dependencies
11474
-
11475
- # **Default: `AWS`**,
11476
- # **Must be one of: `AWS, CloudFormation, Google, Azure`**
11477
- #
11478
- # @return [String]
11479
- attr_accessor :cloud
11480
-
11481
- # Specify a non-default set of credentials to use when authenticating to cloud provider APIs, as listed in `mu.yaml` under each provider's subsection. If
11482
- #
11483
- # @return [String]
11484
- attr_accessor :credentials
11485
- # @!endgroup
11486
- end
11487
- end
11488
11644
  class BasketofKittens
11489
11645
  class users
11490
- # Declare other objects which this resource requires. This resource will wait until the others are available to create itself.
11491
- class dependencies
11492
- # @!group Required parameters
11493
-
11494
- # **REQUIRED**
11495
- #
11496
- # @return [String]
11497
- attr_accessor :name
11498
-
11499
- # **REQUIRED**,
11500
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
11501
- #
11502
- # @return [String]
11503
- attr_accessor :type
11504
- # @!endgroup
11505
- # @!group Optional parameters
11506
-
11507
- # **Must be one of: `create, groom`** -
11508
- # Which part of the creation process of the resource we depend on should we wait for before starting our own creation? Defaults are usually sensible, but sometimes you want, say, a Server to wait on another Server to be completely ready (through its groom phase) before starting up.
11509
- #
11510
- # @return [String]
11511
- attr_accessor :phase
11512
-
11513
- # **Default: `false`** -
11514
- # By default, it's assumed that we want to wait on our parents' creation phase, in addition to whatever is declared in this stanza. Setting this flag will bypass waiting on our parent resource's creation, so that our create or groom phase can instead depend only on the parent's groom phase.
11515
- #
11516
- # @return [Boolean]
11517
- attr_accessor :no_create_wait
11518
- # @!endgroup
11519
- end
11520
- end
11521
- end
11522
- class BasketofKittens
11523
- class users
11524
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
11646
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
11525
11647
  class tags
11526
11648
  # @!group Required parameters
11527
11649
 
@@ -11549,6 +11671,10 @@ class Config
11549
11671
  end
11550
11672
  class BasketofKittens
11551
11673
  # Set up a cloud provider user or machine account
11674
+ #
11675
+ # `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
11676
+ #
11677
+ # `Google`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
11552
11678
  class users
11553
11679
  # @!group Required parameters
11554
11680
 
@@ -11623,7 +11749,7 @@ class Config
11623
11749
  attr_accessor :path
11624
11750
 
11625
11751
  # **AWS ONLY**
11626
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
11752
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
11627
11753
  #
11628
11754
  # @return [Array<BasketofKittens::users::tags>]
11629
11755
  # @see BasketofKittens::users::tags
@@ -11685,7 +11811,7 @@ class Config
11685
11811
  attr_accessor :name
11686
11812
 
11687
11813
  # **REQUIRED**,
11688
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
11814
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
11689
11815
  #
11690
11816
  # @return [String]
11691
11817
  attr_accessor :type
@@ -11716,6 +11842,10 @@ class Config
11716
11842
  end
11717
11843
  class BasketofKittens
11718
11844
  # Set up a cloud provider group for containing accounts/groups
11845
+ #
11846
+ # `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
11847
+ #
11848
+ # `Google`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
11719
11849
  class groups
11720
11850
  # @!group Required parameters
11721
11851
 
@@ -11828,6 +11958,35 @@ class Config
11828
11958
  end
11829
11959
  end
11830
11960
  end
11961
+ class BasketofKittens
11962
+ class roles
11963
+ class policies
11964
+ # One or more conditions under which to apply this policy. See also: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition.html
11965
+ class conditions
11966
+ # @!group Required parameters
11967
+
11968
+ # **REQUIRED** -
11969
+ # A comparison to make, like +DateGreaterThan+ or +IpAddress+.
11970
+ #
11971
+ # @return [String]
11972
+ attr_accessor :comparison
11973
+
11974
+ # **REQUIRED** -
11975
+ # The variable which we will compare, like +aws:CurrentTime+ or +aws:SourceIp+.
11976
+ #
11977
+ # @return [String]
11978
+ attr_accessor :variable
11979
+
11980
+ # **REQUIRED** -
11981
+ # Value(s) to which we will compare our variable, like +2013-08-16T15:00:00Z+ or +192.0.2.0/24+.
11982
+ #
11983
+ # @return [Array<String>]
11984
+ attr_accessor :values
11985
+ # @!endgroup
11986
+ end
11987
+ end
11988
+ end
11989
+ end
11831
11990
  class BasketofKittens
11832
11991
  class roles
11833
11992
  # Policies which grant or deny permissions.
@@ -11860,6 +12019,12 @@ class Config
11860
12019
  #
11861
12020
  # @return [String]
11862
12021
  attr_accessor :flag
12022
+
12023
+ # One or more conditions under which to apply this policy. See also: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition.html
12024
+ #
12025
+ # @return [Array<BasketofKittens::roles::policies::conditions>]
12026
+ # @see BasketofKittens::roles::policies::conditions
12027
+ attr_accessor :conditions
11863
12028
  # @!endgroup
11864
12029
  end
11865
12030
  end
@@ -11876,7 +12041,7 @@ class Config
11876
12041
  attr_accessor :name
11877
12042
 
11878
12043
  # **REQUIRED**,
11879
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
12044
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
11880
12045
  #
11881
12046
  # @return [String]
11882
12047
  attr_accessor :type
@@ -11900,7 +12065,7 @@ class Config
11900
12065
  end
11901
12066
  class BasketofKittens
11902
12067
  class roles
11903
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
12068
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
11904
12069
  class tags
11905
12070
  # @!group Required parameters
11906
12071
 
@@ -11970,6 +12135,8 @@ class Config
11970
12135
  end
11971
12136
  class BasketofKittens
11972
12137
  # Set up a cloud provider role for mapping permissions to other entities
12138
+ #
12139
+ # `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
11973
12140
  class roles
11974
12141
  # @!group Optional parameters
11975
12142
 
@@ -12013,7 +12180,7 @@ class Config
12013
12180
  attr_accessor :credentials
12014
12181
 
12015
12182
  # **AWS ONLY**
12016
- # Tags to apply to this resource. Will apply at the cloud provider level and in Chef, where applicable.
12183
+ # Tags to apply to this resource. Will apply at the cloud provider level and in node groomers, where applicable.
12017
12184
  #
12018
12185
  # @return [Array<BasketofKittens::roles::tags>]
12019
12186
  # @see BasketofKittens::roles::tags
@@ -12049,6 +12216,137 @@ class Config
12049
12216
  # @!endgroup
12050
12217
  end
12051
12218
  end
12219
+ class BasketofKittens
12220
+ class buckets
12221
+ class policies
12222
+ # Entities to which this policy will grant or deny access.
12223
+ class targets
12224
+ # @!group Required parameters
12225
+
12226
+ # **REQUIRED** -
12227
+ # Either the name of a sibling Mu resource in this stack (used in conjunction with +entity_type+), or the full cloud identifier for a resource, such as an ARN in Amazon Web Services.
12228
+ #
12229
+ # @return [String]
12230
+ attr_accessor :identifier
12231
+ # @!endgroup
12232
+ # @!group Optional parameters
12233
+
12234
+ # **Must be one of: `alarm, bucket, cache_cluster, collection, container_cluster, database, dnszone, endpoint, firewall_rule, folder, function, group, habitat, loadbalancer, log, msg_queue, nosqldb, notifier, role, search_domain, server, server_pool, storage_pool, user, vpc`** -
12235
+ # A Mu resource type, used when referencing a sibling Mu resource in this stack with +identifier+.
12236
+ #
12237
+ # @return [String]
12238
+ attr_accessor :type
12239
+
12240
+ # Target this policy to a path or child resource of the object to which we are granting or denying permissions, such as a key or wildcard in an S3 or Cloud Storage bucket.
12241
+ #
12242
+ # @return [String]
12243
+ attr_accessor :path
12244
+ # @!endgroup
12245
+ end
12246
+ end
12247
+ end
12248
+ end
12249
+ class BasketofKittens
12250
+ class buckets
12251
+ class policies
12252
+ # Entities to which this policy will grant or deny access.
12253
+ class grant_to
12254
+ # @!group Required parameters
12255
+
12256
+ # **REQUIRED** -
12257
+ # Either the name of a sibling Mu resource in this stack (used in conjunction with +entity_type+), or the full cloud identifier for a resource, such as an Amazon ARN or email-address-formatted Google Cloud username. Wildcards (+*+) are valid if supported by the cloud provider.
12258
+ #
12259
+ # @return [String]
12260
+ attr_accessor :identifier
12261
+ # @!endgroup
12262
+ # @!group Optional parameters
12263
+
12264
+ # **Must be one of: `alarm, bucket, cache_cluster, collection, container_cluster, database, dnszone, endpoint, firewall_rule, folder, function, group, habitat, loadbalancer, log, msg_queue, nosqldb, notifier, role, search_domain, server, server_pool, storage_pool, user, vpc`** -
12265
+ # A Mu resource type, used when referencing a sibling Mu resource in this stack with +identifier+.
12266
+ #
12267
+ # @return [String]
12268
+ attr_accessor :type
12269
+ # @!endgroup
12270
+ end
12271
+ end
12272
+ end
12273
+ end
12274
+ class BasketofKittens
12275
+ class buckets
12276
+ class policies
12277
+ # One or more conditions under which to apply this policy. See also: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition.html
12278
+ class conditions
12279
+ # @!group Required parameters
12280
+
12281
+ # **REQUIRED** -
12282
+ # A comparison to make, like +DateGreaterThan+ or +IpAddress+.
12283
+ #
12284
+ # @return [String]
12285
+ attr_accessor :comparison
12286
+
12287
+ # **REQUIRED** -
12288
+ # The variable which we will compare, like +aws:CurrentTime+ or +aws:SourceIp+.
12289
+ #
12290
+ # @return [String]
12291
+ attr_accessor :variable
12292
+
12293
+ # **REQUIRED** -
12294
+ # Value(s) to which we will compare our variable, like +2013-08-16T15:00:00Z+ or +192.0.2.0/24+.
12295
+ #
12296
+ # @return [Array<String>]
12297
+ attr_accessor :values
12298
+ # @!endgroup
12299
+ end
12300
+ end
12301
+ end
12302
+ end
12303
+ class BasketofKittens
12304
+ class buckets
12305
+ # Policies which grant or deny permissions.
12306
+ class policies
12307
+ # @!group Required parameters
12308
+
12309
+ # **REQUIRED** -
12310
+ # A unique name for this policy
12311
+ #
12312
+ # @return [String]
12313
+ attr_accessor :name
12314
+
12315
+ # **REQUIRED**
12316
+ # Entities to which this policy will grant or deny access.
12317
+ #
12318
+ # @return [Array<BasketofKittens::buckets::policies::targets>]
12319
+ # @see BasketofKittens::buckets::policies::targets
12320
+ attr_accessor :targets
12321
+ # @!endgroup
12322
+ # @!group Optional parameters
12323
+
12324
+ # **Default: `allow`**,
12325
+ # **Must be one of: `allow, deny`**
12326
+ #
12327
+ # @return [String]
12328
+ attr_accessor :flag
12329
+
12330
+ # Permissions to grant or deny. Valid permission strings are cloud-specific.
12331
+ #
12332
+ # @return [Array<String>]
12333
+ attr_accessor :permissions
12334
+
12335
+ # Entities to which this policy will grant or deny access.
12336
+ #
12337
+ # @return [Array<BasketofKittens::buckets::policies::grant_to>]
12338
+ # @see BasketofKittens::buckets::policies::grant_to
12339
+ attr_accessor :grant_to
12340
+
12341
+ # One or more conditions under which to apply this policy. See also: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition.html
12342
+ #
12343
+ # @return [Array<BasketofKittens::buckets::policies::conditions>]
12344
+ # @see BasketofKittens::buckets::policies::conditions
12345
+ attr_accessor :conditions
12346
+ # @!endgroup
12347
+ end
12348
+ end
12349
+ end
12052
12350
  class BasketofKittens
12053
12351
  class buckets
12054
12352
  # Declare other objects which this resource requires. This resource will wait until the others are available to create itself.
@@ -12061,7 +12359,7 @@ class Config
12061
12359
  attr_accessor :name
12062
12360
 
12063
12361
  # **REQUIRED**,
12064
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
12362
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
12065
12363
  #
12066
12364
  # @return [String]
12067
12365
  attr_accessor :type
@@ -12085,6 +12383,10 @@ class Config
12085
12383
  end
12086
12384
  class BasketofKittens
12087
12385
  # A simple storage bucket, like Google Cloud Storage or Amazon S3.
12386
+ #
12387
+ # `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
12388
+ #
12389
+ # `Google`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
12088
12390
  class buckets
12089
12391
  # @!group Optional parameters
12090
12392
 
@@ -12092,7 +12394,7 @@ class Config
12092
12394
  # @return [String]
12093
12395
  attr_accessor :name
12094
12396
 
12095
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
12397
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
12096
12398
  #
12097
12399
  # @return [String]
12098
12400
  attr_accessor :region
@@ -12126,6 +12428,12 @@ class Config
12126
12428
  # @return [String]
12127
12429
  attr_accessor :web_index_object
12128
12430
 
12431
+ # Policies which grant or deny permissions.
12432
+ #
12433
+ # @return [Array<BasketofKittens::buckets::policies>]
12434
+ # @see BasketofKittens::buckets::policies
12435
+ attr_accessor :policies
12436
+
12129
12437
  # Internal use.
12130
12438
  #
12131
12439
  # @return [String]
@@ -12174,7 +12482,7 @@ class Config
12174
12482
  attr_accessor :name
12175
12483
 
12176
12484
  # **REQUIRED**,
12177
- # **Must be one of: `collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, habitat, folder, user, group, role, bucket, nosqldb`**
12485
+ # **Must be one of: `folder, habitat, collection, database, dnszone, firewall_rule, loadbalancer, server, server_pool, vpc, cache_cluster, alarm, notifier, log, storage_pool, function, endpoint, container_cluster, search_domain, msg_queue, user, group, role, bucket, nosqldb`**
12178
12486
  #
12179
12487
  # @return [String]
12180
12488
  attr_accessor :type
@@ -12333,6 +12641,8 @@ class Config
12333
12641
  end
12334
12642
  class BasketofKittens
12335
12643
  # A simple storage bucket, like Google Cloud Storage or Amazon S3.
12644
+ #
12645
+ # `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
12336
12646
  class nosqldbs
12337
12647
  # @!group Optional parameters
12338
12648
 
@@ -12340,7 +12650,7 @@ class Config
12340
12650
  # @return [String]
12341
12651
  attr_accessor :name
12342
12652
 
12343
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
12653
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
12344
12654
  #
12345
12655
  # @return [String]
12346
12656
  attr_accessor :region
@@ -12433,7 +12743,7 @@ class Config
12433
12743
  # @return [String]
12434
12744
  attr_accessor :project
12435
12745
 
12436
- # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
12746
+ # **Must be one of: `us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, us-east-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-2, us-west-1, us-west-2, asia-east1, asia-east2, asia-northeast1, asia-south1, asia-southeast1, australia-southeast1, europe-north1, europe-west1, europe-west2, europe-west3, europe-west4, europe-west6, northamerica-northeast1, southamerica-east1, us-central1, us-east1, us-east4, us-west1, us-west2`**
12437
12747
  #
12438
12748
  # @return [String]
12439
12749
  attr_accessor :region
@@ -12461,151 +12771,247 @@ class Config
12461
12771
  # @see BasketofKittens::parameters
12462
12772
  attr_accessor :parameters
12463
12773
 
12774
+ # Set up a cloud provider folder/OU for containing other account-level resources
12775
+ ##
12776
+ ## `AWS`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12777
+ ##
12778
+ ## `Google`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
12779
+ #
12780
+ # @return [Array<BasketofKittens::folders>]
12781
+ # @see BasketofKittens::folders
12782
+ attr_accessor :folders
12783
+
12784
+ # Generate a cloud habitat (AWS account, Google Cloud project, Azure Directory, etc)
12785
+ ##
12786
+ ## `AWS`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12787
+ ##
12788
+ ## `Google`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
12789
+ #
12790
+ # @return [Array<BasketofKittens::habitats>]
12791
+ # @see BasketofKittens::habitats
12792
+ attr_accessor :habitats
12793
+
12464
12794
  # Create an Amazon CloudFormation stack.
12795
+ ##
12796
+ ## `AWS`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12797
+ ##
12798
+ ## `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12465
12799
  #
12466
12800
  # @return [Array<BasketofKittens::collections>]
12467
12801
  # @see BasketofKittens::collections
12468
12802
  attr_accessor :collections
12469
12803
 
12470
12804
  # Create a dedicated database server.
12805
+ ##
12806
+ ## `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12807
+ ##
12808
+ ## `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12809
+ ##
12810
+ ## `Google`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12471
12811
  #
12472
12812
  # @return [Array<BasketofKittens::databases>]
12473
12813
  # @see BasketofKittens::databases
12474
12814
  attr_accessor :databases
12475
12815
 
12476
12816
  # Create a DNS zone in Route 53.
12817
+ ##
12818
+ ## `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12819
+ ##
12820
+ ## `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12477
12821
  #
12478
12822
  # @return [Array<BasketofKittens::dnszones>]
12479
12823
  # @see BasketofKittens::dnszones
12480
12824
  attr_accessor :dnszones
12481
12825
 
12482
12826
  # Create network-level access controls.
12827
+ ##
12828
+ ## `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12829
+ ##
12830
+ ## `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12831
+ ##
12832
+ ## `Google`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12483
12833
  #
12484
12834
  # @return [Array<BasketofKittens::firewall_rules>]
12485
12835
  # @see BasketofKittens::firewall_rules
12486
12836
  attr_accessor :firewall_rules
12487
12837
 
12488
12838
  # Create Load Balancers
12839
+ ##
12840
+ ## `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12841
+ ##
12842
+ ## `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12843
+ ##
12844
+ ## `Google`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12489
12845
  #
12490
12846
  # @return [Array<BasketofKittens::loadbalancers>]
12491
12847
  # @see BasketofKittens::loadbalancers
12492
12848
  attr_accessor :loadbalancers
12493
12849
 
12494
12850
  # Create individual server instances.
12851
+ ##
12852
+ ## `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12853
+ ##
12854
+ ## `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12855
+ ##
12856
+ ## `Google`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12495
12857
  #
12496
12858
  # @return [Array<BasketofKittens::servers>]
12497
12859
  # @see BasketofKittens::servers
12498
12860
  attr_accessor :servers
12499
12861
 
12500
12862
  # Create scalable pools of identical servers.
12863
+ ##
12864
+ ## `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12865
+ ##
12866
+ ## `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12867
+ ##
12868
+ ## `Google`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12501
12869
  #
12502
12870
  # @return [Array<BasketofKittens::server_pools>]
12503
12871
  # @see BasketofKittens::server_pools
12504
12872
  attr_accessor :server_pools
12505
12873
 
12506
12874
  # Create Virtual Private Clouds with custom public or private subnets.
12875
+ ##
12876
+ ## `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12877
+ ##
12878
+ ## `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12879
+ ##
12880
+ ## `Google`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12507
12881
  #
12508
12882
  # @return [Array<BasketofKittens::vpcs>]
12509
12883
  # @see BasketofKittens::vpcs
12510
12884
  attr_accessor :vpcs
12511
12885
 
12512
12886
  # Create cache cluster(s).
12887
+ ##
12888
+ ## `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12889
+ ##
12890
+ ## `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12513
12891
  #
12514
12892
  # @return [Array<BasketofKittens::cache_clusters>]
12515
12893
  # @see BasketofKittens::cache_clusters
12516
12894
  attr_accessor :cache_clusters
12517
12895
 
12518
12896
  # Cloud platform monitoring alarms
12897
+ ##
12898
+ ## `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12899
+ ##
12900
+ ## `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12519
12901
  #
12520
12902
  # @return [Array<BasketofKittens::alarms>]
12521
12903
  # @see BasketofKittens::alarms
12522
12904
  attr_accessor :alarms
12523
12905
 
12524
12906
  # A stub for inline resource that generate SNS notifications in AWS. This should really be expanded.
12907
+ ##
12908
+ ## `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
12525
12909
  #
12526
12910
  # @return [Array<BasketofKittens::notifiers>]
12527
12911
  # @see BasketofKittens::notifiers
12528
12912
  attr_accessor :notifiers
12529
12913
 
12530
12914
  # Log events using a cloud provider's log service.
12915
+ ##
12916
+ ## `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
12917
+ ##
12918
+ ## `CloudFormation`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12531
12919
  #
12532
12920
  # @return [Array<BasketofKittens::logs>]
12533
12921
  # @see BasketofKittens::logs
12534
12922
  attr_accessor :logs
12535
12923
 
12536
12924
  # Create a storage pool.
12925
+ ##
12926
+ ## `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12537
12927
  #
12538
12928
  # @return [Array<BasketofKittens::storage_pools>]
12539
12929
  # @see BasketofKittens::storage_pools
12540
12930
  attr_accessor :storage_pools
12541
12931
 
12542
12932
  # Create a cloud function.
12933
+ ##
12934
+ ## `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
12543
12935
  #
12544
12936
  # @return [Array<BasketofKittens::functions>]
12545
12937
  # @see BasketofKittens::functions
12546
12938
  attr_accessor :functions
12547
12939
 
12548
12940
  # Create a cloud API endpoint, e.g. Amazon API Gateway
12941
+ ##
12942
+ ## `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
12549
12943
  #
12550
12944
  # @return [Array<BasketofKittens::endpoints>]
12551
12945
  # @see BasketofKittens::endpoints
12552
12946
  attr_accessor :endpoints
12553
12947
 
12554
12948
  # Create a cluster of container hosts.
12949
+ ##
12950
+ ## `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12951
+ ##
12952
+ ## `Google`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12555
12953
  #
12556
12954
  # @return [Array<BasketofKittens::container_clusters>]
12557
12955
  # @see BasketofKittens::container_clusters
12558
12956
  attr_accessor :container_clusters
12559
12957
 
12560
12958
  # Set up a cloud provider managed Elastic Search cluster.
12959
+ ##
12960
+ ## `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12561
12961
  #
12562
12962
  # @return [Array<BasketofKittens::search_domains>]
12563
12963
  # @see BasketofKittens::search_domains
12564
12964
  attr_accessor :search_domains
12565
12965
 
12566
12966
  # Set up a cloud provider queueing service.
12967
+ ##
12968
+ ## `AWS`: This implementation is considered **RELEASE** quality. It covers all major API features and has been tested with real-world applications.
12567
12969
  #
12568
12970
  # @return [Array<BasketofKittens::msg_queues>]
12569
12971
  # @see BasketofKittens::msg_queues
12570
12972
  attr_accessor :msg_queues
12571
12973
 
12572
- # Generate a cloud habitat (AWS account, Google Cloud project, Azure Directory, etc)
12573
- #
12574
- # @return [Array<BasketofKittens::habitats>]
12575
- # @see BasketofKittens::habitats
12576
- attr_accessor :habitats
12577
-
12578
- # Set up a cloud provider folder/OU for containing other account-level resources
12579
- #
12580
- # @return [Array<BasketofKittens::folders>]
12581
- # @see BasketofKittens::folders
12582
- attr_accessor :folders
12583
-
12584
12974
  # Set up a cloud provider user or machine account
12975
+ ##
12976
+ ## `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
12977
+ ##
12978
+ ## `Google`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12585
12979
  #
12586
12980
  # @return [Array<BasketofKittens::users>]
12587
12981
  # @see BasketofKittens::users
12588
12982
  attr_accessor :users
12589
12983
 
12590
12984
  # Set up a cloud provider group for containing accounts/groups
12985
+ ##
12986
+ ## `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
12987
+ ##
12988
+ ## `Google`: This implementation is **ALPHA** quality. It is experimental, may be missing significant functionality, and has not been widely tested.
12591
12989
  #
12592
12990
  # @return [Array<BasketofKittens::groups>]
12593
12991
  # @see BasketofKittens::groups
12594
12992
  attr_accessor :groups
12595
12993
 
12596
12994
  # Set up a cloud provider role for mapping permissions to other entities
12995
+ ##
12996
+ ## `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
12597
12997
  #
12598
12998
  # @return [Array<BasketofKittens::roles>]
12599
12999
  # @see BasketofKittens::roles
12600
13000
  attr_accessor :roles
12601
13001
 
12602
13002
  # A simple storage bucket, like Google Cloud Storage or Amazon S3.
13003
+ ##
13004
+ ## `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
13005
+ ##
13006
+ ## `Google`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
12603
13007
  #
12604
13008
  # @return [Array<BasketofKittens::buckets>]
12605
13009
  # @see BasketofKittens::buckets
12606
13010
  attr_accessor :buckets
12607
13011
 
12608
13012
  # A simple storage bucket, like Google Cloud Storage or Amazon S3.
13013
+ ##
13014
+ ## `AWS`: This implementation is **BETA** quality. It is substantially complete, but may be missing some functionality or have some features which are untested.
12609
13015
  #
12610
13016
  # @return [Array<BasketofKittens::nosqldbs>]
12611
13017
  # @see BasketofKittens::nosqldbs