pulumi-nomad 2.5.0a1743574125__py3-none-any.whl → 2.5.0a1744183236__py3-none-any.whl

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 (54) hide show
  1. pulumi_nomad/__init__.py +1 -0
  2. pulumi_nomad/_inputs.py +379 -378
  3. pulumi_nomad/acl_auth_method.py +85 -84
  4. pulumi_nomad/acl_binding_rule.py +71 -70
  5. pulumi_nomad/acl_policy.py +43 -42
  6. pulumi_nomad/acl_role.py +29 -28
  7. pulumi_nomad/acl_token.py +99 -98
  8. pulumi_nomad/config/__init__.py +1 -0
  9. pulumi_nomad/config/__init__.pyi +1 -0
  10. pulumi_nomad/config/outputs.py +7 -6
  11. pulumi_nomad/config/vars.py +1 -0
  12. pulumi_nomad/csi_volume.py +203 -202
  13. pulumi_nomad/csi_volume_registration.py +210 -209
  14. pulumi_nomad/external_volume.py +195 -194
  15. pulumi_nomad/get_acl_policies.py +7 -6
  16. pulumi_nomad/get_acl_policy.py +9 -8
  17. pulumi_nomad/get_acl_role.py +8 -7
  18. pulumi_nomad/get_acl_roles.py +7 -6
  19. pulumi_nomad/get_acl_token.py +15 -14
  20. pulumi_nomad/get_acl_tokens.py +7 -6
  21. pulumi_nomad/get_allocations.py +17 -16
  22. pulumi_nomad/get_datacenters.py +13 -12
  23. pulumi_nomad/get_deployments.py +3 -2
  24. pulumi_nomad/get_job.py +28 -27
  25. pulumi_nomad/get_job_parser.py +13 -12
  26. pulumi_nomad/get_jwks.py +3 -2
  27. pulumi_nomad/get_namespace.py +10 -9
  28. pulumi_nomad/get_namespaces.py +3 -2
  29. pulumi_nomad/get_node_pool.py +9 -8
  30. pulumi_nomad/get_node_pools.py +12 -11
  31. pulumi_nomad/get_plugin.py +24 -23
  32. pulumi_nomad/get_plugins.py +6 -5
  33. pulumi_nomad/get_regions.py +3 -2
  34. pulumi_nomad/get_scaling_policies.py +12 -11
  35. pulumi_nomad/get_scaling_policy.py +12 -11
  36. pulumi_nomad/get_scheduler_policy.py +5 -4
  37. pulumi_nomad/get_variable.py +13 -12
  38. pulumi_nomad/get_volumes.py +23 -22
  39. pulumi_nomad/job.py +221 -220
  40. pulumi_nomad/namespace.py +57 -56
  41. pulumi_nomad/node_pool.py +43 -42
  42. pulumi_nomad/outputs.py +452 -451
  43. pulumi_nomad/provider.py +111 -110
  44. pulumi_nomad/pulumi-plugin.json +1 -1
  45. pulumi_nomad/quote_specification.py +29 -28
  46. pulumi_nomad/scheduler_config.py +43 -42
  47. pulumi_nomad/sentinel_policy.py +71 -70
  48. pulumi_nomad/variable.py +43 -42
  49. pulumi_nomad/volume.py +209 -208
  50. {pulumi_nomad-2.5.0a1743574125.dist-info → pulumi_nomad-2.5.0a1744183236.dist-info}/METADATA +1 -1
  51. pulumi_nomad-2.5.0a1744183236.dist-info/RECORD +55 -0
  52. pulumi_nomad-2.5.0a1743574125.dist-info/RECORD +0 -55
  53. {pulumi_nomad-2.5.0a1743574125.dist-info → pulumi_nomad-2.5.0a1744183236.dist-info}/WHEEL +0 -0
  54. {pulumi_nomad-2.5.0a1743574125.dist-info → pulumi_nomad-2.5.0a1744183236.dist-info}/top_level.txt +0 -0
pulumi_nomad/outputs.py CHANGED
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -136,59 +137,59 @@ class AclAuthMethodConfig(dict):
136
137
  return super().get(key, default)
137
138
 
138
139
  def __init__(__self__, *,
139
- allowed_redirect_uris: Optional[Sequence[str]] = None,
140
- bound_audiences: Optional[Sequence[str]] = None,
141
- bound_issuers: Optional[Sequence[str]] = None,
142
- claim_mappings: Optional[Mapping[str, str]] = None,
143
- clock_skew_leeway: Optional[str] = None,
144
- discovery_ca_pems: Optional[Sequence[str]] = None,
145
- expiration_leeway: Optional[str] = None,
146
- jwks_ca_cert: Optional[str] = None,
147
- jwks_url: Optional[str] = None,
148
- jwt_validation_pub_keys: Optional[Sequence[str]] = None,
149
- list_claim_mappings: Optional[Mapping[str, str]] = None,
150
- not_before_leeway: Optional[str] = None,
151
- oidc_client_id: Optional[str] = None,
152
- oidc_client_secret: Optional[str] = None,
153
- oidc_disable_userinfo: Optional[bool] = None,
154
- oidc_discovery_url: Optional[str] = None,
155
- oidc_scopes: Optional[Sequence[str]] = None,
156
- signing_algs: Optional[Sequence[str]] = None):
157
- """
158
- :param Sequence[str] allowed_redirect_uris: `([]string: <optional>)` - A list of allowed values
140
+ allowed_redirect_uris: Optional[Sequence[builtins.str]] = None,
141
+ bound_audiences: Optional[Sequence[builtins.str]] = None,
142
+ bound_issuers: Optional[Sequence[builtins.str]] = None,
143
+ claim_mappings: Optional[Mapping[str, builtins.str]] = None,
144
+ clock_skew_leeway: Optional[builtins.str] = None,
145
+ discovery_ca_pems: Optional[Sequence[builtins.str]] = None,
146
+ expiration_leeway: Optional[builtins.str] = None,
147
+ jwks_ca_cert: Optional[builtins.str] = None,
148
+ jwks_url: Optional[builtins.str] = None,
149
+ jwt_validation_pub_keys: Optional[Sequence[builtins.str]] = None,
150
+ list_claim_mappings: Optional[Mapping[str, builtins.str]] = None,
151
+ not_before_leeway: Optional[builtins.str] = None,
152
+ oidc_client_id: Optional[builtins.str] = None,
153
+ oidc_client_secret: Optional[builtins.str] = None,
154
+ oidc_disable_userinfo: Optional[builtins.bool] = None,
155
+ oidc_discovery_url: Optional[builtins.str] = None,
156
+ oidc_scopes: Optional[Sequence[builtins.str]] = None,
157
+ signing_algs: Optional[Sequence[builtins.str]] = None):
158
+ """
159
+ :param Sequence[builtins.str] allowed_redirect_uris: `([]string: <optional>)` - A list of allowed values
159
160
  that can be used for the redirect URI.
160
- :param Sequence[str] bound_audiences: `([]string: <optional>)` - List of auth claims that are
161
+ :param Sequence[builtins.str] bound_audiences: `([]string: <optional>)` - List of auth claims that are
161
162
  valid for login.
162
- :param Sequence[str] bound_issuers: `([]string: <optional>)` - The value against which to match
163
+ :param Sequence[builtins.str] bound_issuers: `([]string: <optional>)` - The value against which to match
163
164
  the iss claim in a JWT.
164
- :param Mapping[str, str] claim_mappings: Mappings of claims (key) that will be copied to a metadata field (value).
165
- :param str clock_skew_leeway: `(string: <optional>)` - Duration of leeway when validating
165
+ :param Mapping[str, builtins.str] claim_mappings: Mappings of claims (key) that will be copied to a metadata field (value).
166
+ :param builtins.str clock_skew_leeway: `(string: <optional>)` - Duration of leeway when validating
166
167
  all claims in the form of a time duration such as "5m" or "1h".
167
- :param Sequence[str] discovery_ca_pems: `([]string: <optional>)` - PEM encoded CA certs for use
168
+ :param Sequence[builtins.str] discovery_ca_pems: `([]string: <optional>)` - PEM encoded CA certs for use
168
169
  by the TLS client used to talk with the OIDC Discovery URL.
169
- :param str expiration_leeway: `(string: <optional>)` - Duration of leeway when validating
170
+ :param builtins.str expiration_leeway: `(string: <optional>)` - Duration of leeway when validating
170
171
  expiration of a JWT in the form of a time duration such as "5m" or "1h".
171
- :param str jwks_ca_cert: `(string: <optional>)` - PEM encoded CA cert for use by the
172
+ :param builtins.str jwks_ca_cert: `(string: <optional>)` - PEM encoded CA cert for use by the
172
173
  TLS client used to talk with the JWKS server.
173
- :param str jwks_url: `(string: <optional>)` - JSON Web Key Sets url for authenticating
174
+ :param builtins.str jwks_url: `(string: <optional>)` - JSON Web Key Sets url for authenticating
174
175
  signatures.
175
- :param Sequence[str] jwt_validation_pub_keys: `([]string: <optional>)` - List of PEM-encoded
176
+ :param Sequence[builtins.str] jwt_validation_pub_keys: `([]string: <optional>)` - List of PEM-encoded
176
177
  public keys to use to authenticate signatures locally.
177
- :param Mapping[str, str] list_claim_mappings: Mappings of list claims (key) that will be copied to a metadata field (value).
178
- :param str not_before_leeway: `(string: <optional>)` - Duration of leeway when validating
178
+ :param Mapping[str, builtins.str] list_claim_mappings: Mappings of list claims (key) that will be copied to a metadata field (value).
179
+ :param builtins.str not_before_leeway: `(string: <optional>)` - Duration of leeway when validating
179
180
  not before values of a token in the form of a time duration such as "5m" or "1h".
180
- :param str oidc_client_id: `(string: <optional>)` - The OAuth Client ID configured
181
+ :param builtins.str oidc_client_id: `(string: <optional>)` - The OAuth Client ID configured
181
182
  with the OIDC provider.
182
- :param str oidc_client_secret: `(string: <optional>)` - The OAuth Client Secret
183
+ :param builtins.str oidc_client_secret: `(string: <optional>)` - The OAuth Client Secret
183
184
  configured with the OIDC provider.
184
- :param bool oidc_disable_userinfo: `(bool: false)` - When set to `true`, Nomad will
185
+ :param builtins.bool oidc_disable_userinfo: `(bool: false)` - When set to `true`, Nomad will
185
186
  not make a request to the identity provider to get OIDC `UserInfo`.
186
187
  You may wish to set this if your identity provider doesn't send any
187
188
  additional claims from the `UserInfo` endpoint.
188
- :param str oidc_discovery_url: `(string: <optional>)` - The OIDC Discovery URL,
189
+ :param builtins.str oidc_discovery_url: `(string: <optional>)` - The OIDC Discovery URL,
189
190
  without any .well-known component (base path).
190
- :param Sequence[str] oidc_scopes: `([]string: <optional>)` - List of OIDC scopes.
191
- :param Sequence[str] signing_algs: `([]string: <optional>)` - A list of supported signing
191
+ :param Sequence[builtins.str] oidc_scopes: `([]string: <optional>)` - List of OIDC scopes.
192
+ :param Sequence[builtins.str] signing_algs: `([]string: <optional>)` - A list of supported signing
192
193
  algorithms.
193
194
  """
194
195
  if allowed_redirect_uris is not None:
@@ -230,7 +231,7 @@ class AclAuthMethodConfig(dict):
230
231
 
231
232
  @property
232
233
  @pulumi.getter(name="allowedRedirectUris")
233
- def allowed_redirect_uris(self) -> Optional[Sequence[str]]:
234
+ def allowed_redirect_uris(self) -> Optional[Sequence[builtins.str]]:
234
235
  """
235
236
  `([]string: <optional>)` - A list of allowed values
236
237
  that can be used for the redirect URI.
@@ -239,7 +240,7 @@ class AclAuthMethodConfig(dict):
239
240
 
240
241
  @property
241
242
  @pulumi.getter(name="boundAudiences")
242
- def bound_audiences(self) -> Optional[Sequence[str]]:
243
+ def bound_audiences(self) -> Optional[Sequence[builtins.str]]:
243
244
  """
244
245
  `([]string: <optional>)` - List of auth claims that are
245
246
  valid for login.
@@ -248,7 +249,7 @@ class AclAuthMethodConfig(dict):
248
249
 
249
250
  @property
250
251
  @pulumi.getter(name="boundIssuers")
251
- def bound_issuers(self) -> Optional[Sequence[str]]:
252
+ def bound_issuers(self) -> Optional[Sequence[builtins.str]]:
252
253
  """
253
254
  `([]string: <optional>)` - The value against which to match
254
255
  the iss claim in a JWT.
@@ -257,7 +258,7 @@ class AclAuthMethodConfig(dict):
257
258
 
258
259
  @property
259
260
  @pulumi.getter(name="claimMappings")
260
- def claim_mappings(self) -> Optional[Mapping[str, str]]:
261
+ def claim_mappings(self) -> Optional[Mapping[str, builtins.str]]:
261
262
  """
262
263
  Mappings of claims (key) that will be copied to a metadata field (value).
263
264
  """
@@ -265,7 +266,7 @@ class AclAuthMethodConfig(dict):
265
266
 
266
267
  @property
267
268
  @pulumi.getter(name="clockSkewLeeway")
268
- def clock_skew_leeway(self) -> Optional[str]:
269
+ def clock_skew_leeway(self) -> Optional[builtins.str]:
269
270
  """
270
271
  `(string: <optional>)` - Duration of leeway when validating
271
272
  all claims in the form of a time duration such as "5m" or "1h".
@@ -274,7 +275,7 @@ class AclAuthMethodConfig(dict):
274
275
 
275
276
  @property
276
277
  @pulumi.getter(name="discoveryCaPems")
277
- def discovery_ca_pems(self) -> Optional[Sequence[str]]:
278
+ def discovery_ca_pems(self) -> Optional[Sequence[builtins.str]]:
278
279
  """
279
280
  `([]string: <optional>)` - PEM encoded CA certs for use
280
281
  by the TLS client used to talk with the OIDC Discovery URL.
@@ -283,7 +284,7 @@ class AclAuthMethodConfig(dict):
283
284
 
284
285
  @property
285
286
  @pulumi.getter(name="expirationLeeway")
286
- def expiration_leeway(self) -> Optional[str]:
287
+ def expiration_leeway(self) -> Optional[builtins.str]:
287
288
  """
288
289
  `(string: <optional>)` - Duration of leeway when validating
289
290
  expiration of a JWT in the form of a time duration such as "5m" or "1h".
@@ -292,7 +293,7 @@ class AclAuthMethodConfig(dict):
292
293
 
293
294
  @property
294
295
  @pulumi.getter(name="jwksCaCert")
295
- def jwks_ca_cert(self) -> Optional[str]:
296
+ def jwks_ca_cert(self) -> Optional[builtins.str]:
296
297
  """
297
298
  `(string: <optional>)` - PEM encoded CA cert for use by the
298
299
  TLS client used to talk with the JWKS server.
@@ -301,7 +302,7 @@ class AclAuthMethodConfig(dict):
301
302
 
302
303
  @property
303
304
  @pulumi.getter(name="jwksUrl")
304
- def jwks_url(self) -> Optional[str]:
305
+ def jwks_url(self) -> Optional[builtins.str]:
305
306
  """
306
307
  `(string: <optional>)` - JSON Web Key Sets url for authenticating
307
308
  signatures.
@@ -310,7 +311,7 @@ class AclAuthMethodConfig(dict):
310
311
 
311
312
  @property
312
313
  @pulumi.getter(name="jwtValidationPubKeys")
313
- def jwt_validation_pub_keys(self) -> Optional[Sequence[str]]:
314
+ def jwt_validation_pub_keys(self) -> Optional[Sequence[builtins.str]]:
314
315
  """
315
316
  `([]string: <optional>)` - List of PEM-encoded
316
317
  public keys to use to authenticate signatures locally.
@@ -319,7 +320,7 @@ class AclAuthMethodConfig(dict):
319
320
 
320
321
  @property
321
322
  @pulumi.getter(name="listClaimMappings")
322
- def list_claim_mappings(self) -> Optional[Mapping[str, str]]:
323
+ def list_claim_mappings(self) -> Optional[Mapping[str, builtins.str]]:
323
324
  """
324
325
  Mappings of list claims (key) that will be copied to a metadata field (value).
325
326
  """
@@ -327,7 +328,7 @@ class AclAuthMethodConfig(dict):
327
328
 
328
329
  @property
329
330
  @pulumi.getter(name="notBeforeLeeway")
330
- def not_before_leeway(self) -> Optional[str]:
331
+ def not_before_leeway(self) -> Optional[builtins.str]:
331
332
  """
332
333
  `(string: <optional>)` - Duration of leeway when validating
333
334
  not before values of a token in the form of a time duration such as "5m" or "1h".
@@ -336,7 +337,7 @@ class AclAuthMethodConfig(dict):
336
337
 
337
338
  @property
338
339
  @pulumi.getter(name="oidcClientId")
339
- def oidc_client_id(self) -> Optional[str]:
340
+ def oidc_client_id(self) -> Optional[builtins.str]:
340
341
  """
341
342
  `(string: <optional>)` - The OAuth Client ID configured
342
343
  with the OIDC provider.
@@ -345,7 +346,7 @@ class AclAuthMethodConfig(dict):
345
346
 
346
347
  @property
347
348
  @pulumi.getter(name="oidcClientSecret")
348
- def oidc_client_secret(self) -> Optional[str]:
349
+ def oidc_client_secret(self) -> Optional[builtins.str]:
349
350
  """
350
351
  `(string: <optional>)` - The OAuth Client Secret
351
352
  configured with the OIDC provider.
@@ -354,7 +355,7 @@ class AclAuthMethodConfig(dict):
354
355
 
355
356
  @property
356
357
  @pulumi.getter(name="oidcDisableUserinfo")
357
- def oidc_disable_userinfo(self) -> Optional[bool]:
358
+ def oidc_disable_userinfo(self) -> Optional[builtins.bool]:
358
359
  """
359
360
  `(bool: false)` - When set to `true`, Nomad will
360
361
  not make a request to the identity provider to get OIDC `UserInfo`.
@@ -365,7 +366,7 @@ class AclAuthMethodConfig(dict):
365
366
 
366
367
  @property
367
368
  @pulumi.getter(name="oidcDiscoveryUrl")
368
- def oidc_discovery_url(self) -> Optional[str]:
369
+ def oidc_discovery_url(self) -> Optional[builtins.str]:
369
370
  """
370
371
  `(string: <optional>)` - The OIDC Discovery URL,
371
372
  without any .well-known component (base path).
@@ -374,7 +375,7 @@ class AclAuthMethodConfig(dict):
374
375
 
375
376
  @property
376
377
  @pulumi.getter(name="oidcScopes")
377
- def oidc_scopes(self) -> Optional[Sequence[str]]:
378
+ def oidc_scopes(self) -> Optional[Sequence[builtins.str]]:
378
379
  """
379
380
  `([]string: <optional>)` - List of OIDC scopes.
380
381
  """
@@ -382,7 +383,7 @@ class AclAuthMethodConfig(dict):
382
383
 
383
384
  @property
384
385
  @pulumi.getter(name="signingAlgs")
385
- def signing_algs(self) -> Optional[Sequence[str]]:
386
+ def signing_algs(self) -> Optional[Sequence[builtins.str]]:
386
387
  """
387
388
  `([]string: <optional>)` - A list of supported signing
388
389
  algorithms.
@@ -410,15 +411,15 @@ class AclPolicyJobAcl(dict):
410
411
  return super().get(key, default)
411
412
 
412
413
  def __init__(__self__, *,
413
- job_id: str,
414
- group: Optional[str] = None,
415
- namespace: Optional[str] = None,
416
- task: Optional[str] = None):
414
+ job_id: builtins.str,
415
+ group: Optional[builtins.str] = None,
416
+ namespace: Optional[builtins.str] = None,
417
+ task: Optional[builtins.str] = None):
417
418
  """
418
- :param str job_id: Job
419
- :param str group: Group
420
- :param str namespace: Namespace
421
- :param str task: Task
419
+ :param builtins.str job_id: Job
420
+ :param builtins.str group: Group
421
+ :param builtins.str namespace: Namespace
422
+ :param builtins.str task: Task
422
423
  """
423
424
  pulumi.set(__self__, "job_id", job_id)
424
425
  if group is not None:
@@ -430,7 +431,7 @@ class AclPolicyJobAcl(dict):
430
431
 
431
432
  @property
432
433
  @pulumi.getter(name="jobId")
433
- def job_id(self) -> str:
434
+ def job_id(self) -> builtins.str:
434
435
  """
435
436
  Job
436
437
  """
@@ -438,7 +439,7 @@ class AclPolicyJobAcl(dict):
438
439
 
439
440
  @property
440
441
  @pulumi.getter
441
- def group(self) -> Optional[str]:
442
+ def group(self) -> Optional[builtins.str]:
442
443
  """
443
444
  Group
444
445
  """
@@ -446,7 +447,7 @@ class AclPolicyJobAcl(dict):
446
447
 
447
448
  @property
448
449
  @pulumi.getter
449
- def namespace(self) -> Optional[str]:
450
+ def namespace(self) -> Optional[builtins.str]:
450
451
  """
451
452
  Namespace
452
453
  """
@@ -454,7 +455,7 @@ class AclPolicyJobAcl(dict):
454
455
 
455
456
  @property
456
457
  @pulumi.getter
457
- def task(self) -> Optional[str]:
458
+ def task(self) -> Optional[builtins.str]:
458
459
  """
459
460
  Task
460
461
  """
@@ -464,15 +465,15 @@ class AclPolicyJobAcl(dict):
464
465
  @pulumi.output_type
465
466
  class AclRolePolicy(dict):
466
467
  def __init__(__self__, *,
467
- name: str):
468
+ name: builtins.str):
468
469
  """
469
- :param str name: `(string: <required>)` - A human-friendly name for this ACL Role.
470
+ :param builtins.str name: `(string: <required>)` - A human-friendly name for this ACL Role.
470
471
  """
471
472
  pulumi.set(__self__, "name", name)
472
473
 
473
474
  @property
474
475
  @pulumi.getter
475
- def name(self) -> str:
476
+ def name(self) -> builtins.str:
476
477
  """
477
478
  `(string: <required>)` - A human-friendly name for this ACL Role.
478
479
  """
@@ -482,11 +483,11 @@ class AclRolePolicy(dict):
482
483
  @pulumi.output_type
483
484
  class AclTokenRole(dict):
484
485
  def __init__(__self__, *,
485
- id: str,
486
- name: Optional[str] = None):
486
+ id: builtins.str,
487
+ name: Optional[builtins.str] = None):
487
488
  """
488
- :param str id: The ID of the ACL role to link.
489
- :param str name: `(string: "")` - A human-friendly name for this token.
489
+ :param builtins.str id: The ID of the ACL role to link.
490
+ :param builtins.str name: `(string: "")` - A human-friendly name for this token.
490
491
  """
491
492
  pulumi.set(__self__, "id", id)
492
493
  if name is not None:
@@ -494,7 +495,7 @@ class AclTokenRole(dict):
494
495
 
495
496
  @property
496
497
  @pulumi.getter
497
- def id(self) -> str:
498
+ def id(self) -> builtins.str:
498
499
  """
499
500
  The ID of the ACL role to link.
500
501
  """
@@ -502,7 +503,7 @@ class AclTokenRole(dict):
502
503
 
503
504
  @property
504
505
  @pulumi.getter
505
- def name(self) -> Optional[str]:
506
+ def name(self) -> Optional[builtins.str]:
506
507
  """
507
508
  `(string: "")` - A human-friendly name for this token.
508
509
  """
@@ -531,16 +532,16 @@ class CsiVolumeCapability(dict):
531
532
  return super().get(key, default)
532
533
 
533
534
  def __init__(__self__, *,
534
- access_mode: str,
535
- attachment_mode: str):
535
+ access_mode: builtins.str,
536
+ attachment_mode: builtins.str):
536
537
  """
537
- :param str access_mode: `(string: <required>)` - Defines whether a volume should be available concurrently. Possible values are:
538
+ :param builtins.str access_mode: `(string: <required>)` - Defines whether a volume should be available concurrently. Possible values are:
538
539
  - `single-node-reader-only`
539
540
  - `single-node-writer`
540
541
  - `multi-node-reader-only`
541
542
  - `multi-node-single-writer`
542
543
  - `multi-node-multi-writer`
543
- :param str attachment_mode: `(string: <required>)` - The storage API that will be used by the volume. Possible values are:
544
+ :param builtins.str attachment_mode: `(string: <required>)` - The storage API that will be used by the volume. Possible values are:
544
545
  - `block-device`
545
546
  - `file-system`
546
547
  """
@@ -549,7 +550,7 @@ class CsiVolumeCapability(dict):
549
550
 
550
551
  @property
551
552
  @pulumi.getter(name="accessMode")
552
- def access_mode(self) -> str:
553
+ def access_mode(self) -> builtins.str:
553
554
  """
554
555
  `(string: <required>)` - Defines whether a volume should be available concurrently. Possible values are:
555
556
  - `single-node-reader-only`
@@ -562,7 +563,7 @@ class CsiVolumeCapability(dict):
562
563
 
563
564
  @property
564
565
  @pulumi.getter(name="attachmentMode")
565
- def attachment_mode(self) -> str:
566
+ def attachment_mode(self) -> builtins.str:
566
567
  """
567
568
  `(string: <required>)` - The storage API that will be used by the volume. Possible values are:
568
569
  - `block-device`
@@ -593,11 +594,11 @@ class CsiVolumeMountOptions(dict):
593
594
  return super().get(key, default)
594
595
 
595
596
  def __init__(__self__, *,
596
- fs_type: Optional[str] = None,
597
- mount_flags: Optional[Sequence[str]] = None):
597
+ fs_type: Optional[builtins.str] = None,
598
+ mount_flags: Optional[Sequence[builtins.str]] = None):
598
599
  """
599
- :param str fs_type: `(string: optional)` - The file system type.
600
- :param Sequence[str] mount_flags: `[]string: optional` - The flags passed to `mount`.
600
+ :param builtins.str fs_type: `(string: optional)` - The file system type.
601
+ :param Sequence[builtins.str] mount_flags: `[]string: optional` - The flags passed to `mount`.
601
602
  """
602
603
  if fs_type is not None:
603
604
  pulumi.set(__self__, "fs_type", fs_type)
@@ -606,7 +607,7 @@ class CsiVolumeMountOptions(dict):
606
607
 
607
608
  @property
608
609
  @pulumi.getter(name="fsType")
609
- def fs_type(self) -> Optional[str]:
610
+ def fs_type(self) -> Optional[builtins.str]:
610
611
  """
611
612
  `(string: optional)` - The file system type.
612
613
  """
@@ -614,7 +615,7 @@ class CsiVolumeMountOptions(dict):
614
615
 
615
616
  @property
616
617
  @pulumi.getter(name="mountFlags")
617
- def mount_flags(self) -> Optional[Sequence[str]]:
618
+ def mount_flags(self) -> Optional[Sequence[builtins.str]]:
618
619
  """
619
620
  `[]string: optional` - The flags passed to `mount`.
620
621
  """
@@ -643,16 +644,16 @@ class CsiVolumeRegistrationCapability(dict):
643
644
  return super().get(key, default)
644
645
 
645
646
  def __init__(__self__, *,
646
- access_mode: str,
647
- attachment_mode: str):
647
+ access_mode: builtins.str,
648
+ attachment_mode: builtins.str):
648
649
  """
649
- :param str access_mode: `(string: <required>)` - Defines whether a volume should be available concurrently. Possible values are:
650
+ :param builtins.str access_mode: `(string: <required>)` - Defines whether a volume should be available concurrently. Possible values are:
650
651
  - `single-node-reader-only`
651
652
  - `single-node-writer`
652
653
  - `multi-node-reader-only`
653
654
  - `multi-node-single-writer`
654
655
  - `multi-node-multi-writer`
655
- :param str attachment_mode: `(string: <required>)` - The storage API that will be used by the volume. Possible values are:
656
+ :param builtins.str attachment_mode: `(string: <required>)` - The storage API that will be used by the volume. Possible values are:
656
657
  - `block-device`
657
658
  - `file-system`
658
659
  """
@@ -661,7 +662,7 @@ class CsiVolumeRegistrationCapability(dict):
661
662
 
662
663
  @property
663
664
  @pulumi.getter(name="accessMode")
664
- def access_mode(self) -> str:
665
+ def access_mode(self) -> builtins.str:
665
666
  """
666
667
  `(string: <required>)` - Defines whether a volume should be available concurrently. Possible values are:
667
668
  - `single-node-reader-only`
@@ -674,7 +675,7 @@ class CsiVolumeRegistrationCapability(dict):
674
675
 
675
676
  @property
676
677
  @pulumi.getter(name="attachmentMode")
677
- def attachment_mode(self) -> str:
678
+ def attachment_mode(self) -> builtins.str:
678
679
  """
679
680
  `(string: <required>)` - The storage API that will be used by the volume. Possible values are:
680
681
  - `block-device`
@@ -705,11 +706,11 @@ class CsiVolumeRegistrationMountOptions(dict):
705
706
  return super().get(key, default)
706
707
 
707
708
  def __init__(__self__, *,
708
- fs_type: Optional[str] = None,
709
- mount_flags: Optional[Sequence[str]] = None):
709
+ fs_type: Optional[builtins.str] = None,
710
+ mount_flags: Optional[Sequence[builtins.str]] = None):
710
711
  """
711
- :param str fs_type: `(string: <optional>)` - The file system type.
712
- :param Sequence[str] mount_flags: `([]string: <optional>)` - The flags passed to `mount`.
712
+ :param builtins.str fs_type: `(string: <optional>)` - The file system type.
713
+ :param Sequence[builtins.str] mount_flags: `([]string: <optional>)` - The flags passed to `mount`.
713
714
  """
714
715
  if fs_type is not None:
715
716
  pulumi.set(__self__, "fs_type", fs_type)
@@ -718,7 +719,7 @@ class CsiVolumeRegistrationMountOptions(dict):
718
719
 
719
720
  @property
720
721
  @pulumi.getter(name="fsType")
721
- def fs_type(self) -> Optional[str]:
722
+ def fs_type(self) -> Optional[builtins.str]:
722
723
  """
723
724
  `(string: <optional>)` - The file system type.
724
725
  """
@@ -726,7 +727,7 @@ class CsiVolumeRegistrationMountOptions(dict):
726
727
 
727
728
  @property
728
729
  @pulumi.getter(name="mountFlags")
729
- def mount_flags(self) -> Optional[Sequence[str]]:
730
+ def mount_flags(self) -> Optional[Sequence[builtins.str]]:
730
731
  """
731
732
  `([]string: <optional>)` - The flags passed to `mount`.
732
733
  """
@@ -736,9 +737,9 @@ class CsiVolumeRegistrationMountOptions(dict):
736
737
  @pulumi.output_type
737
738
  class CsiVolumeRegistrationTopology(dict):
738
739
  def __init__(__self__, *,
739
- segments: Optional[Mapping[str, str]] = None):
740
+ segments: Optional[Mapping[str, builtins.str]] = None):
740
741
  """
741
- :param Mapping[str, str] segments: `(map[string]string)` - Define the attributes for the topology request.
742
+ :param Mapping[str, builtins.str] segments: `(map[string]string)` - Define the attributes for the topology request.
742
743
 
743
744
  In addition to the above arguments, the following attributes are exported and
744
745
  can be referenced:
@@ -748,7 +749,7 @@ class CsiVolumeRegistrationTopology(dict):
748
749
 
749
750
  @property
750
751
  @pulumi.getter
751
- def segments(self) -> Optional[Mapping[str, str]]:
752
+ def segments(self) -> Optional[Mapping[str, builtins.str]]:
752
753
  """
753
754
  `(map[string]string)` - Define the attributes for the topology request.
754
755
 
@@ -798,15 +799,15 @@ class CsiVolumeRegistrationTopologyRequestRequired(dict):
798
799
  @pulumi.output_type
799
800
  class CsiVolumeRegistrationTopologyRequestRequiredTopology(dict):
800
801
  def __init__(__self__, *,
801
- segments: Mapping[str, str]):
802
+ segments: Mapping[str, builtins.str]):
802
803
  """
803
- :param Mapping[str, str] segments: Define attributes for the topology request.
804
+ :param Mapping[str, builtins.str] segments: Define attributes for the topology request.
804
805
  """
805
806
  pulumi.set(__self__, "segments", segments)
806
807
 
807
808
  @property
808
809
  @pulumi.getter
809
- def segments(self) -> Mapping[str, str]:
810
+ def segments(self) -> Mapping[str, builtins.str]:
810
811
  """
811
812
  Define attributes for the topology request.
812
813
  """
@@ -816,9 +817,9 @@ class CsiVolumeRegistrationTopologyRequestRequiredTopology(dict):
816
817
  @pulumi.output_type
817
818
  class CsiVolumeTopology(dict):
818
819
  def __init__(__self__, *,
819
- segments: Optional[Mapping[str, str]] = None):
820
+ segments: Optional[Mapping[str, builtins.str]] = None):
820
821
  """
821
- :param Mapping[str, str] segments: `(map[string]string)` - Define the attributes for the topology request.
822
+ :param Mapping[str, builtins.str] segments: `(map[string]string)` - Define the attributes for the topology request.
822
823
 
823
824
  In addition to the above arguments, the following attributes are exported and
824
825
  can be referenced:
@@ -828,7 +829,7 @@ class CsiVolumeTopology(dict):
828
829
 
829
830
  @property
830
831
  @pulumi.getter
831
- def segments(self) -> Optional[Mapping[str, str]]:
832
+ def segments(self) -> Optional[Mapping[str, builtins.str]]:
832
833
  """
833
834
  `(map[string]string)` - Define the attributes for the topology request.
834
835
 
@@ -890,15 +891,15 @@ class CsiVolumeTopologyRequestPreferred(dict):
890
891
  @pulumi.output_type
891
892
  class CsiVolumeTopologyRequestPreferredTopology(dict):
892
893
  def __init__(__self__, *,
893
- segments: Mapping[str, str]):
894
+ segments: Mapping[str, builtins.str]):
894
895
  """
895
- :param Mapping[str, str] segments: Define the attributes for the topology request.
896
+ :param Mapping[str, builtins.str] segments: Define the attributes for the topology request.
896
897
  """
897
898
  pulumi.set(__self__, "segments", segments)
898
899
 
899
900
  @property
900
901
  @pulumi.getter
901
- def segments(self) -> Mapping[str, str]:
902
+ def segments(self) -> Mapping[str, builtins.str]:
902
903
  """
903
904
  Define the attributes for the topology request.
904
905
  """
@@ -926,15 +927,15 @@ class CsiVolumeTopologyRequestRequired(dict):
926
927
  @pulumi.output_type
927
928
  class CsiVolumeTopologyRequestRequiredTopology(dict):
928
929
  def __init__(__self__, *,
929
- segments: Mapping[str, str]):
930
+ segments: Mapping[str, builtins.str]):
930
931
  """
931
- :param Mapping[str, str] segments: Define the attributes for the topology request.
932
+ :param Mapping[str, builtins.str] segments: Define the attributes for the topology request.
932
933
  """
933
934
  pulumi.set(__self__, "segments", segments)
934
935
 
935
936
  @property
936
937
  @pulumi.getter
937
- def segments(self) -> Mapping[str, str]:
938
+ def segments(self) -> Mapping[str, builtins.str]:
938
939
  """
939
940
  Define the attributes for the topology request.
940
941
  """
@@ -963,16 +964,16 @@ class ExternalVolumeCapability(dict):
963
964
  return super().get(key, default)
964
965
 
965
966
  def __init__(__self__, *,
966
- access_mode: str,
967
- attachment_mode: str):
967
+ access_mode: builtins.str,
968
+ attachment_mode: builtins.str):
968
969
  """
969
- :param str access_mode: `(string: <required>)` - Defines whether a volume should be available concurrently. Possible values are:
970
+ :param builtins.str access_mode: `(string: <required>)` - Defines whether a volume should be available concurrently. Possible values are:
970
971
  - `single-node-reader-only`
971
972
  - `single-node-writer`
972
973
  - `multi-node-reader-only`
973
974
  - `multi-node-single-writer`
974
975
  - `multi-node-multi-writer`
975
- :param str attachment_mode: `(string: <required>)` - The storage API that will be used by the volume. Possible values are:
976
+ :param builtins.str attachment_mode: `(string: <required>)` - The storage API that will be used by the volume. Possible values are:
976
977
  - `block-device`
977
978
  - `file-system`
978
979
  """
@@ -981,7 +982,7 @@ class ExternalVolumeCapability(dict):
981
982
 
982
983
  @property
983
984
  @pulumi.getter(name="accessMode")
984
- def access_mode(self) -> str:
985
+ def access_mode(self) -> builtins.str:
985
986
  """
986
987
  `(string: <required>)` - Defines whether a volume should be available concurrently. Possible values are:
987
988
  - `single-node-reader-only`
@@ -994,7 +995,7 @@ class ExternalVolumeCapability(dict):
994
995
 
995
996
  @property
996
997
  @pulumi.getter(name="attachmentMode")
997
- def attachment_mode(self) -> str:
998
+ def attachment_mode(self) -> builtins.str:
998
999
  """
999
1000
  `(string: <required>)` - The storage API that will be used by the volume. Possible values are:
1000
1001
  - `block-device`
@@ -1025,11 +1026,11 @@ class ExternalVolumeMountOptions(dict):
1025
1026
  return super().get(key, default)
1026
1027
 
1027
1028
  def __init__(__self__, *,
1028
- fs_type: Optional[str] = None,
1029
- mount_flags: Optional[Sequence[str]] = None):
1029
+ fs_type: Optional[builtins.str] = None,
1030
+ mount_flags: Optional[Sequence[builtins.str]] = None):
1030
1031
  """
1031
- :param str fs_type: `(string: optional)` - The file system type.
1032
- :param Sequence[str] mount_flags: `[]string: optional` - The flags passed to `mount`.
1032
+ :param builtins.str fs_type: `(string: optional)` - The file system type.
1033
+ :param Sequence[builtins.str] mount_flags: `[]string: optional` - The flags passed to `mount`.
1033
1034
  """
1034
1035
  if fs_type is not None:
1035
1036
  pulumi.set(__self__, "fs_type", fs_type)
@@ -1038,7 +1039,7 @@ class ExternalVolumeMountOptions(dict):
1038
1039
 
1039
1040
  @property
1040
1041
  @pulumi.getter(name="fsType")
1041
- def fs_type(self) -> Optional[str]:
1042
+ def fs_type(self) -> Optional[builtins.str]:
1042
1043
  """
1043
1044
  `(string: optional)` - The file system type.
1044
1045
  """
@@ -1046,7 +1047,7 @@ class ExternalVolumeMountOptions(dict):
1046
1047
 
1047
1048
  @property
1048
1049
  @pulumi.getter(name="mountFlags")
1049
- def mount_flags(self) -> Optional[Sequence[str]]:
1050
+ def mount_flags(self) -> Optional[Sequence[builtins.str]]:
1050
1051
  """
1051
1052
  `[]string: optional` - The flags passed to `mount`.
1052
1053
  """
@@ -1056,9 +1057,9 @@ class ExternalVolumeMountOptions(dict):
1056
1057
  @pulumi.output_type
1057
1058
  class ExternalVolumeTopology(dict):
1058
1059
  def __init__(__self__, *,
1059
- segments: Optional[Mapping[str, str]] = None):
1060
+ segments: Optional[Mapping[str, builtins.str]] = None):
1060
1061
  """
1061
- :param Mapping[str, str] segments: `(map[string]string)` - Define the attributes for the topology request.
1062
+ :param Mapping[str, builtins.str] segments: `(map[string]string)` - Define the attributes for the topology request.
1062
1063
 
1063
1064
  In addition to the above arguments, the following attributes are exported and
1064
1065
  can be referenced:
@@ -1068,7 +1069,7 @@ class ExternalVolumeTopology(dict):
1068
1069
 
1069
1070
  @property
1070
1071
  @pulumi.getter
1071
- def segments(self) -> Optional[Mapping[str, str]]:
1072
+ def segments(self) -> Optional[Mapping[str, builtins.str]]:
1072
1073
  """
1073
1074
  `(map[string]string)` - Define the attributes for the topology request.
1074
1075
 
@@ -1130,15 +1131,15 @@ class ExternalVolumeTopologyRequestPreferred(dict):
1130
1131
  @pulumi.output_type
1131
1132
  class ExternalVolumeTopologyRequestPreferredTopology(dict):
1132
1133
  def __init__(__self__, *,
1133
- segments: Mapping[str, str]):
1134
+ segments: Mapping[str, builtins.str]):
1134
1135
  """
1135
- :param Mapping[str, str] segments: Define the attributes for the topology request.
1136
+ :param Mapping[str, builtins.str] segments: Define the attributes for the topology request.
1136
1137
  """
1137
1138
  pulumi.set(__self__, "segments", segments)
1138
1139
 
1139
1140
  @property
1140
1141
  @pulumi.getter
1141
- def segments(self) -> Mapping[str, str]:
1142
+ def segments(self) -> Mapping[str, builtins.str]:
1142
1143
  """
1143
1144
  Define the attributes for the topology request.
1144
1145
  """
@@ -1166,15 +1167,15 @@ class ExternalVolumeTopologyRequestRequired(dict):
1166
1167
  @pulumi.output_type
1167
1168
  class ExternalVolumeTopologyRequestRequiredTopology(dict):
1168
1169
  def __init__(__self__, *,
1169
- segments: Mapping[str, str]):
1170
+ segments: Mapping[str, builtins.str]):
1170
1171
  """
1171
- :param Mapping[str, str] segments: Define the attributes for the topology request.
1172
+ :param Mapping[str, builtins.str] segments: Define the attributes for the topology request.
1172
1173
  """
1173
1174
  pulumi.set(__self__, "segments", segments)
1174
1175
 
1175
1176
  @property
1176
1177
  @pulumi.getter
1177
- def segments(self) -> Mapping[str, str]:
1178
+ def segments(self) -> Mapping[str, builtins.str]:
1178
1179
  """
1179
1180
  Define the attributes for the topology request.
1180
1181
  """
@@ -1201,12 +1202,12 @@ class JobHcl2(dict):
1201
1202
  return super().get(key, default)
1202
1203
 
1203
1204
  def __init__(__self__, *,
1204
- allow_fs: Optional[bool] = None,
1205
- vars: Optional[Mapping[str, str]] = None):
1205
+ allow_fs: Optional[builtins.bool] = None,
1206
+ vars: Optional[Mapping[str, builtins.str]] = None):
1206
1207
  """
1207
- :param bool allow_fs: `(boolean: false)` - Set this to `true` to be able to use
1208
+ :param builtins.bool allow_fs: `(boolean: false)` - Set this to `true` to be able to use
1208
1209
  HCL2 filesystem functions
1209
- :param Mapping[str, str] vars: Additional variables to use when templating the job with HCL2
1210
+ :param Mapping[str, builtins.str] vars: Additional variables to use when templating the job with HCL2
1210
1211
  """
1211
1212
  if allow_fs is not None:
1212
1213
  pulumi.set(__self__, "allow_fs", allow_fs)
@@ -1215,7 +1216,7 @@ class JobHcl2(dict):
1215
1216
 
1216
1217
  @property
1217
1218
  @pulumi.getter(name="allowFs")
1218
- def allow_fs(self) -> Optional[bool]:
1219
+ def allow_fs(self) -> Optional[builtins.bool]:
1219
1220
  """
1220
1221
  `(boolean: false)` - Set this to `true` to be able to use
1221
1222
  HCL2 filesystem functions
@@ -1224,7 +1225,7 @@ class JobHcl2(dict):
1224
1225
 
1225
1226
  @property
1226
1227
  @pulumi.getter
1227
- def vars(self) -> Optional[Mapping[str, str]]:
1228
+ def vars(self) -> Optional[Mapping[str, builtins.str]]:
1228
1229
  """
1229
1230
  Additional variables to use when templating the job with HCL2
1230
1231
  """
@@ -1234,9 +1235,9 @@ class JobHcl2(dict):
1234
1235
  @pulumi.output_type
1235
1236
  class JobTaskGroup(dict):
1236
1237
  def __init__(__self__, *,
1237
- count: Optional[int] = None,
1238
- meta: Optional[Mapping[str, str]] = None,
1239
- name: Optional[str] = None,
1238
+ count: Optional[builtins.int] = None,
1239
+ meta: Optional[Mapping[str, builtins.str]] = None,
1240
+ name: Optional[builtins.str] = None,
1240
1241
  tasks: Optional[Sequence['outputs.JobTaskGroupTask']] = None,
1241
1242
  volumes: Optional[Sequence['outputs.JobTaskGroupVolume']] = None):
1242
1243
  if count is not None:
@@ -1252,17 +1253,17 @@ class JobTaskGroup(dict):
1252
1253
 
1253
1254
  @property
1254
1255
  @pulumi.getter
1255
- def count(self) -> Optional[int]:
1256
+ def count(self) -> Optional[builtins.int]:
1256
1257
  return pulumi.get(self, "count")
1257
1258
 
1258
1259
  @property
1259
1260
  @pulumi.getter
1260
- def meta(self) -> Optional[Mapping[str, str]]:
1261
+ def meta(self) -> Optional[Mapping[str, builtins.str]]:
1261
1262
  return pulumi.get(self, "meta")
1262
1263
 
1263
1264
  @property
1264
1265
  @pulumi.getter
1265
- def name(self) -> Optional[str]:
1266
+ def name(self) -> Optional[builtins.str]:
1266
1267
  return pulumi.get(self, "name")
1267
1268
 
1268
1269
  @property
@@ -1296,9 +1297,9 @@ class JobTaskGroupTask(dict):
1296
1297
  return super().get(key, default)
1297
1298
 
1298
1299
  def __init__(__self__, *,
1299
- driver: Optional[str] = None,
1300
- meta: Optional[Mapping[str, str]] = None,
1301
- name: Optional[str] = None,
1300
+ driver: Optional[builtins.str] = None,
1301
+ meta: Optional[Mapping[str, builtins.str]] = None,
1302
+ name: Optional[builtins.str] = None,
1302
1303
  volume_mounts: Optional[Sequence['outputs.JobTaskGroupTaskVolumeMount']] = None):
1303
1304
  if driver is not None:
1304
1305
  pulumi.set(__self__, "driver", driver)
@@ -1311,17 +1312,17 @@ class JobTaskGroupTask(dict):
1311
1312
 
1312
1313
  @property
1313
1314
  @pulumi.getter
1314
- def driver(self) -> Optional[str]:
1315
+ def driver(self) -> Optional[builtins.str]:
1315
1316
  return pulumi.get(self, "driver")
1316
1317
 
1317
1318
  @property
1318
1319
  @pulumi.getter
1319
- def meta(self) -> Optional[Mapping[str, str]]:
1320
+ def meta(self) -> Optional[Mapping[str, builtins.str]]:
1320
1321
  return pulumi.get(self, "meta")
1321
1322
 
1322
1323
  @property
1323
1324
  @pulumi.getter
1324
- def name(self) -> Optional[str]:
1325
+ def name(self) -> Optional[builtins.str]:
1325
1326
  return pulumi.get(self, "name")
1326
1327
 
1327
1328
  @property
@@ -1350,9 +1351,9 @@ class JobTaskGroupTaskVolumeMount(dict):
1350
1351
  return super().get(key, default)
1351
1352
 
1352
1353
  def __init__(__self__, *,
1353
- destination: Optional[str] = None,
1354
- read_only: Optional[bool] = None,
1355
- volume: Optional[str] = None):
1354
+ destination: Optional[builtins.str] = None,
1355
+ read_only: Optional[builtins.bool] = None,
1356
+ volume: Optional[builtins.str] = None):
1356
1357
  if destination is not None:
1357
1358
  pulumi.set(__self__, "destination", destination)
1358
1359
  if read_only is not None:
@@ -1362,17 +1363,17 @@ class JobTaskGroupTaskVolumeMount(dict):
1362
1363
 
1363
1364
  @property
1364
1365
  @pulumi.getter
1365
- def destination(self) -> Optional[str]:
1366
+ def destination(self) -> Optional[builtins.str]:
1366
1367
  return pulumi.get(self, "destination")
1367
1368
 
1368
1369
  @property
1369
1370
  @pulumi.getter(name="readOnly")
1370
- def read_only(self) -> Optional[bool]:
1371
+ def read_only(self) -> Optional[builtins.bool]:
1371
1372
  return pulumi.get(self, "read_only")
1372
1373
 
1373
1374
  @property
1374
1375
  @pulumi.getter
1375
- def volume(self) -> Optional[str]:
1376
+ def volume(self) -> Optional[builtins.str]:
1376
1377
  return pulumi.get(self, "volume")
1377
1378
 
1378
1379
 
@@ -1396,10 +1397,10 @@ class JobTaskGroupVolume(dict):
1396
1397
  return super().get(key, default)
1397
1398
 
1398
1399
  def __init__(__self__, *,
1399
- name: Optional[str] = None,
1400
- read_only: Optional[bool] = None,
1401
- source: Optional[str] = None,
1402
- type: Optional[str] = None):
1400
+ name: Optional[builtins.str] = None,
1401
+ read_only: Optional[builtins.bool] = None,
1402
+ source: Optional[builtins.str] = None,
1403
+ type: Optional[builtins.str] = None):
1403
1404
  if name is not None:
1404
1405
  pulumi.set(__self__, "name", name)
1405
1406
  if read_only is not None:
@@ -1411,22 +1412,22 @@ class JobTaskGroupVolume(dict):
1411
1412
 
1412
1413
  @property
1413
1414
  @pulumi.getter
1414
- def name(self) -> Optional[str]:
1415
+ def name(self) -> Optional[builtins.str]:
1415
1416
  return pulumi.get(self, "name")
1416
1417
 
1417
1418
  @property
1418
1419
  @pulumi.getter(name="readOnly")
1419
- def read_only(self) -> Optional[bool]:
1420
+ def read_only(self) -> Optional[builtins.bool]:
1420
1421
  return pulumi.get(self, "read_only")
1421
1422
 
1422
1423
  @property
1423
1424
  @pulumi.getter
1424
- def source(self) -> Optional[str]:
1425
+ def source(self) -> Optional[builtins.str]:
1425
1426
  return pulumi.get(self, "source")
1426
1427
 
1427
1428
  @property
1428
1429
  @pulumi.getter
1429
- def type(self) -> Optional[str]:
1430
+ def type(self) -> Optional[builtins.str]:
1430
1431
  return pulumi.get(self, "type")
1431
1432
 
1432
1433
 
@@ -1452,11 +1453,11 @@ class NamespaceCapabilities(dict):
1452
1453
  return super().get(key, default)
1453
1454
 
1454
1455
  def __init__(__self__, *,
1455
- disabled_task_drivers: Optional[Sequence[str]] = None,
1456
- enabled_task_drivers: Optional[Sequence[str]] = None):
1456
+ disabled_task_drivers: Optional[Sequence[builtins.str]] = None,
1457
+ enabled_task_drivers: Optional[Sequence[builtins.str]] = None):
1457
1458
  """
1458
- :param Sequence[str] disabled_task_drivers: `([]string: <optional>)` - Task drivers disabled for the namespace.
1459
- :param Sequence[str] enabled_task_drivers: `([]string: <optional>)` - Task drivers enabled for the namespace.
1459
+ :param Sequence[builtins.str] disabled_task_drivers: `([]string: <optional>)` - Task drivers disabled for the namespace.
1460
+ :param Sequence[builtins.str] enabled_task_drivers: `([]string: <optional>)` - Task drivers enabled for the namespace.
1460
1461
  """
1461
1462
  if disabled_task_drivers is not None:
1462
1463
  pulumi.set(__self__, "disabled_task_drivers", disabled_task_drivers)
@@ -1465,7 +1466,7 @@ class NamespaceCapabilities(dict):
1465
1466
 
1466
1467
  @property
1467
1468
  @pulumi.getter(name="disabledTaskDrivers")
1468
- def disabled_task_drivers(self) -> Optional[Sequence[str]]:
1469
+ def disabled_task_drivers(self) -> Optional[Sequence[builtins.str]]:
1469
1470
  """
1470
1471
  `([]string: <optional>)` - Task drivers disabled for the namespace.
1471
1472
  """
@@ -1473,7 +1474,7 @@ class NamespaceCapabilities(dict):
1473
1474
 
1474
1475
  @property
1475
1476
  @pulumi.getter(name="enabledTaskDrivers")
1476
- def enabled_task_drivers(self) -> Optional[Sequence[str]]:
1477
+ def enabled_task_drivers(self) -> Optional[Sequence[builtins.str]]:
1477
1478
  """
1478
1479
  `([]string: <optional>)` - Task drivers enabled for the namespace.
1479
1480
  """
@@ -1483,13 +1484,13 @@ class NamespaceCapabilities(dict):
1483
1484
  @pulumi.output_type
1484
1485
  class NamespaceNodePoolConfig(dict):
1485
1486
  def __init__(__self__, *,
1486
- alloweds: Optional[Sequence[str]] = None,
1487
- default: Optional[str] = None,
1488
- denieds: Optional[Sequence[str]] = None):
1487
+ alloweds: Optional[Sequence[builtins.str]] = None,
1488
+ default: Optional[builtins.str] = None,
1489
+ denieds: Optional[Sequence[builtins.str]] = None):
1489
1490
  """
1490
- :param Sequence[str] alloweds: `([]string: <optional>)` - The list of node pools that are allowed to be used in this namespace.
1491
- :param str default: `(string: <optional>)` - The default node pool for jobs that don't define one.
1492
- :param Sequence[str] denieds: `([]string: <optional>)` - The list of node pools that are not allowed to be used in this namespace.
1491
+ :param Sequence[builtins.str] alloweds: `([]string: <optional>)` - The list of node pools that are allowed to be used in this namespace.
1492
+ :param builtins.str default: `(string: <optional>)` - The default node pool for jobs that don't define one.
1493
+ :param Sequence[builtins.str] denieds: `([]string: <optional>)` - The list of node pools that are not allowed to be used in this namespace.
1493
1494
  """
1494
1495
  if alloweds is not None:
1495
1496
  pulumi.set(__self__, "alloweds", alloweds)
@@ -1500,7 +1501,7 @@ class NamespaceNodePoolConfig(dict):
1500
1501
 
1501
1502
  @property
1502
1503
  @pulumi.getter
1503
- def alloweds(self) -> Optional[Sequence[str]]:
1504
+ def alloweds(self) -> Optional[Sequence[builtins.str]]:
1504
1505
  """
1505
1506
  `([]string: <optional>)` - The list of node pools that are allowed to be used in this namespace.
1506
1507
  """
@@ -1508,7 +1509,7 @@ class NamespaceNodePoolConfig(dict):
1508
1509
 
1509
1510
  @property
1510
1511
  @pulumi.getter
1511
- def default(self) -> Optional[str]:
1512
+ def default(self) -> Optional[builtins.str]:
1512
1513
  """
1513
1514
  `(string: <optional>)` - The default node pool for jobs that don't define one.
1514
1515
  """
@@ -1516,7 +1517,7 @@ class NamespaceNodePoolConfig(dict):
1516
1517
 
1517
1518
  @property
1518
1519
  @pulumi.getter
1519
- def denieds(self) -> Optional[Sequence[str]]:
1520
+ def denieds(self) -> Optional[Sequence[builtins.str]]:
1520
1521
  """
1521
1522
  `([]string: <optional>)` - The list of node pools that are not allowed to be used in this namespace.
1522
1523
  """
@@ -1545,10 +1546,10 @@ class NodePoolSchedulerConfig(dict):
1545
1546
  return super().get(key, default)
1546
1547
 
1547
1548
  def __init__(__self__, *,
1548
- memory_oversubscription: Optional[str] = None,
1549
- scheduler_algorithm: Optional[str] = None):
1549
+ memory_oversubscription: Optional[builtins.str] = None,
1550
+ scheduler_algorithm: Optional[builtins.str] = None):
1550
1551
  """
1551
- :param str memory_oversubscription: `(string)` - Whether or not memory
1552
+ :param builtins.str memory_oversubscription: `(string)` - Whether or not memory
1552
1553
  oversubscription is enabled in the node pool. Possible values are
1553
1554
  `"enabled"` or `"disabled"`. If not defined the global cluster
1554
1555
  configuration is used.
@@ -1556,7 +1557,7 @@ class NodePoolSchedulerConfig(dict):
1556
1557
  > This option differs from Nomad, where it's represented as a boolean, to
1557
1558
  allow distinguishing between memory oversubscription being disabled in the
1558
1559
  node pool and this property not being set.
1559
- :param str scheduler_algorithm: `(string)` - The scheduler algorithm used in the node
1560
+ :param builtins.str scheduler_algorithm: `(string)` - The scheduler algorithm used in the node
1560
1561
  pool. Possible values are `binpack` or `spread`. If not defined the global
1561
1562
  cluster configuration is used.
1562
1563
  """
@@ -1567,7 +1568,7 @@ class NodePoolSchedulerConfig(dict):
1567
1568
 
1568
1569
  @property
1569
1570
  @pulumi.getter(name="memoryOversubscription")
1570
- def memory_oversubscription(self) -> Optional[str]:
1571
+ def memory_oversubscription(self) -> Optional[builtins.str]:
1571
1572
  """
1572
1573
  `(string)` - Whether or not memory
1573
1574
  oversubscription is enabled in the node pool. Possible values are
@@ -1582,7 +1583,7 @@ class NodePoolSchedulerConfig(dict):
1582
1583
 
1583
1584
  @property
1584
1585
  @pulumi.getter(name="schedulerAlgorithm")
1585
- def scheduler_algorithm(self) -> Optional[str]:
1586
+ def scheduler_algorithm(self) -> Optional[builtins.str]:
1586
1587
  """
1587
1588
  `(string)` - The scheduler algorithm used in the node
1588
1589
  pool. Possible values are `binpack` or `spread`. If not defined the global
@@ -1611,10 +1612,10 @@ class QuoteSpecificationLimit(dict):
1611
1612
  return super().get(key, default)
1612
1613
 
1613
1614
  def __init__(__self__, *,
1614
- region: str,
1615
+ region: builtins.str,
1615
1616
  region_limit: 'outputs.QuoteSpecificationLimitRegionLimit'):
1616
1617
  """
1617
- :param str region: `(string: <required>)` - The region these limits should apply to.
1618
+ :param builtins.str region: `(string: <required>)` - The region these limits should apply to.
1618
1619
  :param 'QuoteSpecificationLimitRegionLimitArgs' region_limit: `(block: <required>)` - The limits to enforce. This block
1619
1620
  may only be specified once in the `limits` block. Its structure is
1620
1621
  documented below.
@@ -1624,7 +1625,7 @@ class QuoteSpecificationLimit(dict):
1624
1625
 
1625
1626
  @property
1626
1627
  @pulumi.getter
1627
- def region(self) -> str:
1628
+ def region(self) -> builtins.str:
1628
1629
  """
1629
1630
  `(string: <required>)` - The region these limits should apply to.
1630
1631
  """
@@ -1661,12 +1662,12 @@ class QuoteSpecificationLimitRegionLimit(dict):
1661
1662
  return super().get(key, default)
1662
1663
 
1663
1664
  def __init__(__self__, *,
1664
- cpu: Optional[int] = None,
1665
- memory_mb: Optional[int] = None):
1665
+ cpu: Optional[builtins.int] = None,
1666
+ memory_mb: Optional[builtins.int] = None):
1666
1667
  """
1667
- :param int cpu: `(int: 0)` - The amount of CPU to limit allocations to. A value of zero
1668
+ :param builtins.int cpu: `(int: 0)` - The amount of CPU to limit allocations to. A value of zero
1668
1669
  is treated as unlimited, and a negative value is treated as fully disallowed.
1669
- :param int memory_mb: `(int: 0)` - The amount of memory (in megabytes) to limit
1670
+ :param builtins.int memory_mb: `(int: 0)` - The amount of memory (in megabytes) to limit
1670
1671
  allocations to. A value of zero is treated as unlimited, and a negative value
1671
1672
  is treated as fully disallowed.
1672
1673
  """
@@ -1677,7 +1678,7 @@ class QuoteSpecificationLimitRegionLimit(dict):
1677
1678
 
1678
1679
  @property
1679
1680
  @pulumi.getter
1680
- def cpu(self) -> Optional[int]:
1681
+ def cpu(self) -> Optional[builtins.int]:
1681
1682
  """
1682
1683
  `(int: 0)` - The amount of CPU to limit allocations to. A value of zero
1683
1684
  is treated as unlimited, and a negative value is treated as fully disallowed.
@@ -1686,7 +1687,7 @@ class QuoteSpecificationLimitRegionLimit(dict):
1686
1687
 
1687
1688
  @property
1688
1689
  @pulumi.getter(name="memoryMb")
1689
- def memory_mb(self) -> Optional[int]:
1690
+ def memory_mb(self) -> Optional[builtins.int]:
1690
1691
  """
1691
1692
  `(int: 0)` - The amount of memory (in megabytes) to limit
1692
1693
  allocations to. A value of zero is treated as unlimited, and a negative value
@@ -1717,16 +1718,16 @@ class VolumeCapability(dict):
1717
1718
  return super().get(key, default)
1718
1719
 
1719
1720
  def __init__(__self__, *,
1720
- access_mode: str,
1721
- attachment_mode: str):
1721
+ access_mode: builtins.str,
1722
+ attachment_mode: builtins.str):
1722
1723
  """
1723
- :param str access_mode: `(string: <required>)` - Defines whether a volume should be available concurrently. Possible values are:
1724
+ :param builtins.str access_mode: `(string: <required>)` - Defines whether a volume should be available concurrently. Possible values are:
1724
1725
  - `single-node-reader-only`
1725
1726
  - `single-node-writer`
1726
1727
  - `multi-node-reader-only`
1727
1728
  - `multi-node-single-writer`
1728
1729
  - `multi-node-multi-writer`
1729
- :param str attachment_mode: `(string: <required>)` - The storage API that will be used by the volume. Possible values are:
1730
+ :param builtins.str attachment_mode: `(string: <required>)` - The storage API that will be used by the volume. Possible values are:
1730
1731
  - `block-device`
1731
1732
  - `file-system`
1732
1733
  """
@@ -1735,7 +1736,7 @@ class VolumeCapability(dict):
1735
1736
 
1736
1737
  @property
1737
1738
  @pulumi.getter(name="accessMode")
1738
- def access_mode(self) -> str:
1739
+ def access_mode(self) -> builtins.str:
1739
1740
  """
1740
1741
  `(string: <required>)` - Defines whether a volume should be available concurrently. Possible values are:
1741
1742
  - `single-node-reader-only`
@@ -1748,7 +1749,7 @@ class VolumeCapability(dict):
1748
1749
 
1749
1750
  @property
1750
1751
  @pulumi.getter(name="attachmentMode")
1751
- def attachment_mode(self) -> str:
1752
+ def attachment_mode(self) -> builtins.str:
1752
1753
  """
1753
1754
  `(string: <required>)` - The storage API that will be used by the volume. Possible values are:
1754
1755
  - `block-device`
@@ -1779,11 +1780,11 @@ class VolumeMountOptions(dict):
1779
1780
  return super().get(key, default)
1780
1781
 
1781
1782
  def __init__(__self__, *,
1782
- fs_type: Optional[str] = None,
1783
- mount_flags: Optional[Sequence[str]] = None):
1783
+ fs_type: Optional[builtins.str] = None,
1784
+ mount_flags: Optional[Sequence[builtins.str]] = None):
1784
1785
  """
1785
- :param str fs_type: `(string: <optional>)` - The file system type.
1786
- :param Sequence[str] mount_flags: `([]string: <optional>)` - The flags passed to `mount`.
1786
+ :param builtins.str fs_type: `(string: <optional>)` - The file system type.
1787
+ :param Sequence[builtins.str] mount_flags: `([]string: <optional>)` - The flags passed to `mount`.
1787
1788
  """
1788
1789
  if fs_type is not None:
1789
1790
  pulumi.set(__self__, "fs_type", fs_type)
@@ -1792,7 +1793,7 @@ class VolumeMountOptions(dict):
1792
1793
 
1793
1794
  @property
1794
1795
  @pulumi.getter(name="fsType")
1795
- def fs_type(self) -> Optional[str]:
1796
+ def fs_type(self) -> Optional[builtins.str]:
1796
1797
  """
1797
1798
  `(string: <optional>)` - The file system type.
1798
1799
  """
@@ -1800,7 +1801,7 @@ class VolumeMountOptions(dict):
1800
1801
 
1801
1802
  @property
1802
1803
  @pulumi.getter(name="mountFlags")
1803
- def mount_flags(self) -> Optional[Sequence[str]]:
1804
+ def mount_flags(self) -> Optional[Sequence[builtins.str]]:
1804
1805
  """
1805
1806
  `([]string: <optional>)` - The flags passed to `mount`.
1806
1807
  """
@@ -1810,9 +1811,9 @@ class VolumeMountOptions(dict):
1810
1811
  @pulumi.output_type
1811
1812
  class VolumeTopology(dict):
1812
1813
  def __init__(__self__, *,
1813
- segments: Optional[Mapping[str, str]] = None):
1814
+ segments: Optional[Mapping[str, builtins.str]] = None):
1814
1815
  """
1815
- :param Mapping[str, str] segments: `(map[string]string)` - Define the attributes for the topology request.
1816
+ :param Mapping[str, builtins.str] segments: `(map[string]string)` - Define the attributes for the topology request.
1816
1817
 
1817
1818
  In addition to the above arguments, the following attributes are exported and
1818
1819
  can be referenced:
@@ -1822,7 +1823,7 @@ class VolumeTopology(dict):
1822
1823
 
1823
1824
  @property
1824
1825
  @pulumi.getter
1825
- def segments(self) -> Optional[Mapping[str, str]]:
1826
+ def segments(self) -> Optional[Mapping[str, builtins.str]]:
1826
1827
  """
1827
1828
  `(map[string]string)` - Define the attributes for the topology request.
1828
1829
 
@@ -1872,15 +1873,15 @@ class VolumeTopologyRequestRequired(dict):
1872
1873
  @pulumi.output_type
1873
1874
  class VolumeTopologyRequestRequiredTopology(dict):
1874
1875
  def __init__(__self__, *,
1875
- segments: Mapping[str, str]):
1876
+ segments: Mapping[str, builtins.str]):
1876
1877
  """
1877
- :param Mapping[str, str] segments: Define attributes for the topology request.
1878
+ :param Mapping[str, builtins.str] segments: Define attributes for the topology request.
1878
1879
  """
1879
1880
  pulumi.set(__self__, "segments", segments)
1880
1881
 
1881
1882
  @property
1882
1883
  @pulumi.getter
1883
- def segments(self) -> Mapping[str, str]:
1884
+ def segments(self) -> Mapping[str, builtins.str]:
1884
1885
  """
1885
1886
  Define attributes for the topology request.
1886
1887
  """
@@ -1890,18 +1891,18 @@ class VolumeTopologyRequestRequiredTopology(dict):
1890
1891
  @pulumi.output_type
1891
1892
  class GetAclPoliciesPolicyResult(dict):
1892
1893
  def __init__(__self__, *,
1893
- description: str,
1894
- name: str):
1894
+ description: builtins.str,
1895
+ name: builtins.str):
1895
1896
  """
1896
- :param str description: `(string)` - the description of the ACL Policy.
1897
- :param str name: `(string)` - the name of the ACL Policy.
1897
+ :param builtins.str description: `(string)` - the description of the ACL Policy.
1898
+ :param builtins.str name: `(string)` - the name of the ACL Policy.
1898
1899
  """
1899
1900
  pulumi.set(__self__, "description", description)
1900
1901
  pulumi.set(__self__, "name", name)
1901
1902
 
1902
1903
  @property
1903
1904
  @pulumi.getter
1904
- def description(self) -> str:
1905
+ def description(self) -> builtins.str:
1905
1906
  """
1906
1907
  `(string)` - the description of the ACL Policy.
1907
1908
  """
@@ -1909,7 +1910,7 @@ class GetAclPoliciesPolicyResult(dict):
1909
1910
 
1910
1911
  @property
1911
1912
  @pulumi.getter
1912
- def name(self) -> str:
1913
+ def name(self) -> builtins.str:
1913
1914
  """
1914
1915
  `(string)` - the name of the ACL Policy.
1915
1916
  """
@@ -1919,15 +1920,15 @@ class GetAclPoliciesPolicyResult(dict):
1919
1920
  @pulumi.output_type
1920
1921
  class GetAclRolePolicyResult(dict):
1921
1922
  def __init__(__self__, *,
1922
- name: str):
1923
+ name: builtins.str):
1923
1924
  """
1924
- :param str name: `(string)` - Unique name of the ACL role.
1925
+ :param builtins.str name: `(string)` - Unique name of the ACL role.
1925
1926
  """
1926
1927
  pulumi.set(__self__, "name", name)
1927
1928
 
1928
1929
  @property
1929
1930
  @pulumi.getter
1930
- def name(self) -> str:
1931
+ def name(self) -> builtins.str:
1931
1932
  """
1932
1933
  `(string)` - Unique name of the ACL role.
1933
1934
  """
@@ -1937,14 +1938,14 @@ class GetAclRolePolicyResult(dict):
1937
1938
  @pulumi.output_type
1938
1939
  class GetAclRolesAclRoleResult(dict):
1939
1940
  def __init__(__self__, *,
1940
- description: str,
1941
- id: str,
1942
- name: str,
1941
+ description: builtins.str,
1942
+ id: builtins.str,
1943
+ name: builtins.str,
1943
1944
  policies: Sequence['outputs.GetAclRolesAclRolePolicyResult']):
1944
1945
  """
1945
- :param str description: `(string)` - The description of the ACL Role.
1946
- :param str id: `(string)` - The ACL Role unique identifier.
1947
- :param str name: `(string)` - Unique name of the ACL role.
1946
+ :param builtins.str description: `(string)` - The description of the ACL Role.
1947
+ :param builtins.str id: `(string)` - The ACL Role unique identifier.
1948
+ :param builtins.str name: `(string)` - Unique name of the ACL role.
1948
1949
  :param Sequence['GetAclRolesAclRolePolicyArgs'] policies: `(set)` - The policies applied to the role.
1949
1950
  """
1950
1951
  pulumi.set(__self__, "description", description)
@@ -1954,7 +1955,7 @@ class GetAclRolesAclRoleResult(dict):
1954
1955
 
1955
1956
  @property
1956
1957
  @pulumi.getter
1957
- def description(self) -> str:
1958
+ def description(self) -> builtins.str:
1958
1959
  """
1959
1960
  `(string)` - The description of the ACL Role.
1960
1961
  """
@@ -1962,7 +1963,7 @@ class GetAclRolesAclRoleResult(dict):
1962
1963
 
1963
1964
  @property
1964
1965
  @pulumi.getter
1965
- def id(self) -> str:
1966
+ def id(self) -> builtins.str:
1966
1967
  """
1967
1968
  `(string)` - The ACL Role unique identifier.
1968
1969
  """
@@ -1970,7 +1971,7 @@ class GetAclRolesAclRoleResult(dict):
1970
1971
 
1971
1972
  @property
1972
1973
  @pulumi.getter
1973
- def name(self) -> str:
1974
+ def name(self) -> builtins.str:
1974
1975
  """
1975
1976
  `(string)` - Unique name of the ACL role.
1976
1977
  """
@@ -1988,15 +1989,15 @@ class GetAclRolesAclRoleResult(dict):
1988
1989
  @pulumi.output_type
1989
1990
  class GetAclRolesAclRolePolicyResult(dict):
1990
1991
  def __init__(__self__, *,
1991
- name: str):
1992
+ name: builtins.str):
1992
1993
  """
1993
- :param str name: `(string)` - Unique name of the ACL role.
1994
+ :param builtins.str name: `(string)` - Unique name of the ACL role.
1994
1995
  """
1995
1996
  pulumi.set(__self__, "name", name)
1996
1997
 
1997
1998
  @property
1998
1999
  @pulumi.getter
1999
- def name(self) -> str:
2000
+ def name(self) -> builtins.str:
2000
2001
  """
2001
2002
  `(string)` - Unique name of the ACL role.
2002
2003
  """
@@ -2006,18 +2007,18 @@ class GetAclRolesAclRolePolicyResult(dict):
2006
2007
  @pulumi.output_type
2007
2008
  class GetAclTokenRoleResult(dict):
2008
2009
  def __init__(__self__, *,
2009
- id: str,
2010
- name: str):
2010
+ id: builtins.str,
2011
+ name: builtins.str):
2011
2012
  """
2012
- :param str id: The ID of the ACL role.
2013
- :param str name: `(string)` Non-sensitive identifier for this token.
2013
+ :param builtins.str id: The ID of the ACL role.
2014
+ :param builtins.str name: `(string)` Non-sensitive identifier for this token.
2014
2015
  """
2015
2016
  pulumi.set(__self__, "id", id)
2016
2017
  pulumi.set(__self__, "name", name)
2017
2018
 
2018
2019
  @property
2019
2020
  @pulumi.getter
2020
- def id(self) -> str:
2021
+ def id(self) -> builtins.str:
2021
2022
  """
2022
2023
  The ID of the ACL role.
2023
2024
  """
@@ -2025,7 +2026,7 @@ class GetAclTokenRoleResult(dict):
2025
2026
 
2026
2027
  @property
2027
2028
  @pulumi.getter
2028
- def name(self) -> str:
2029
+ def name(self) -> builtins.str:
2029
2030
  """
2030
2031
  `(string)` Non-sensitive identifier for this token.
2031
2032
  """
@@ -2035,25 +2036,25 @@ class GetAclTokenRoleResult(dict):
2035
2036
  @pulumi.output_type
2036
2037
  class GetAclTokensAclTokenResult(dict):
2037
2038
  def __init__(__self__, *,
2038
- accessor_id: str,
2039
- create_time: str,
2040
- expiration_time: str,
2041
- global_: bool,
2042
- name: str,
2043
- policies: Sequence[str],
2039
+ accessor_id: builtins.str,
2040
+ create_time: builtins.str,
2041
+ expiration_time: builtins.str,
2042
+ global_: builtins.bool,
2043
+ name: builtins.str,
2044
+ policies: Sequence[builtins.str],
2044
2045
  roles: Sequence['outputs.GetAclTokensAclTokenRoleResult'],
2045
- type: str):
2046
+ type: builtins.str):
2046
2047
  """
2047
- :param str accessor_id: `(TypeString)` Non-sensitive identifier for the token.
2048
- :param str create_time: `(string)` Date and time the token was created at.
2049
- :param str expiration_time: `(string)` - The timestamp after which the token is
2048
+ :param builtins.str accessor_id: `(TypeString)` Non-sensitive identifier for the token.
2049
+ :param builtins.str create_time: `(string)` Date and time the token was created at.
2050
+ :param builtins.str expiration_time: `(string)` - The timestamp after which the token is
2050
2051
  considered expired and eligible for destruction.
2051
- :param bool global_: `(bool)` Whether the token is replicated to all regions.
2052
- :param str name: `(TypeString)` The name of the token.
2053
- :param Sequence[str] policies: `(list of strings)` The list of policies attached to the token.
2052
+ :param builtins.bool global_: `(bool)` Whether the token is replicated to all regions.
2053
+ :param builtins.str name: `(TypeString)` The name of the token.
2054
+ :param Sequence[builtins.str] policies: `(list of strings)` The list of policies attached to the token.
2054
2055
  :param Sequence['GetAclTokensAclTokenRoleArgs'] roles: `(set: [])` - The list of roles attached to the token. Each entry has
2055
2056
  `name` and `id` attributes.
2056
- :param str type: `(TypeString)` The type of the token.
2057
+ :param builtins.str type: `(TypeString)` The type of the token.
2057
2058
  """
2058
2059
  pulumi.set(__self__, "accessor_id", accessor_id)
2059
2060
  pulumi.set(__self__, "create_time", create_time)
@@ -2066,7 +2067,7 @@ class GetAclTokensAclTokenResult(dict):
2066
2067
 
2067
2068
  @property
2068
2069
  @pulumi.getter(name="accessorId")
2069
- def accessor_id(self) -> str:
2070
+ def accessor_id(self) -> builtins.str:
2070
2071
  """
2071
2072
  `(TypeString)` Non-sensitive identifier for the token.
2072
2073
  """
@@ -2074,7 +2075,7 @@ class GetAclTokensAclTokenResult(dict):
2074
2075
 
2075
2076
  @property
2076
2077
  @pulumi.getter(name="createTime")
2077
- def create_time(self) -> str:
2078
+ def create_time(self) -> builtins.str:
2078
2079
  """
2079
2080
  `(string)` Date and time the token was created at.
2080
2081
  """
@@ -2082,7 +2083,7 @@ class GetAclTokensAclTokenResult(dict):
2082
2083
 
2083
2084
  @property
2084
2085
  @pulumi.getter(name="expirationTime")
2085
- def expiration_time(self) -> str:
2086
+ def expiration_time(self) -> builtins.str:
2086
2087
  """
2087
2088
  `(string)` - The timestamp after which the token is
2088
2089
  considered expired and eligible for destruction.
@@ -2091,7 +2092,7 @@ class GetAclTokensAclTokenResult(dict):
2091
2092
 
2092
2093
  @property
2093
2094
  @pulumi.getter(name="global")
2094
- def global_(self) -> bool:
2095
+ def global_(self) -> builtins.bool:
2095
2096
  """
2096
2097
  `(bool)` Whether the token is replicated to all regions.
2097
2098
  """
@@ -2099,7 +2100,7 @@ class GetAclTokensAclTokenResult(dict):
2099
2100
 
2100
2101
  @property
2101
2102
  @pulumi.getter
2102
- def name(self) -> str:
2103
+ def name(self) -> builtins.str:
2103
2104
  """
2104
2105
  `(TypeString)` The name of the token.
2105
2106
  """
@@ -2107,7 +2108,7 @@ class GetAclTokensAclTokenResult(dict):
2107
2108
 
2108
2109
  @property
2109
2110
  @pulumi.getter
2110
- def policies(self) -> Sequence[str]:
2111
+ def policies(self) -> Sequence[builtins.str]:
2111
2112
  """
2112
2113
  `(list of strings)` The list of policies attached to the token.
2113
2114
  """
@@ -2124,7 +2125,7 @@ class GetAclTokensAclTokenResult(dict):
2124
2125
 
2125
2126
  @property
2126
2127
  @pulumi.getter
2127
- def type(self) -> str:
2128
+ def type(self) -> builtins.str:
2128
2129
  """
2129
2130
  `(TypeString)` The type of the token.
2130
2131
  """
@@ -2134,18 +2135,18 @@ class GetAclTokensAclTokenResult(dict):
2134
2135
  @pulumi.output_type
2135
2136
  class GetAclTokensAclTokenRoleResult(dict):
2136
2137
  def __init__(__self__, *,
2137
- id: str,
2138
- name: str):
2138
+ id: builtins.str,
2139
+ name: builtins.str):
2139
2140
  """
2140
- :param str id: The ID of the ACL role.
2141
- :param str name: `(TypeString)` The name of the token.
2141
+ :param builtins.str id: The ID of the ACL role.
2142
+ :param builtins.str name: `(TypeString)` The name of the token.
2142
2143
  """
2143
2144
  pulumi.set(__self__, "id", id)
2144
2145
  pulumi.set(__self__, "name", name)
2145
2146
 
2146
2147
  @property
2147
2148
  @pulumi.getter
2148
- def id(self) -> str:
2149
+ def id(self) -> builtins.str:
2149
2150
  """
2150
2151
  The ID of the ACL role.
2151
2152
  """
@@ -2153,7 +2154,7 @@ class GetAclTokensAclTokenRoleResult(dict):
2153
2154
 
2154
2155
  @property
2155
2156
  @pulumi.getter
2156
- def name(self) -> str:
2157
+ def name(self) -> builtins.str:
2157
2158
  """
2158
2159
  `(TypeString)` The name of the token.
2159
2160
  """
@@ -2163,46 +2164,46 @@ class GetAclTokensAclTokenRoleResult(dict):
2163
2164
  @pulumi.output_type
2164
2165
  class GetAllocationsAllocationResult(dict):
2165
2166
  def __init__(__self__, *,
2166
- client_status: str,
2167
- create_index: int,
2168
- create_time: int,
2169
- desired_status: str,
2170
- eval_id: str,
2171
- followup_eval_id: str,
2172
- id: str,
2173
- job_id: str,
2174
- job_type: str,
2175
- job_version: int,
2176
- modify_index: int,
2177
- modify_time: int,
2178
- name: str,
2179
- namespace: str,
2180
- next_allocation: str,
2181
- node_id: str,
2182
- node_name: str,
2183
- preempted_by_allocation: str,
2184
- task_group: str):
2185
- """
2186
- :param str client_status: `(string)` - The current client status of the allocation.
2187
- :param int create_index: `(int)` - The Raft index in which the allocation was created.
2188
- :param int create_time: `(int)` - The timestamp of when the allocation was created.
2189
- :param str desired_status: `(string)` - The current desired status of the allocation.
2190
- :param str eval_id: `(string)` - The ID of the evaluation that generated the allocation.
2191
- :param str followup_eval_id: `(string)` - The ID of the evaluation that succeeds the allocation evaluation.
2192
- :param str id: `(string)` - The ID of the allocation.
2193
- :param str job_id: `(string)` - The ID of the job related to the allocation.
2194
- :param str job_type: `(string)` - The type of the job related to the allocation.
2195
- :param int job_version: `(int)` - The version of the job that generated the allocation.
2196
- :param int modify_index: `(int)` - The Raft index in which the allocation was last modified.
2197
- :param int modify_time: `(int)` - The timestamp of when the allocation was last modified.
2198
- :param str name: `(string)` - The name of the allocation.
2199
- :param str namespace: `(string: <optional>)` - Specifies the namespace to search for
2167
+ client_status: builtins.str,
2168
+ create_index: builtins.int,
2169
+ create_time: builtins.int,
2170
+ desired_status: builtins.str,
2171
+ eval_id: builtins.str,
2172
+ followup_eval_id: builtins.str,
2173
+ id: builtins.str,
2174
+ job_id: builtins.str,
2175
+ job_type: builtins.str,
2176
+ job_version: builtins.int,
2177
+ modify_index: builtins.int,
2178
+ modify_time: builtins.int,
2179
+ name: builtins.str,
2180
+ namespace: builtins.str,
2181
+ next_allocation: builtins.str,
2182
+ node_id: builtins.str,
2183
+ node_name: builtins.str,
2184
+ preempted_by_allocation: builtins.str,
2185
+ task_group: builtins.str):
2186
+ """
2187
+ :param builtins.str client_status: `(string)` - The current client status of the allocation.
2188
+ :param builtins.int create_index: `(int)` - The Raft index in which the allocation was created.
2189
+ :param builtins.int create_time: `(int)` - The timestamp of when the allocation was created.
2190
+ :param builtins.str desired_status: `(string)` - The current desired status of the allocation.
2191
+ :param builtins.str eval_id: `(string)` - The ID of the evaluation that generated the allocation.
2192
+ :param builtins.str followup_eval_id: `(string)` - The ID of the evaluation that succeeds the allocation evaluation.
2193
+ :param builtins.str id: `(string)` - The ID of the allocation.
2194
+ :param builtins.str job_id: `(string)` - The ID of the job related to the allocation.
2195
+ :param builtins.str job_type: `(string)` - The type of the job related to the allocation.
2196
+ :param builtins.int job_version: `(int)` - The version of the job that generated the allocation.
2197
+ :param builtins.int modify_index: `(int)` - The Raft index in which the allocation was last modified.
2198
+ :param builtins.int modify_time: `(int)` - The timestamp of when the allocation was last modified.
2199
+ :param builtins.str name: `(string)` - The name of the allocation.
2200
+ :param builtins.str namespace: `(string: <optional>)` - Specifies the namespace to search for
2200
2201
  allocations in.
2201
- :param str next_allocation: `(string)` - The ID of the allocation that succeeds the allocation.
2202
- :param str node_id: `(string)` - The ID of the node to which the allocation was scheduled.
2203
- :param str node_name: `(string)` - The ID of the node to which the allocation was scheduled.
2204
- :param str preempted_by_allocation: `(string)` - The ID of the allocation that preempted the allocation.
2205
- :param str task_group: `(string)` - The job task group related to the allocation.
2202
+ :param builtins.str next_allocation: `(string)` - The ID of the allocation that succeeds the allocation.
2203
+ :param builtins.str node_id: `(string)` - The ID of the node to which the allocation was scheduled.
2204
+ :param builtins.str node_name: `(string)` - The ID of the node to which the allocation was scheduled.
2205
+ :param builtins.str preempted_by_allocation: `(string)` - The ID of the allocation that preempted the allocation.
2206
+ :param builtins.str task_group: `(string)` - The job task group related to the allocation.
2206
2207
  """
2207
2208
  pulumi.set(__self__, "client_status", client_status)
2208
2209
  pulumi.set(__self__, "create_index", create_index)
@@ -2226,7 +2227,7 @@ class GetAllocationsAllocationResult(dict):
2226
2227
 
2227
2228
  @property
2228
2229
  @pulumi.getter(name="clientStatus")
2229
- def client_status(self) -> str:
2230
+ def client_status(self) -> builtins.str:
2230
2231
  """
2231
2232
  `(string)` - The current client status of the allocation.
2232
2233
  """
@@ -2234,7 +2235,7 @@ class GetAllocationsAllocationResult(dict):
2234
2235
 
2235
2236
  @property
2236
2237
  @pulumi.getter(name="createIndex")
2237
- def create_index(self) -> int:
2238
+ def create_index(self) -> builtins.int:
2238
2239
  """
2239
2240
  `(int)` - The Raft index in which the allocation was created.
2240
2241
  """
@@ -2242,7 +2243,7 @@ class GetAllocationsAllocationResult(dict):
2242
2243
 
2243
2244
  @property
2244
2245
  @pulumi.getter(name="createTime")
2245
- def create_time(self) -> int:
2246
+ def create_time(self) -> builtins.int:
2246
2247
  """
2247
2248
  `(int)` - The timestamp of when the allocation was created.
2248
2249
  """
@@ -2250,7 +2251,7 @@ class GetAllocationsAllocationResult(dict):
2250
2251
 
2251
2252
  @property
2252
2253
  @pulumi.getter(name="desiredStatus")
2253
- def desired_status(self) -> str:
2254
+ def desired_status(self) -> builtins.str:
2254
2255
  """
2255
2256
  `(string)` - The current desired status of the allocation.
2256
2257
  """
@@ -2258,7 +2259,7 @@ class GetAllocationsAllocationResult(dict):
2258
2259
 
2259
2260
  @property
2260
2261
  @pulumi.getter(name="evalId")
2261
- def eval_id(self) -> str:
2262
+ def eval_id(self) -> builtins.str:
2262
2263
  """
2263
2264
  `(string)` - The ID of the evaluation that generated the allocation.
2264
2265
  """
@@ -2266,7 +2267,7 @@ class GetAllocationsAllocationResult(dict):
2266
2267
 
2267
2268
  @property
2268
2269
  @pulumi.getter(name="followupEvalId")
2269
- def followup_eval_id(self) -> str:
2270
+ def followup_eval_id(self) -> builtins.str:
2270
2271
  """
2271
2272
  `(string)` - The ID of the evaluation that succeeds the allocation evaluation.
2272
2273
  """
@@ -2274,7 +2275,7 @@ class GetAllocationsAllocationResult(dict):
2274
2275
 
2275
2276
  @property
2276
2277
  @pulumi.getter
2277
- def id(self) -> str:
2278
+ def id(self) -> builtins.str:
2278
2279
  """
2279
2280
  `(string)` - The ID of the allocation.
2280
2281
  """
@@ -2282,7 +2283,7 @@ class GetAllocationsAllocationResult(dict):
2282
2283
 
2283
2284
  @property
2284
2285
  @pulumi.getter(name="jobId")
2285
- def job_id(self) -> str:
2286
+ def job_id(self) -> builtins.str:
2286
2287
  """
2287
2288
  `(string)` - The ID of the job related to the allocation.
2288
2289
  """
@@ -2290,7 +2291,7 @@ class GetAllocationsAllocationResult(dict):
2290
2291
 
2291
2292
  @property
2292
2293
  @pulumi.getter(name="jobType")
2293
- def job_type(self) -> str:
2294
+ def job_type(self) -> builtins.str:
2294
2295
  """
2295
2296
  `(string)` - The type of the job related to the allocation.
2296
2297
  """
@@ -2298,7 +2299,7 @@ class GetAllocationsAllocationResult(dict):
2298
2299
 
2299
2300
  @property
2300
2301
  @pulumi.getter(name="jobVersion")
2301
- def job_version(self) -> int:
2302
+ def job_version(self) -> builtins.int:
2302
2303
  """
2303
2304
  `(int)` - The version of the job that generated the allocation.
2304
2305
  """
@@ -2306,7 +2307,7 @@ class GetAllocationsAllocationResult(dict):
2306
2307
 
2307
2308
  @property
2308
2309
  @pulumi.getter(name="modifyIndex")
2309
- def modify_index(self) -> int:
2310
+ def modify_index(self) -> builtins.int:
2310
2311
  """
2311
2312
  `(int)` - The Raft index in which the allocation was last modified.
2312
2313
  """
@@ -2314,7 +2315,7 @@ class GetAllocationsAllocationResult(dict):
2314
2315
 
2315
2316
  @property
2316
2317
  @pulumi.getter(name="modifyTime")
2317
- def modify_time(self) -> int:
2318
+ def modify_time(self) -> builtins.int:
2318
2319
  """
2319
2320
  `(int)` - The timestamp of when the allocation was last modified.
2320
2321
  """
@@ -2322,7 +2323,7 @@ class GetAllocationsAllocationResult(dict):
2322
2323
 
2323
2324
  @property
2324
2325
  @pulumi.getter
2325
- def name(self) -> str:
2326
+ def name(self) -> builtins.str:
2326
2327
  """
2327
2328
  `(string)` - The name of the allocation.
2328
2329
  """
@@ -2330,7 +2331,7 @@ class GetAllocationsAllocationResult(dict):
2330
2331
 
2331
2332
  @property
2332
2333
  @pulumi.getter
2333
- def namespace(self) -> str:
2334
+ def namespace(self) -> builtins.str:
2334
2335
  """
2335
2336
  `(string: <optional>)` - Specifies the namespace to search for
2336
2337
  allocations in.
@@ -2339,7 +2340,7 @@ class GetAllocationsAllocationResult(dict):
2339
2340
 
2340
2341
  @property
2341
2342
  @pulumi.getter(name="nextAllocation")
2342
- def next_allocation(self) -> str:
2343
+ def next_allocation(self) -> builtins.str:
2343
2344
  """
2344
2345
  `(string)` - The ID of the allocation that succeeds the allocation.
2345
2346
  """
@@ -2347,7 +2348,7 @@ class GetAllocationsAllocationResult(dict):
2347
2348
 
2348
2349
  @property
2349
2350
  @pulumi.getter(name="nodeId")
2350
- def node_id(self) -> str:
2351
+ def node_id(self) -> builtins.str:
2351
2352
  """
2352
2353
  `(string)` - The ID of the node to which the allocation was scheduled.
2353
2354
  """
@@ -2355,7 +2356,7 @@ class GetAllocationsAllocationResult(dict):
2355
2356
 
2356
2357
  @property
2357
2358
  @pulumi.getter(name="nodeName")
2358
- def node_name(self) -> str:
2359
+ def node_name(self) -> builtins.str:
2359
2360
  """
2360
2361
  `(string)` - The ID of the node to which the allocation was scheduled.
2361
2362
  """
@@ -2363,7 +2364,7 @@ class GetAllocationsAllocationResult(dict):
2363
2364
 
2364
2365
  @property
2365
2366
  @pulumi.getter(name="preemptedByAllocation")
2366
- def preempted_by_allocation(self) -> str:
2367
+ def preempted_by_allocation(self) -> builtins.str:
2367
2368
  """
2368
2369
  `(string)` - The ID of the allocation that preempted the allocation.
2369
2370
  """
@@ -2371,7 +2372,7 @@ class GetAllocationsAllocationResult(dict):
2371
2372
 
2372
2373
  @property
2373
2374
  @pulumi.getter(name="taskGroup")
2374
- def task_group(self) -> str:
2375
+ def task_group(self) -> builtins.str:
2375
2376
  """
2376
2377
  `(string)` - The job task group related to the allocation.
2377
2378
  """
@@ -2381,13 +2382,13 @@ class GetAllocationsAllocationResult(dict):
2381
2382
  @pulumi.output_type
2382
2383
  class GetJobConstraintResult(dict):
2383
2384
  def __init__(__self__, *,
2384
- ltarget: str,
2385
- operand: str,
2386
- rtarget: str):
2385
+ ltarget: builtins.str,
2386
+ operand: builtins.str,
2387
+ rtarget: builtins.str):
2387
2388
  """
2388
- :param str ltarget: `(string)` Attribute being constrained.
2389
- :param str operand: `(string)` Operator used to compare the attribute to the constraint.
2390
- :param str rtarget: `(string)` Constraint value.
2389
+ :param builtins.str ltarget: `(string)` Attribute being constrained.
2390
+ :param builtins.str operand: `(string)` Operator used to compare the attribute to the constraint.
2391
+ :param builtins.str rtarget: `(string)` Constraint value.
2391
2392
  """
2392
2393
  pulumi.set(__self__, "ltarget", ltarget)
2393
2394
  pulumi.set(__self__, "operand", operand)
@@ -2395,7 +2396,7 @@ class GetJobConstraintResult(dict):
2395
2396
 
2396
2397
  @property
2397
2398
  @pulumi.getter
2398
- def ltarget(self) -> str:
2399
+ def ltarget(self) -> builtins.str:
2399
2400
  """
2400
2401
  `(string)` Attribute being constrained.
2401
2402
  """
@@ -2403,7 +2404,7 @@ class GetJobConstraintResult(dict):
2403
2404
 
2404
2405
  @property
2405
2406
  @pulumi.getter
2406
- def operand(self) -> str:
2407
+ def operand(self) -> builtins.str:
2407
2408
  """
2408
2409
  `(string)` Operator used to compare the attribute to the constraint.
2409
2410
  """
@@ -2411,7 +2412,7 @@ class GetJobConstraintResult(dict):
2411
2412
 
2412
2413
  @property
2413
2414
  @pulumi.getter
2414
- def rtarget(self) -> str:
2415
+ def rtarget(self) -> builtins.str:
2415
2416
  """
2416
2417
  `(string)` Constraint value.
2417
2418
  """
@@ -2421,17 +2422,17 @@ class GetJobConstraintResult(dict):
2421
2422
  @pulumi.output_type
2422
2423
  class GetJobPeriodicConfigResult(dict):
2423
2424
  def __init__(__self__, *,
2424
- enabled: bool,
2425
- prohibit_overlap: bool,
2426
- spec: str,
2427
- spec_type: str,
2428
- timezone: str):
2425
+ enabled: builtins.bool,
2426
+ prohibit_overlap: builtins.bool,
2427
+ spec: builtins.str,
2428
+ spec_type: builtins.str,
2429
+ timezone: builtins.str):
2429
2430
  """
2430
- :param bool enabled: `(boolean)` If periodic scheduling is enabled for the specified job.
2431
- :param bool prohibit_overlap: `(boolean)` If the specified job should wait until previous instances of the job have completed.
2432
- :param str spec: `(string)`
2433
- :param str spec_type: `(string)`
2434
- :param str timezone: `(string)` Time zone to evaluate the next launch interval against.
2431
+ :param builtins.bool enabled: `(boolean)` If periodic scheduling is enabled for the specified job.
2432
+ :param builtins.bool prohibit_overlap: `(boolean)` If the specified job should wait until previous instances of the job have completed.
2433
+ :param builtins.str spec: `(string)`
2434
+ :param builtins.str spec_type: `(string)`
2435
+ :param builtins.str timezone: `(string)` Time zone to evaluate the next launch interval against.
2435
2436
  """
2436
2437
  pulumi.set(__self__, "enabled", enabled)
2437
2438
  pulumi.set(__self__, "prohibit_overlap", prohibit_overlap)
@@ -2441,7 +2442,7 @@ class GetJobPeriodicConfigResult(dict):
2441
2442
 
2442
2443
  @property
2443
2444
  @pulumi.getter
2444
- def enabled(self) -> bool:
2445
+ def enabled(self) -> builtins.bool:
2445
2446
  """
2446
2447
  `(boolean)` If periodic scheduling is enabled for the specified job.
2447
2448
  """
@@ -2449,7 +2450,7 @@ class GetJobPeriodicConfigResult(dict):
2449
2450
 
2450
2451
  @property
2451
2452
  @pulumi.getter(name="prohibitOverlap")
2452
- def prohibit_overlap(self) -> bool:
2453
+ def prohibit_overlap(self) -> builtins.bool:
2453
2454
  """
2454
2455
  `(boolean)` If the specified job should wait until previous instances of the job have completed.
2455
2456
  """
@@ -2457,7 +2458,7 @@ class GetJobPeriodicConfigResult(dict):
2457
2458
 
2458
2459
  @property
2459
2460
  @pulumi.getter
2460
- def spec(self) -> str:
2461
+ def spec(self) -> builtins.str:
2461
2462
  """
2462
2463
  `(string)`
2463
2464
  """
@@ -2465,7 +2466,7 @@ class GetJobPeriodicConfigResult(dict):
2465
2466
 
2466
2467
  @property
2467
2468
  @pulumi.getter(name="specType")
2468
- def spec_type(self) -> str:
2469
+ def spec_type(self) -> builtins.str:
2469
2470
  """
2470
2471
  `(string)`
2471
2472
  """
@@ -2473,7 +2474,7 @@ class GetJobPeriodicConfigResult(dict):
2473
2474
 
2474
2475
  @property
2475
2476
  @pulumi.getter
2476
- def timezone(self) -> str:
2477
+ def timezone(self) -> builtins.str:
2477
2478
  """
2478
2479
  `(string)` Time zone to evaluate the next launch interval against.
2479
2480
  """
@@ -2483,13 +2484,13 @@ class GetJobPeriodicConfigResult(dict):
2483
2484
  @pulumi.output_type
2484
2485
  class GetJobTaskGroupResult(dict):
2485
2486
  def __init__(__self__, *,
2486
- count: int,
2487
- meta: Mapping[str, str],
2488
- name: str,
2487
+ count: builtins.int,
2488
+ meta: Mapping[str, builtins.str],
2489
+ name: builtins.str,
2489
2490
  tasks: Sequence['outputs.GetJobTaskGroupTaskResult'],
2490
2491
  volumes: Sequence['outputs.GetJobTaskGroupVolumeResult']):
2491
2492
  """
2492
- :param str name: `(string)` Name of the job.
2493
+ :param builtins.str name: `(string)` Name of the job.
2493
2494
  """
2494
2495
  pulumi.set(__self__, "count", count)
2495
2496
  pulumi.set(__self__, "meta", meta)
@@ -2499,17 +2500,17 @@ class GetJobTaskGroupResult(dict):
2499
2500
 
2500
2501
  @property
2501
2502
  @pulumi.getter
2502
- def count(self) -> int:
2503
+ def count(self) -> builtins.int:
2503
2504
  return pulumi.get(self, "count")
2504
2505
 
2505
2506
  @property
2506
2507
  @pulumi.getter
2507
- def meta(self) -> Mapping[str, str]:
2508
+ def meta(self) -> Mapping[str, builtins.str]:
2508
2509
  return pulumi.get(self, "meta")
2509
2510
 
2510
2511
  @property
2511
2512
  @pulumi.getter
2512
- def name(self) -> str:
2513
+ def name(self) -> builtins.str:
2513
2514
  """
2514
2515
  `(string)` Name of the job.
2515
2516
  """
@@ -2529,12 +2530,12 @@ class GetJobTaskGroupResult(dict):
2529
2530
  @pulumi.output_type
2530
2531
  class GetJobTaskGroupTaskResult(dict):
2531
2532
  def __init__(__self__, *,
2532
- driver: str,
2533
- meta: Mapping[str, str],
2534
- name: str,
2533
+ driver: builtins.str,
2534
+ meta: Mapping[str, builtins.str],
2535
+ name: builtins.str,
2535
2536
  volume_mounts: Sequence['outputs.GetJobTaskGroupTaskVolumeMountResult']):
2536
2537
  """
2537
- :param str name: `(string)` Name of the job.
2538
+ :param builtins.str name: `(string)` Name of the job.
2538
2539
  """
2539
2540
  pulumi.set(__self__, "driver", driver)
2540
2541
  pulumi.set(__self__, "meta", meta)
@@ -2543,17 +2544,17 @@ class GetJobTaskGroupTaskResult(dict):
2543
2544
 
2544
2545
  @property
2545
2546
  @pulumi.getter
2546
- def driver(self) -> str:
2547
+ def driver(self) -> builtins.str:
2547
2548
  return pulumi.get(self, "driver")
2548
2549
 
2549
2550
  @property
2550
2551
  @pulumi.getter
2551
- def meta(self) -> Mapping[str, str]:
2552
+ def meta(self) -> Mapping[str, builtins.str]:
2552
2553
  return pulumi.get(self, "meta")
2553
2554
 
2554
2555
  @property
2555
2556
  @pulumi.getter
2556
- def name(self) -> str:
2557
+ def name(self) -> builtins.str:
2557
2558
  """
2558
2559
  `(string)` Name of the job.
2559
2560
  """
@@ -2568,39 +2569,39 @@ class GetJobTaskGroupTaskResult(dict):
2568
2569
  @pulumi.output_type
2569
2570
  class GetJobTaskGroupTaskVolumeMountResult(dict):
2570
2571
  def __init__(__self__, *,
2571
- destination: str,
2572
- read_only: bool,
2573
- volume: str):
2572
+ destination: builtins.str,
2573
+ read_only: builtins.bool,
2574
+ volume: builtins.str):
2574
2575
  pulumi.set(__self__, "destination", destination)
2575
2576
  pulumi.set(__self__, "read_only", read_only)
2576
2577
  pulumi.set(__self__, "volume", volume)
2577
2578
 
2578
2579
  @property
2579
2580
  @pulumi.getter
2580
- def destination(self) -> str:
2581
+ def destination(self) -> builtins.str:
2581
2582
  return pulumi.get(self, "destination")
2582
2583
 
2583
2584
  @property
2584
2585
  @pulumi.getter(name="readOnly")
2585
- def read_only(self) -> bool:
2586
+ def read_only(self) -> builtins.bool:
2586
2587
  return pulumi.get(self, "read_only")
2587
2588
 
2588
2589
  @property
2589
2590
  @pulumi.getter
2590
- def volume(self) -> str:
2591
+ def volume(self) -> builtins.str:
2591
2592
  return pulumi.get(self, "volume")
2592
2593
 
2593
2594
 
2594
2595
  @pulumi.output_type
2595
2596
  class GetJobTaskGroupVolumeResult(dict):
2596
2597
  def __init__(__self__, *,
2597
- name: str,
2598
- read_only: bool,
2599
- source: str,
2600
- type: str):
2598
+ name: builtins.str,
2599
+ read_only: builtins.bool,
2600
+ source: builtins.str,
2601
+ type: builtins.str):
2601
2602
  """
2602
- :param str name: `(string)` Name of the job.
2603
- :param str type: `(string)` Scheduler type used during job creation.
2603
+ :param builtins.str name: `(string)` Name of the job.
2604
+ :param builtins.str type: `(string)` Scheduler type used during job creation.
2604
2605
  """
2605
2606
  pulumi.set(__self__, "name", name)
2606
2607
  pulumi.set(__self__, "read_only", read_only)
@@ -2609,7 +2610,7 @@ class GetJobTaskGroupVolumeResult(dict):
2609
2610
 
2610
2611
  @property
2611
2612
  @pulumi.getter
2612
- def name(self) -> str:
2613
+ def name(self) -> builtins.str:
2613
2614
  """
2614
2615
  `(string)` Name of the job.
2615
2616
  """
@@ -2617,17 +2618,17 @@ class GetJobTaskGroupVolumeResult(dict):
2617
2618
 
2618
2619
  @property
2619
2620
  @pulumi.getter(name="readOnly")
2620
- def read_only(self) -> bool:
2621
+ def read_only(self) -> builtins.bool:
2621
2622
  return pulumi.get(self, "read_only")
2622
2623
 
2623
2624
  @property
2624
2625
  @pulumi.getter
2625
- def source(self) -> str:
2626
+ def source(self) -> builtins.str:
2626
2627
  return pulumi.get(self, "source")
2627
2628
 
2628
2629
  @property
2629
2630
  @pulumi.getter
2630
- def type(self) -> str:
2631
+ def type(self) -> builtins.str:
2631
2632
  """
2632
2633
  `(string)` Scheduler type used during job creation.
2633
2634
  """
@@ -2637,19 +2638,19 @@ class GetJobTaskGroupVolumeResult(dict):
2637
2638
  @pulumi.output_type
2638
2639
  class GetJwksKeyResult(dict):
2639
2640
  def __init__(__self__, *,
2640
- algorithm: str,
2641
- exponent: str,
2642
- key_id: str,
2643
- key_type: str,
2644
- key_use: str,
2645
- modulus: str):
2641
+ algorithm: builtins.str,
2642
+ exponent: builtins.str,
2643
+ key_id: builtins.str,
2644
+ key_type: builtins.str,
2645
+ key_use: builtins.str,
2646
+ modulus: builtins.str):
2646
2647
  """
2647
- :param str algorithm: `(string)` - JWK field `alg`
2648
- :param str exponent: `(string)` - JWK field `e`
2649
- :param str key_id: `(string)` - JWK field `kid`
2650
- :param str key_type: `(string)` - JWK field `kty`
2651
- :param str key_use: `(string)` - JWK field `use`
2652
- :param str modulus: `(string)` - JWK field `n`
2648
+ :param builtins.str algorithm: `(string)` - JWK field `alg`
2649
+ :param builtins.str exponent: `(string)` - JWK field `e`
2650
+ :param builtins.str key_id: `(string)` - JWK field `kid`
2651
+ :param builtins.str key_type: `(string)` - JWK field `kty`
2652
+ :param builtins.str key_use: `(string)` - JWK field `use`
2653
+ :param builtins.str modulus: `(string)` - JWK field `n`
2653
2654
  """
2654
2655
  pulumi.set(__self__, "algorithm", algorithm)
2655
2656
  pulumi.set(__self__, "exponent", exponent)
@@ -2660,7 +2661,7 @@ class GetJwksKeyResult(dict):
2660
2661
 
2661
2662
  @property
2662
2663
  @pulumi.getter
2663
- def algorithm(self) -> str:
2664
+ def algorithm(self) -> builtins.str:
2664
2665
  """
2665
2666
  `(string)` - JWK field `alg`
2666
2667
  """
@@ -2668,7 +2669,7 @@ class GetJwksKeyResult(dict):
2668
2669
 
2669
2670
  @property
2670
2671
  @pulumi.getter
2671
- def exponent(self) -> str:
2672
+ def exponent(self) -> builtins.str:
2672
2673
  """
2673
2674
  `(string)` - JWK field `e`
2674
2675
  """
@@ -2676,7 +2677,7 @@ class GetJwksKeyResult(dict):
2676
2677
 
2677
2678
  @property
2678
2679
  @pulumi.getter(name="keyId")
2679
- def key_id(self) -> str:
2680
+ def key_id(self) -> builtins.str:
2680
2681
  """
2681
2682
  `(string)` - JWK field `kid`
2682
2683
  """
@@ -2684,7 +2685,7 @@ class GetJwksKeyResult(dict):
2684
2685
 
2685
2686
  @property
2686
2687
  @pulumi.getter(name="keyType")
2687
- def key_type(self) -> str:
2688
+ def key_type(self) -> builtins.str:
2688
2689
  """
2689
2690
  `(string)` - JWK field `kty`
2690
2691
  """
@@ -2692,7 +2693,7 @@ class GetJwksKeyResult(dict):
2692
2693
 
2693
2694
  @property
2694
2695
  @pulumi.getter(name="keyUse")
2695
- def key_use(self) -> str:
2696
+ def key_use(self) -> builtins.str:
2696
2697
  """
2697
2698
  `(string)` - JWK field `use`
2698
2699
  """
@@ -2700,7 +2701,7 @@ class GetJwksKeyResult(dict):
2700
2701
 
2701
2702
  @property
2702
2703
  @pulumi.getter
2703
- def modulus(self) -> str:
2704
+ def modulus(self) -> builtins.str:
2704
2705
  """
2705
2706
  `(string)` - JWK field `n`
2706
2707
  """
@@ -2710,11 +2711,11 @@ class GetJwksKeyResult(dict):
2710
2711
  @pulumi.output_type
2711
2712
  class GetNamespaceCapabilityResult(dict):
2712
2713
  def __init__(__self__, *,
2713
- disabled_task_drivers: Optional[Sequence[str]] = None,
2714
- enabled_task_drivers: Optional[Sequence[str]] = None):
2714
+ disabled_task_drivers: Optional[Sequence[builtins.str]] = None,
2715
+ enabled_task_drivers: Optional[Sequence[builtins.str]] = None):
2715
2716
  """
2716
- :param Sequence[str] disabled_task_drivers: `([]string)` - Task drivers disabled for the namespace.
2717
- :param Sequence[str] enabled_task_drivers: `([]string)` - Task drivers enabled for the namespace.
2717
+ :param Sequence[builtins.str] disabled_task_drivers: `([]string)` - Task drivers disabled for the namespace.
2718
+ :param Sequence[builtins.str] enabled_task_drivers: `([]string)` - Task drivers enabled for the namespace.
2718
2719
  """
2719
2720
  if disabled_task_drivers is not None:
2720
2721
  pulumi.set(__self__, "disabled_task_drivers", disabled_task_drivers)
@@ -2723,7 +2724,7 @@ class GetNamespaceCapabilityResult(dict):
2723
2724
 
2724
2725
  @property
2725
2726
  @pulumi.getter(name="disabledTaskDrivers")
2726
- def disabled_task_drivers(self) -> Optional[Sequence[str]]:
2727
+ def disabled_task_drivers(self) -> Optional[Sequence[builtins.str]]:
2727
2728
  """
2728
2729
  `([]string)` - Task drivers disabled for the namespace.
2729
2730
  """
@@ -2731,7 +2732,7 @@ class GetNamespaceCapabilityResult(dict):
2731
2732
 
2732
2733
  @property
2733
2734
  @pulumi.getter(name="enabledTaskDrivers")
2734
- def enabled_task_drivers(self) -> Optional[Sequence[str]]:
2735
+ def enabled_task_drivers(self) -> Optional[Sequence[builtins.str]]:
2735
2736
  """
2736
2737
  `([]string)` - Task drivers enabled for the namespace.
2737
2738
  """
@@ -2741,39 +2742,39 @@ class GetNamespaceCapabilityResult(dict):
2741
2742
  @pulumi.output_type
2742
2743
  class GetNamespaceNodePoolConfigResult(dict):
2743
2744
  def __init__(__self__, *,
2744
- alloweds: Sequence[str],
2745
- default: str,
2746
- denieds: Sequence[str]):
2745
+ alloweds: Sequence[builtins.str],
2746
+ default: builtins.str,
2747
+ denieds: Sequence[builtins.str]):
2747
2748
  pulumi.set(__self__, "alloweds", alloweds)
2748
2749
  pulumi.set(__self__, "default", default)
2749
2750
  pulumi.set(__self__, "denieds", denieds)
2750
2751
 
2751
2752
  @property
2752
2753
  @pulumi.getter
2753
- def alloweds(self) -> Sequence[str]:
2754
+ def alloweds(self) -> Sequence[builtins.str]:
2754
2755
  return pulumi.get(self, "alloweds")
2755
2756
 
2756
2757
  @property
2757
2758
  @pulumi.getter
2758
- def default(self) -> str:
2759
+ def default(self) -> builtins.str:
2759
2760
  return pulumi.get(self, "default")
2760
2761
 
2761
2762
  @property
2762
2763
  @pulumi.getter
2763
- def denieds(self) -> Sequence[str]:
2764
+ def denieds(self) -> Sequence[builtins.str]:
2764
2765
  return pulumi.get(self, "denieds")
2765
2766
 
2766
2767
 
2767
2768
  @pulumi.output_type
2768
2769
  class GetNodePoolSchedulerConfigResult(dict):
2769
2770
  def __init__(__self__, *,
2770
- memory_oversubscription: str,
2771
- scheduler_algorithm: str):
2771
+ memory_oversubscription: builtins.str,
2772
+ scheduler_algorithm: builtins.str):
2772
2773
  """
2773
- :param str memory_oversubscription: `(string)` - Whether or not memory
2774
+ :param builtins.str memory_oversubscription: `(string)` - Whether or not memory
2774
2775
  oversubscription is enabled in the node pool. If empty or not defined the
2775
2776
  global cluster configuration is used.
2776
- :param str scheduler_algorithm: `(string)` - The scheduler algorithm used in the node
2777
+ :param builtins.str scheduler_algorithm: `(string)` - The scheduler algorithm used in the node
2777
2778
  pool. If empty or not defined the global cluster configuration is used.
2778
2779
  """
2779
2780
  pulumi.set(__self__, "memory_oversubscription", memory_oversubscription)
@@ -2781,7 +2782,7 @@ class GetNodePoolSchedulerConfigResult(dict):
2781
2782
 
2782
2783
  @property
2783
2784
  @pulumi.getter(name="memoryOversubscription")
2784
- def memory_oversubscription(self) -> str:
2785
+ def memory_oversubscription(self) -> builtins.str:
2785
2786
  """
2786
2787
  `(string)` - Whether or not memory
2787
2788
  oversubscription is enabled in the node pool. If empty or not defined the
@@ -2791,7 +2792,7 @@ class GetNodePoolSchedulerConfigResult(dict):
2791
2792
 
2792
2793
  @property
2793
2794
  @pulumi.getter(name="schedulerAlgorithm")
2794
- def scheduler_algorithm(self) -> str:
2795
+ def scheduler_algorithm(self) -> builtins.str:
2795
2796
  """
2796
2797
  `(string)` - The scheduler algorithm used in the node
2797
2798
  pool. If empty or not defined the global cluster configuration is used.
@@ -2802,15 +2803,15 @@ class GetNodePoolSchedulerConfigResult(dict):
2802
2803
  @pulumi.output_type
2803
2804
  class GetNodePoolsNodePoolResult(dict):
2804
2805
  def __init__(__self__, *,
2805
- description: str,
2806
- meta: Mapping[str, str],
2807
- name: str,
2806
+ description: builtins.str,
2807
+ meta: Mapping[str, builtins.str],
2808
+ name: builtins.str,
2808
2809
  scheduler_configs: Sequence['outputs.GetNodePoolsNodePoolSchedulerConfigResult']):
2809
2810
  """
2810
- :param str description: `(string)` - The description of the node pool.
2811
- :param Mapping[str, str] meta: `(map[string]string)` - Arbitrary KV metadata associated with the
2811
+ :param builtins.str description: `(string)` - The description of the node pool.
2812
+ :param Mapping[str, builtins.str] meta: `(map[string]string)` - Arbitrary KV metadata associated with the
2812
2813
  node pool.
2813
- :param str name: `(string)` - The name of the node pool.
2814
+ :param builtins.str name: `(string)` - The name of the node pool.
2814
2815
  :param Sequence['GetNodePoolsNodePoolSchedulerConfigArgs'] scheduler_configs: `(block)` - Scheduler configuration for the node pool.
2815
2816
  """
2816
2817
  pulumi.set(__self__, "description", description)
@@ -2820,7 +2821,7 @@ class GetNodePoolsNodePoolResult(dict):
2820
2821
 
2821
2822
  @property
2822
2823
  @pulumi.getter
2823
- def description(self) -> str:
2824
+ def description(self) -> builtins.str:
2824
2825
  """
2825
2826
  `(string)` - The description of the node pool.
2826
2827
  """
@@ -2828,7 +2829,7 @@ class GetNodePoolsNodePoolResult(dict):
2828
2829
 
2829
2830
  @property
2830
2831
  @pulumi.getter
2831
- def meta(self) -> Mapping[str, str]:
2832
+ def meta(self) -> Mapping[str, builtins.str]:
2832
2833
  """
2833
2834
  `(map[string]string)` - Arbitrary KV metadata associated with the
2834
2835
  node pool.
@@ -2837,7 +2838,7 @@ class GetNodePoolsNodePoolResult(dict):
2837
2838
 
2838
2839
  @property
2839
2840
  @pulumi.getter
2840
- def name(self) -> str:
2841
+ def name(self) -> builtins.str:
2841
2842
  """
2842
2843
  `(string)` - The name of the node pool.
2843
2844
  """
@@ -2855,13 +2856,13 @@ class GetNodePoolsNodePoolResult(dict):
2855
2856
  @pulumi.output_type
2856
2857
  class GetNodePoolsNodePoolSchedulerConfigResult(dict):
2857
2858
  def __init__(__self__, *,
2858
- memory_oversubscription: str,
2859
- scheduler_algorithm: str):
2859
+ memory_oversubscription: builtins.str,
2860
+ scheduler_algorithm: builtins.str):
2860
2861
  """
2861
- :param str memory_oversubscription: `(string)` - Whether or not memory
2862
+ :param builtins.str memory_oversubscription: `(string)` - Whether or not memory
2862
2863
  oversubscription is enabled in the node pool. If empty or not defined the
2863
2864
  global cluster configuration is used.
2864
- :param str scheduler_algorithm: `(string)` - The scheduler algorithm used in the node
2865
+ :param builtins.str scheduler_algorithm: `(string)` - The scheduler algorithm used in the node
2865
2866
  pool. If empty or not defined the global cluster configuration is used.
2866
2867
  """
2867
2868
  pulumi.set(__self__, "memory_oversubscription", memory_oversubscription)
@@ -2869,7 +2870,7 @@ class GetNodePoolsNodePoolSchedulerConfigResult(dict):
2869
2870
 
2870
2871
  @property
2871
2872
  @pulumi.getter(name="memoryOversubscription")
2872
- def memory_oversubscription(self) -> str:
2873
+ def memory_oversubscription(self) -> builtins.str:
2873
2874
  """
2874
2875
  `(string)` - Whether or not memory
2875
2876
  oversubscription is enabled in the node pool. If empty or not defined the
@@ -2879,7 +2880,7 @@ class GetNodePoolsNodePoolSchedulerConfigResult(dict):
2879
2880
 
2880
2881
  @property
2881
2882
  @pulumi.getter(name="schedulerAlgorithm")
2882
- def scheduler_algorithm(self) -> str:
2883
+ def scheduler_algorithm(self) -> builtins.str:
2883
2884
  """
2884
2885
  `(string)` - The scheduler algorithm used in the node
2885
2886
  pool. If empty or not defined the global cluster configuration is used.
@@ -2890,41 +2891,41 @@ class GetNodePoolsNodePoolSchedulerConfigResult(dict):
2890
2891
  @pulumi.output_type
2891
2892
  class GetPluginNodeResult(dict):
2892
2893
  def __init__(__self__, *,
2893
- healthy: bool,
2894
- healthy_description: str,
2895
- name: str):
2894
+ healthy: builtins.bool,
2895
+ healthy_description: builtins.str,
2896
+ name: builtins.str):
2896
2897
  pulumi.set(__self__, "healthy", healthy)
2897
2898
  pulumi.set(__self__, "healthy_description", healthy_description)
2898
2899
  pulumi.set(__self__, "name", name)
2899
2900
 
2900
2901
  @property
2901
2902
  @pulumi.getter
2902
- def healthy(self) -> bool:
2903
+ def healthy(self) -> builtins.bool:
2903
2904
  return pulumi.get(self, "healthy")
2904
2905
 
2905
2906
  @property
2906
2907
  @pulumi.getter(name="healthyDescription")
2907
- def healthy_description(self) -> str:
2908
+ def healthy_description(self) -> builtins.str:
2908
2909
  return pulumi.get(self, "healthy_description")
2909
2910
 
2910
2911
  @property
2911
2912
  @pulumi.getter
2912
- def name(self) -> str:
2913
+ def name(self) -> builtins.str:
2913
2914
  return pulumi.get(self, "name")
2914
2915
 
2915
2916
 
2916
2917
  @pulumi.output_type
2917
2918
  class GetScalingPoliciesPolicyResult(dict):
2918
2919
  def __init__(__self__, *,
2919
- enabled: bool,
2920
- id: str,
2921
- target: Mapping[str, str],
2922
- type: str):
2920
+ enabled: builtins.bool,
2921
+ id: builtins.str,
2922
+ target: Mapping[str, builtins.str],
2923
+ type: builtins.str):
2923
2924
  """
2924
- :param bool enabled: `(boolean)` - Whether or not the scaling policy is enabled.
2925
- :param str id: `(string)` - The scaling policy ID.
2926
- :param Mapping[str, str] target: `(map[string]string)` - The scaling policy target.
2927
- :param str type: `(string)` - An optional string to filter scaling policies based on policy type. If not provided, policies of all types are returned.
2925
+ :param builtins.bool enabled: `(boolean)` - Whether or not the scaling policy is enabled.
2926
+ :param builtins.str id: `(string)` - The scaling policy ID.
2927
+ :param Mapping[str, builtins.str] target: `(map[string]string)` - The scaling policy target.
2928
+ :param builtins.str type: `(string)` - An optional string to filter scaling policies based on policy type. If not provided, policies of all types are returned.
2928
2929
  """
2929
2930
  pulumi.set(__self__, "enabled", enabled)
2930
2931
  pulumi.set(__self__, "id", id)
@@ -2933,7 +2934,7 @@ class GetScalingPoliciesPolicyResult(dict):
2933
2934
 
2934
2935
  @property
2935
2936
  @pulumi.getter
2936
- def enabled(self) -> bool:
2937
+ def enabled(self) -> builtins.bool:
2937
2938
  """
2938
2939
  `(boolean)` - Whether or not the scaling policy is enabled.
2939
2940
  """
@@ -2941,7 +2942,7 @@ class GetScalingPoliciesPolicyResult(dict):
2941
2942
 
2942
2943
  @property
2943
2944
  @pulumi.getter
2944
- def id(self) -> str:
2945
+ def id(self) -> builtins.str:
2945
2946
  """
2946
2947
  `(string)` - The scaling policy ID.
2947
2948
  """
@@ -2949,7 +2950,7 @@ class GetScalingPoliciesPolicyResult(dict):
2949
2950
 
2950
2951
  @property
2951
2952
  @pulumi.getter
2952
- def target(self) -> Mapping[str, str]:
2953
+ def target(self) -> Mapping[str, builtins.str]:
2953
2954
  """
2954
2955
  `(map[string]string)` - The scaling policy target.
2955
2956
  """
@@ -2957,7 +2958,7 @@ class GetScalingPoliciesPolicyResult(dict):
2957
2958
 
2958
2959
  @property
2959
2960
  @pulumi.getter
2960
- def type(self) -> str:
2961
+ def type(self) -> builtins.str:
2961
2962
  """
2962
2963
  `(string)` - An optional string to filter scaling policies based on policy type. If not provided, policies of all types are returned.
2963
2964
  """