pulumi-vault 6.7.0a1743576047__py3-none-any.whl → 6.7.0a1744267302__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 (264) hide show
  1. pulumi_vault/__init__.py +1 -0
  2. pulumi_vault/_inputs.py +554 -553
  3. pulumi_vault/ad/__init__.py +1 -0
  4. pulumi_vault/ad/get_access_credentials.py +20 -19
  5. pulumi_vault/ad/secret_backend.py +477 -476
  6. pulumi_vault/ad/secret_library.py +99 -98
  7. pulumi_vault/ad/secret_role.py +85 -84
  8. pulumi_vault/alicloud/__init__.py +1 -0
  9. pulumi_vault/alicloud/auth_backend_role.py +183 -182
  10. pulumi_vault/approle/__init__.py +1 -0
  11. pulumi_vault/approle/auth_backend_login.py +106 -105
  12. pulumi_vault/approle/auth_backend_role.py +239 -238
  13. pulumi_vault/approle/auth_backend_role_secret_id.py +162 -161
  14. pulumi_vault/approle/get_auth_backend_role_id.py +18 -17
  15. pulumi_vault/audit.py +85 -84
  16. pulumi_vault/audit_request_header.py +43 -42
  17. pulumi_vault/auth_backend.py +106 -105
  18. pulumi_vault/aws/__init__.py +1 -0
  19. pulumi_vault/aws/auth_backend_cert.py +71 -70
  20. pulumi_vault/aws/auth_backend_client.py +253 -252
  21. pulumi_vault/aws/auth_backend_config_identity.py +85 -84
  22. pulumi_vault/aws/auth_backend_identity_whitelist.py +57 -56
  23. pulumi_vault/aws/auth_backend_login.py +209 -208
  24. pulumi_vault/aws/auth_backend_role.py +400 -399
  25. pulumi_vault/aws/auth_backend_role_tag.py +127 -126
  26. pulumi_vault/aws/auth_backend_roletag_blacklist.py +57 -56
  27. pulumi_vault/aws/auth_backend_sts_role.py +71 -70
  28. pulumi_vault/aws/get_access_credentials.py +44 -43
  29. pulumi_vault/aws/get_static_access_credentials.py +13 -12
  30. pulumi_vault/aws/secret_backend.py +337 -336
  31. pulumi_vault/aws/secret_backend_role.py +211 -210
  32. pulumi_vault/aws/secret_backend_static_role.py +113 -112
  33. pulumi_vault/azure/__init__.py +1 -0
  34. pulumi_vault/azure/_inputs.py +21 -20
  35. pulumi_vault/azure/auth_backend_config.py +183 -182
  36. pulumi_vault/azure/auth_backend_role.py +253 -252
  37. pulumi_vault/azure/backend.py +239 -238
  38. pulumi_vault/azure/backend_role.py +141 -140
  39. pulumi_vault/azure/get_access_credentials.py +58 -57
  40. pulumi_vault/azure/outputs.py +11 -10
  41. pulumi_vault/cert_auth_backend_role.py +365 -364
  42. pulumi_vault/config/__init__.py +1 -0
  43. pulumi_vault/config/__init__.pyi +1 -0
  44. pulumi_vault/config/_inputs.py +11 -10
  45. pulumi_vault/config/outputs.py +287 -286
  46. pulumi_vault/config/ui_custom_message.py +113 -112
  47. pulumi_vault/config/vars.py +1 -0
  48. pulumi_vault/consul/__init__.py +1 -0
  49. pulumi_vault/consul/secret_backend.py +197 -196
  50. pulumi_vault/consul/secret_backend_role.py +183 -182
  51. pulumi_vault/database/__init__.py +1 -0
  52. pulumi_vault/database/_inputs.py +2525 -2524
  53. pulumi_vault/database/outputs.py +1529 -1528
  54. pulumi_vault/database/secret_backend_connection.py +169 -168
  55. pulumi_vault/database/secret_backend_role.py +169 -168
  56. pulumi_vault/database/secret_backend_static_role.py +179 -178
  57. pulumi_vault/database/secrets_mount.py +267 -266
  58. pulumi_vault/egp_policy.py +71 -70
  59. pulumi_vault/gcp/__init__.py +1 -0
  60. pulumi_vault/gcp/_inputs.py +82 -81
  61. pulumi_vault/gcp/auth_backend.py +260 -259
  62. pulumi_vault/gcp/auth_backend_role.py +281 -280
  63. pulumi_vault/gcp/get_auth_backend_role.py +70 -69
  64. pulumi_vault/gcp/outputs.py +50 -49
  65. pulumi_vault/gcp/secret_backend.py +232 -231
  66. pulumi_vault/gcp/secret_impersonated_account.py +92 -91
  67. pulumi_vault/gcp/secret_roleset.py +92 -91
  68. pulumi_vault/gcp/secret_static_account.py +92 -91
  69. pulumi_vault/generic/__init__.py +1 -0
  70. pulumi_vault/generic/endpoint.py +113 -112
  71. pulumi_vault/generic/get_secret.py +28 -27
  72. pulumi_vault/generic/secret.py +78 -77
  73. pulumi_vault/get_auth_backend.py +19 -18
  74. pulumi_vault/get_auth_backends.py +14 -13
  75. pulumi_vault/get_namespace.py +15 -14
  76. pulumi_vault/get_namespaces.py +8 -7
  77. pulumi_vault/get_nomad_access_token.py +19 -18
  78. pulumi_vault/get_policy_document.py +6 -5
  79. pulumi_vault/get_raft_autopilot_state.py +18 -17
  80. pulumi_vault/github/__init__.py +1 -0
  81. pulumi_vault/github/_inputs.py +42 -41
  82. pulumi_vault/github/auth_backend.py +232 -231
  83. pulumi_vault/github/outputs.py +26 -25
  84. pulumi_vault/github/team.py +57 -56
  85. pulumi_vault/github/user.py +57 -56
  86. pulumi_vault/identity/__init__.py +1 -0
  87. pulumi_vault/identity/entity.py +85 -84
  88. pulumi_vault/identity/entity_alias.py +71 -70
  89. pulumi_vault/identity/entity_policies.py +64 -63
  90. pulumi_vault/identity/get_entity.py +43 -42
  91. pulumi_vault/identity/get_group.py +50 -49
  92. pulumi_vault/identity/get_oidc_client_creds.py +14 -13
  93. pulumi_vault/identity/get_oidc_openid_config.py +24 -23
  94. pulumi_vault/identity/get_oidc_public_keys.py +13 -12
  95. pulumi_vault/identity/group.py +141 -140
  96. pulumi_vault/identity/group_alias.py +57 -56
  97. pulumi_vault/identity/group_member_entity_ids.py +57 -56
  98. pulumi_vault/identity/group_member_group_ids.py +57 -56
  99. pulumi_vault/identity/group_policies.py +64 -63
  100. pulumi_vault/identity/mfa_duo.py +148 -147
  101. pulumi_vault/identity/mfa_login_enforcement.py +120 -119
  102. pulumi_vault/identity/mfa_okta.py +134 -133
  103. pulumi_vault/identity/mfa_pingid.py +127 -126
  104. pulumi_vault/identity/mfa_totp.py +176 -175
  105. pulumi_vault/identity/oidc.py +29 -28
  106. pulumi_vault/identity/oidc_assignment.py +57 -56
  107. pulumi_vault/identity/oidc_client.py +127 -126
  108. pulumi_vault/identity/oidc_key.py +85 -84
  109. pulumi_vault/identity/oidc_key_allowed_client_id.py +43 -42
  110. pulumi_vault/identity/oidc_provider.py +92 -91
  111. pulumi_vault/identity/oidc_role.py +85 -84
  112. pulumi_vault/identity/oidc_scope.py +57 -56
  113. pulumi_vault/identity/outputs.py +32 -31
  114. pulumi_vault/jwt/__init__.py +1 -0
  115. pulumi_vault/jwt/_inputs.py +42 -41
  116. pulumi_vault/jwt/auth_backend.py +288 -287
  117. pulumi_vault/jwt/auth_backend_role.py +407 -406
  118. pulumi_vault/jwt/outputs.py +26 -25
  119. pulumi_vault/kmip/__init__.py +1 -0
  120. pulumi_vault/kmip/secret_backend.py +183 -182
  121. pulumi_vault/kmip/secret_role.py +295 -294
  122. pulumi_vault/kmip/secret_scope.py +57 -56
  123. pulumi_vault/kubernetes/__init__.py +1 -0
  124. pulumi_vault/kubernetes/auth_backend_config.py +141 -140
  125. pulumi_vault/kubernetes/auth_backend_role.py +225 -224
  126. pulumi_vault/kubernetes/get_auth_backend_config.py +47 -46
  127. pulumi_vault/kubernetes/get_auth_backend_role.py +70 -69
  128. pulumi_vault/kubernetes/get_service_account_token.py +38 -37
  129. pulumi_vault/kubernetes/secret_backend.py +316 -315
  130. pulumi_vault/kubernetes/secret_backend_role.py +197 -196
  131. pulumi_vault/kv/__init__.py +1 -0
  132. pulumi_vault/kv/_inputs.py +21 -20
  133. pulumi_vault/kv/get_secret.py +17 -16
  134. pulumi_vault/kv/get_secret_subkeys_v2.py +30 -29
  135. pulumi_vault/kv/get_secret_v2.py +29 -28
  136. pulumi_vault/kv/get_secrets_list.py +13 -12
  137. pulumi_vault/kv/get_secrets_list_v2.py +19 -18
  138. pulumi_vault/kv/outputs.py +13 -12
  139. pulumi_vault/kv/secret.py +50 -49
  140. pulumi_vault/kv/secret_backend_v2.py +71 -70
  141. pulumi_vault/kv/secret_v2.py +134 -133
  142. pulumi_vault/ldap/__init__.py +1 -0
  143. pulumi_vault/ldap/auth_backend.py +588 -587
  144. pulumi_vault/ldap/auth_backend_group.py +57 -56
  145. pulumi_vault/ldap/auth_backend_user.py +71 -70
  146. pulumi_vault/ldap/get_dynamic_credentials.py +17 -16
  147. pulumi_vault/ldap/get_static_credentials.py +18 -17
  148. pulumi_vault/ldap/secret_backend.py +554 -553
  149. pulumi_vault/ldap/secret_backend_dynamic_role.py +127 -126
  150. pulumi_vault/ldap/secret_backend_library_set.py +99 -98
  151. pulumi_vault/ldap/secret_backend_static_role.py +99 -98
  152. pulumi_vault/managed/__init__.py +1 -0
  153. pulumi_vault/managed/_inputs.py +229 -228
  154. pulumi_vault/managed/keys.py +15 -14
  155. pulumi_vault/managed/outputs.py +139 -138
  156. pulumi_vault/mfa_duo.py +113 -112
  157. pulumi_vault/mfa_okta.py +113 -112
  158. pulumi_vault/mfa_pingid.py +120 -119
  159. pulumi_vault/mfa_totp.py +127 -126
  160. pulumi_vault/mongodbatlas/__init__.py +1 -0
  161. pulumi_vault/mongodbatlas/secret_backend.py +64 -63
  162. pulumi_vault/mongodbatlas/secret_role.py +155 -154
  163. pulumi_vault/mount.py +274 -273
  164. pulumi_vault/namespace.py +64 -63
  165. pulumi_vault/nomad_secret_backend.py +211 -210
  166. pulumi_vault/nomad_secret_role.py +85 -84
  167. pulumi_vault/okta/__init__.py +1 -0
  168. pulumi_vault/okta/_inputs.py +26 -25
  169. pulumi_vault/okta/auth_backend.py +274 -273
  170. pulumi_vault/okta/auth_backend_group.py +57 -56
  171. pulumi_vault/okta/auth_backend_user.py +71 -70
  172. pulumi_vault/okta/outputs.py +16 -15
  173. pulumi_vault/outputs.py +56 -55
  174. pulumi_vault/password_policy.py +43 -42
  175. pulumi_vault/pkisecret/__init__.py +1 -0
  176. pulumi_vault/pkisecret/_inputs.py +31 -30
  177. pulumi_vault/pkisecret/backend_acme_eab.py +92 -91
  178. pulumi_vault/pkisecret/backend_config_acme.py +141 -140
  179. pulumi_vault/pkisecret/backend_config_auto_tidy.py +323 -322
  180. pulumi_vault/pkisecret/backend_config_cluster.py +57 -56
  181. pulumi_vault/pkisecret/backend_config_cmpv2.py +106 -105
  182. pulumi_vault/pkisecret/backend_config_est.py +120 -119
  183. pulumi_vault/pkisecret/get_backend_cert_metadata.py +22 -21
  184. pulumi_vault/pkisecret/get_backend_config_cmpv2.py +22 -21
  185. pulumi_vault/pkisecret/get_backend_config_est.py +19 -18
  186. pulumi_vault/pkisecret/get_backend_issuer.py +45 -44
  187. pulumi_vault/pkisecret/get_backend_issuers.py +15 -14
  188. pulumi_vault/pkisecret/get_backend_key.py +20 -19
  189. pulumi_vault/pkisecret/get_backend_keys.py +15 -14
  190. pulumi_vault/pkisecret/outputs.py +28 -27
  191. pulumi_vault/pkisecret/secret_backend_cert.py +337 -336
  192. pulumi_vault/pkisecret/secret_backend_config_ca.py +43 -42
  193. pulumi_vault/pkisecret/secret_backend_config_issuers.py +57 -56
  194. pulumi_vault/pkisecret/secret_backend_config_urls.py +85 -84
  195. pulumi_vault/pkisecret/secret_backend_crl_config.py +197 -196
  196. pulumi_vault/pkisecret/secret_backend_intermediate_cert_request.py +421 -420
  197. pulumi_vault/pkisecret/secret_backend_intermediate_set_signed.py +57 -56
  198. pulumi_vault/pkisecret/secret_backend_issuer.py +232 -231
  199. pulumi_vault/pkisecret/secret_backend_key.py +120 -119
  200. pulumi_vault/pkisecret/secret_backend_role.py +715 -714
  201. pulumi_vault/pkisecret/secret_backend_root_cert.py +554 -553
  202. pulumi_vault/pkisecret/secret_backend_root_sign_intermediate.py +526 -525
  203. pulumi_vault/pkisecret/secret_backend_sign.py +281 -280
  204. pulumi_vault/plugin.py +127 -126
  205. pulumi_vault/plugin_pinned_version.py +43 -42
  206. pulumi_vault/policy.py +43 -42
  207. pulumi_vault/provider.py +120 -119
  208. pulumi_vault/pulumi-plugin.json +1 -1
  209. pulumi_vault/quota_lease_count.py +85 -84
  210. pulumi_vault/quota_rate_limit.py +113 -112
  211. pulumi_vault/rabbitmq/__init__.py +1 -0
  212. pulumi_vault/rabbitmq/_inputs.py +41 -40
  213. pulumi_vault/rabbitmq/outputs.py +25 -24
  214. pulumi_vault/rabbitmq/secret_backend.py +169 -168
  215. pulumi_vault/rabbitmq/secret_backend_role.py +57 -56
  216. pulumi_vault/raft_autopilot.py +113 -112
  217. pulumi_vault/raft_snapshot_agent_config.py +393 -392
  218. pulumi_vault/rgp_policy.py +57 -56
  219. pulumi_vault/saml/__init__.py +1 -0
  220. pulumi_vault/saml/auth_backend.py +155 -154
  221. pulumi_vault/saml/auth_backend_role.py +239 -238
  222. pulumi_vault/secrets/__init__.py +1 -0
  223. pulumi_vault/secrets/_inputs.py +16 -15
  224. pulumi_vault/secrets/outputs.py +10 -9
  225. pulumi_vault/secrets/sync_association.py +71 -70
  226. pulumi_vault/secrets/sync_aws_destination.py +148 -147
  227. pulumi_vault/secrets/sync_azure_destination.py +148 -147
  228. pulumi_vault/secrets/sync_config.py +43 -42
  229. pulumi_vault/secrets/sync_gcp_destination.py +106 -105
  230. pulumi_vault/secrets/sync_gh_destination.py +134 -133
  231. pulumi_vault/secrets/sync_github_apps.py +64 -63
  232. pulumi_vault/secrets/sync_vercel_destination.py +120 -119
  233. pulumi_vault/ssh/__init__.py +1 -0
  234. pulumi_vault/ssh/_inputs.py +11 -10
  235. pulumi_vault/ssh/get_secret_backend_sign.py +52 -51
  236. pulumi_vault/ssh/outputs.py +7 -6
  237. pulumi_vault/ssh/secret_backend_ca.py +99 -98
  238. pulumi_vault/ssh/secret_backend_role.py +365 -364
  239. pulumi_vault/terraformcloud/__init__.py +1 -0
  240. pulumi_vault/terraformcloud/secret_backend.py +111 -110
  241. pulumi_vault/terraformcloud/secret_creds.py +74 -73
  242. pulumi_vault/terraformcloud/secret_role.py +93 -92
  243. pulumi_vault/token.py +246 -245
  244. pulumi_vault/tokenauth/__init__.py +1 -0
  245. pulumi_vault/tokenauth/auth_backend_role.py +267 -266
  246. pulumi_vault/transform/__init__.py +1 -0
  247. pulumi_vault/transform/alphabet.py +57 -56
  248. pulumi_vault/transform/get_decode.py +47 -46
  249. pulumi_vault/transform/get_encode.py +47 -46
  250. pulumi_vault/transform/role.py +57 -56
  251. pulumi_vault/transform/template.py +113 -112
  252. pulumi_vault/transform/transformation.py +141 -140
  253. pulumi_vault/transit/__init__.py +1 -0
  254. pulumi_vault/transit/get_decrypt.py +18 -17
  255. pulumi_vault/transit/get_encrypt.py +21 -20
  256. pulumi_vault/transit/get_sign.py +54 -53
  257. pulumi_vault/transit/get_verify.py +60 -59
  258. pulumi_vault/transit/secret_backend_key.py +274 -273
  259. pulumi_vault/transit/secret_cache_config.py +43 -42
  260. {pulumi_vault-6.7.0a1743576047.dist-info → pulumi_vault-6.7.0a1744267302.dist-info}/METADATA +1 -1
  261. pulumi_vault-6.7.0a1744267302.dist-info/RECORD +265 -0
  262. pulumi_vault-6.7.0a1743576047.dist-info/RECORD +0 -265
  263. {pulumi_vault-6.7.0a1743576047.dist-info → pulumi_vault-6.7.0a1744267302.dist-info}/WHEEL +0 -0
  264. {pulumi_vault-6.7.0a1743576047.dist-info → pulumi_vault-6.7.0a1744267302.dist-info}/top_level.txt +0 -0
@@ -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
@@ -19,14 +20,14 @@ __all__ = ['SecretBackendConfigCaArgs', 'SecretBackendConfigCa']
19
20
  @pulumi.input_type
20
21
  class SecretBackendConfigCaArgs:
21
22
  def __init__(__self__, *,
22
- backend: pulumi.Input[str],
23
- pem_bundle: pulumi.Input[str],
24
- namespace: Optional[pulumi.Input[str]] = None):
23
+ backend: pulumi.Input[builtins.str],
24
+ pem_bundle: pulumi.Input[builtins.str],
25
+ namespace: Optional[pulumi.Input[builtins.str]] = None):
25
26
  """
26
27
  The set of arguments for constructing a SecretBackendConfigCa resource.
27
- :param pulumi.Input[str] backend: The PKI secret backend the resource belongs to.
28
- :param pulumi.Input[str] pem_bundle: The key and certificate PEM bundle
29
- :param pulumi.Input[str] namespace: The namespace to provision the resource in.
28
+ :param pulumi.Input[builtins.str] backend: The PKI secret backend the resource belongs to.
29
+ :param pulumi.Input[builtins.str] pem_bundle: The key and certificate PEM bundle
30
+ :param pulumi.Input[builtins.str] namespace: The namespace to provision the resource in.
30
31
  The value should not contain leading or trailing forward slashes.
31
32
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
32
33
  *Available only for Vault Enterprise*.
@@ -38,31 +39,31 @@ class SecretBackendConfigCaArgs:
38
39
 
39
40
  @property
40
41
  @pulumi.getter
41
- def backend(self) -> pulumi.Input[str]:
42
+ def backend(self) -> pulumi.Input[builtins.str]:
42
43
  """
43
44
  The PKI secret backend the resource belongs to.
44
45
  """
45
46
  return pulumi.get(self, "backend")
46
47
 
47
48
  @backend.setter
48
- def backend(self, value: pulumi.Input[str]):
49
+ def backend(self, value: pulumi.Input[builtins.str]):
49
50
  pulumi.set(self, "backend", value)
50
51
 
51
52
  @property
52
53
  @pulumi.getter(name="pemBundle")
53
- def pem_bundle(self) -> pulumi.Input[str]:
54
+ def pem_bundle(self) -> pulumi.Input[builtins.str]:
54
55
  """
55
56
  The key and certificate PEM bundle
56
57
  """
57
58
  return pulumi.get(self, "pem_bundle")
58
59
 
59
60
  @pem_bundle.setter
60
- def pem_bundle(self, value: pulumi.Input[str]):
61
+ def pem_bundle(self, value: pulumi.Input[builtins.str]):
61
62
  pulumi.set(self, "pem_bundle", value)
62
63
 
63
64
  @property
64
65
  @pulumi.getter
65
- def namespace(self) -> Optional[pulumi.Input[str]]:
66
+ def namespace(self) -> Optional[pulumi.Input[builtins.str]]:
66
67
  """
67
68
  The namespace to provision the resource in.
68
69
  The value should not contain leading or trailing forward slashes.
@@ -72,24 +73,24 @@ class SecretBackendConfigCaArgs:
72
73
  return pulumi.get(self, "namespace")
73
74
 
74
75
  @namespace.setter
75
- def namespace(self, value: Optional[pulumi.Input[str]]):
76
+ def namespace(self, value: Optional[pulumi.Input[builtins.str]]):
76
77
  pulumi.set(self, "namespace", value)
77
78
 
78
79
 
79
80
  @pulumi.input_type
80
81
  class _SecretBackendConfigCaState:
81
82
  def __init__(__self__, *,
82
- backend: Optional[pulumi.Input[str]] = None,
83
- namespace: Optional[pulumi.Input[str]] = None,
84
- pem_bundle: Optional[pulumi.Input[str]] = None):
83
+ backend: Optional[pulumi.Input[builtins.str]] = None,
84
+ namespace: Optional[pulumi.Input[builtins.str]] = None,
85
+ pem_bundle: Optional[pulumi.Input[builtins.str]] = None):
85
86
  """
86
87
  Input properties used for looking up and filtering SecretBackendConfigCa resources.
87
- :param pulumi.Input[str] backend: The PKI secret backend the resource belongs to.
88
- :param pulumi.Input[str] namespace: The namespace to provision the resource in.
88
+ :param pulumi.Input[builtins.str] backend: The PKI secret backend the resource belongs to.
89
+ :param pulumi.Input[builtins.str] namespace: The namespace to provision the resource in.
89
90
  The value should not contain leading or trailing forward slashes.
90
91
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
91
92
  *Available only for Vault Enterprise*.
92
- :param pulumi.Input[str] pem_bundle: The key and certificate PEM bundle
93
+ :param pulumi.Input[builtins.str] pem_bundle: The key and certificate PEM bundle
93
94
  """
94
95
  if backend is not None:
95
96
  pulumi.set(__self__, "backend", backend)
@@ -100,19 +101,19 @@ class _SecretBackendConfigCaState:
100
101
 
101
102
  @property
102
103
  @pulumi.getter
103
- def backend(self) -> Optional[pulumi.Input[str]]:
104
+ def backend(self) -> Optional[pulumi.Input[builtins.str]]:
104
105
  """
105
106
  The PKI secret backend the resource belongs to.
106
107
  """
107
108
  return pulumi.get(self, "backend")
108
109
 
109
110
  @backend.setter
110
- def backend(self, value: Optional[pulumi.Input[str]]):
111
+ def backend(self, value: Optional[pulumi.Input[builtins.str]]):
111
112
  pulumi.set(self, "backend", value)
112
113
 
113
114
  @property
114
115
  @pulumi.getter
115
- def namespace(self) -> Optional[pulumi.Input[str]]:
116
+ def namespace(self) -> Optional[pulumi.Input[builtins.str]]:
116
117
  """
117
118
  The namespace to provision the resource in.
118
119
  The value should not contain leading or trailing forward slashes.
@@ -122,19 +123,19 @@ class _SecretBackendConfigCaState:
122
123
  return pulumi.get(self, "namespace")
123
124
 
124
125
  @namespace.setter
125
- def namespace(self, value: Optional[pulumi.Input[str]]):
126
+ def namespace(self, value: Optional[pulumi.Input[builtins.str]]):
126
127
  pulumi.set(self, "namespace", value)
127
128
 
128
129
  @property
129
130
  @pulumi.getter(name="pemBundle")
130
- def pem_bundle(self) -> Optional[pulumi.Input[str]]:
131
+ def pem_bundle(self) -> Optional[pulumi.Input[builtins.str]]:
131
132
  """
132
133
  The key and certificate PEM bundle
133
134
  """
134
135
  return pulumi.get(self, "pem_bundle")
135
136
 
136
137
  @pem_bundle.setter
137
- def pem_bundle(self, value: Optional[pulumi.Input[str]]):
138
+ def pem_bundle(self, value: Optional[pulumi.Input[builtins.str]]):
138
139
  pulumi.set(self, "pem_bundle", value)
139
140
 
140
141
 
@@ -143,9 +144,9 @@ class SecretBackendConfigCa(pulumi.CustomResource):
143
144
  def __init__(__self__,
144
145
  resource_name: str,
145
146
  opts: Optional[pulumi.ResourceOptions] = None,
146
- backend: Optional[pulumi.Input[str]] = None,
147
- namespace: Optional[pulumi.Input[str]] = None,
148
- pem_bundle: Optional[pulumi.Input[str]] = None,
147
+ backend: Optional[pulumi.Input[builtins.str]] = None,
148
+ namespace: Optional[pulumi.Input[builtins.str]] = None,
149
+ pem_bundle: Optional[pulumi.Input[builtins.str]] = None,
149
150
  __props__=None):
150
151
  """
151
152
  ## Example Usage
@@ -210,12 +211,12 @@ class SecretBackendConfigCa(pulumi.CustomResource):
210
211
 
211
212
  :param str resource_name: The name of the resource.
212
213
  :param pulumi.ResourceOptions opts: Options for the resource.
213
- :param pulumi.Input[str] backend: The PKI secret backend the resource belongs to.
214
- :param pulumi.Input[str] namespace: The namespace to provision the resource in.
214
+ :param pulumi.Input[builtins.str] backend: The PKI secret backend the resource belongs to.
215
+ :param pulumi.Input[builtins.str] namespace: The namespace to provision the resource in.
215
216
  The value should not contain leading or trailing forward slashes.
216
217
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
217
218
  *Available only for Vault Enterprise*.
218
- :param pulumi.Input[str] pem_bundle: The key and certificate PEM bundle
219
+ :param pulumi.Input[builtins.str] pem_bundle: The key and certificate PEM bundle
219
220
  """
220
221
  ...
221
222
  @overload
@@ -299,9 +300,9 @@ class SecretBackendConfigCa(pulumi.CustomResource):
299
300
  def _internal_init(__self__,
300
301
  resource_name: str,
301
302
  opts: Optional[pulumi.ResourceOptions] = None,
302
- backend: Optional[pulumi.Input[str]] = None,
303
- namespace: Optional[pulumi.Input[str]] = None,
304
- pem_bundle: Optional[pulumi.Input[str]] = None,
303
+ backend: Optional[pulumi.Input[builtins.str]] = None,
304
+ namespace: Optional[pulumi.Input[builtins.str]] = None,
305
+ pem_bundle: Optional[pulumi.Input[builtins.str]] = None,
305
306
  __props__=None):
306
307
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
307
308
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -330,9 +331,9 @@ class SecretBackendConfigCa(pulumi.CustomResource):
330
331
  def get(resource_name: str,
331
332
  id: pulumi.Input[str],
332
333
  opts: Optional[pulumi.ResourceOptions] = None,
333
- backend: Optional[pulumi.Input[str]] = None,
334
- namespace: Optional[pulumi.Input[str]] = None,
335
- pem_bundle: Optional[pulumi.Input[str]] = None) -> 'SecretBackendConfigCa':
334
+ backend: Optional[pulumi.Input[builtins.str]] = None,
335
+ namespace: Optional[pulumi.Input[builtins.str]] = None,
336
+ pem_bundle: Optional[pulumi.Input[builtins.str]] = None) -> 'SecretBackendConfigCa':
336
337
  """
337
338
  Get an existing SecretBackendConfigCa resource's state with the given name, id, and optional extra
338
339
  properties used to qualify the lookup.
@@ -340,12 +341,12 @@ class SecretBackendConfigCa(pulumi.CustomResource):
340
341
  :param str resource_name: The unique name of the resulting resource.
341
342
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
342
343
  :param pulumi.ResourceOptions opts: Options for the resource.
343
- :param pulumi.Input[str] backend: The PKI secret backend the resource belongs to.
344
- :param pulumi.Input[str] namespace: The namespace to provision the resource in.
344
+ :param pulumi.Input[builtins.str] backend: The PKI secret backend the resource belongs to.
345
+ :param pulumi.Input[builtins.str] namespace: The namespace to provision the resource in.
345
346
  The value should not contain leading or trailing forward slashes.
346
347
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
347
348
  *Available only for Vault Enterprise*.
348
- :param pulumi.Input[str] pem_bundle: The key and certificate PEM bundle
349
+ :param pulumi.Input[builtins.str] pem_bundle: The key and certificate PEM bundle
349
350
  """
350
351
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
351
352
 
@@ -358,7 +359,7 @@ class SecretBackendConfigCa(pulumi.CustomResource):
358
359
 
359
360
  @property
360
361
  @pulumi.getter
361
- def backend(self) -> pulumi.Output[str]:
362
+ def backend(self) -> pulumi.Output[builtins.str]:
362
363
  """
363
364
  The PKI secret backend the resource belongs to.
364
365
  """
@@ -366,7 +367,7 @@ class SecretBackendConfigCa(pulumi.CustomResource):
366
367
 
367
368
  @property
368
369
  @pulumi.getter
369
- def namespace(self) -> pulumi.Output[Optional[str]]:
370
+ def namespace(self) -> pulumi.Output[Optional[builtins.str]]:
370
371
  """
371
372
  The namespace to provision the resource in.
372
373
  The value should not contain leading or trailing forward slashes.
@@ -377,7 +378,7 @@ class SecretBackendConfigCa(pulumi.CustomResource):
377
378
 
378
379
  @property
379
380
  @pulumi.getter(name="pemBundle")
380
- def pem_bundle(self) -> pulumi.Output[str]:
381
+ def pem_bundle(self) -> pulumi.Output[builtins.str]:
381
382
  """
382
383
  The key and certificate PEM bundle
383
384
  """
@@ -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
@@ -19,18 +20,18 @@ __all__ = ['SecretBackendConfigIssuersArgs', 'SecretBackendConfigIssuers']
19
20
  @pulumi.input_type
20
21
  class SecretBackendConfigIssuersArgs:
21
22
  def __init__(__self__, *,
22
- backend: pulumi.Input[str],
23
- default: Optional[pulumi.Input[str]] = None,
24
- default_follows_latest_issuer: Optional[pulumi.Input[bool]] = None,
25
- namespace: Optional[pulumi.Input[str]] = None):
23
+ backend: pulumi.Input[builtins.str],
24
+ default: Optional[pulumi.Input[builtins.str]] = None,
25
+ default_follows_latest_issuer: Optional[pulumi.Input[builtins.bool]] = None,
26
+ namespace: Optional[pulumi.Input[builtins.str]] = None):
26
27
  """
27
28
  The set of arguments for constructing a SecretBackendConfigIssuers resource.
28
- :param pulumi.Input[str] backend: The path the PKI secret backend is mounted at, with no
29
+ :param pulumi.Input[builtins.str] backend: The path the PKI secret backend is mounted at, with no
29
30
  leading or trailing `/`s.
30
- :param pulumi.Input[str] default: Specifies the default issuer by ID.
31
- :param pulumi.Input[bool] default_follows_latest_issuer: Specifies whether a root creation
31
+ :param pulumi.Input[builtins.str] default: Specifies the default issuer by ID.
32
+ :param pulumi.Input[builtins.bool] default_follows_latest_issuer: Specifies whether a root creation
32
33
  or an issuer import operation updates the default issuer to the newly added issuer.
33
- :param pulumi.Input[str] namespace: The namespace to provision the resource in.
34
+ :param pulumi.Input[builtins.str] namespace: The namespace to provision the resource in.
34
35
  The value should not contain leading or trailing forward slashes.
35
36
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
36
37
  *Available only for Vault Enterprise*.
@@ -45,7 +46,7 @@ class SecretBackendConfigIssuersArgs:
45
46
 
46
47
  @property
47
48
  @pulumi.getter
48
- def backend(self) -> pulumi.Input[str]:
49
+ def backend(self) -> pulumi.Input[builtins.str]:
49
50
  """
50
51
  The path the PKI secret backend is mounted at, with no
51
52
  leading or trailing `/`s.
@@ -53,24 +54,24 @@ class SecretBackendConfigIssuersArgs:
53
54
  return pulumi.get(self, "backend")
54
55
 
55
56
  @backend.setter
56
- def backend(self, value: pulumi.Input[str]):
57
+ def backend(self, value: pulumi.Input[builtins.str]):
57
58
  pulumi.set(self, "backend", value)
58
59
 
59
60
  @property
60
61
  @pulumi.getter
61
- def default(self) -> Optional[pulumi.Input[str]]:
62
+ def default(self) -> Optional[pulumi.Input[builtins.str]]:
62
63
  """
63
64
  Specifies the default issuer by ID.
64
65
  """
65
66
  return pulumi.get(self, "default")
66
67
 
67
68
  @default.setter
68
- def default(self, value: Optional[pulumi.Input[str]]):
69
+ def default(self, value: Optional[pulumi.Input[builtins.str]]):
69
70
  pulumi.set(self, "default", value)
70
71
 
71
72
  @property
72
73
  @pulumi.getter(name="defaultFollowsLatestIssuer")
73
- def default_follows_latest_issuer(self) -> Optional[pulumi.Input[bool]]:
74
+ def default_follows_latest_issuer(self) -> Optional[pulumi.Input[builtins.bool]]:
74
75
  """
75
76
  Specifies whether a root creation
76
77
  or an issuer import operation updates the default issuer to the newly added issuer.
@@ -78,12 +79,12 @@ class SecretBackendConfigIssuersArgs:
78
79
  return pulumi.get(self, "default_follows_latest_issuer")
79
80
 
80
81
  @default_follows_latest_issuer.setter
81
- def default_follows_latest_issuer(self, value: Optional[pulumi.Input[bool]]):
82
+ def default_follows_latest_issuer(self, value: Optional[pulumi.Input[builtins.bool]]):
82
83
  pulumi.set(self, "default_follows_latest_issuer", value)
83
84
 
84
85
  @property
85
86
  @pulumi.getter
86
- def namespace(self) -> Optional[pulumi.Input[str]]:
87
+ def namespace(self) -> Optional[pulumi.Input[builtins.str]]:
87
88
  """
88
89
  The namespace to provision the resource in.
89
90
  The value should not contain leading or trailing forward slashes.
@@ -93,25 +94,25 @@ class SecretBackendConfigIssuersArgs:
93
94
  return pulumi.get(self, "namespace")
94
95
 
95
96
  @namespace.setter
96
- def namespace(self, value: Optional[pulumi.Input[str]]):
97
+ def namespace(self, value: Optional[pulumi.Input[builtins.str]]):
97
98
  pulumi.set(self, "namespace", value)
98
99
 
99
100
 
100
101
  @pulumi.input_type
101
102
  class _SecretBackendConfigIssuersState:
102
103
  def __init__(__self__, *,
103
- backend: Optional[pulumi.Input[str]] = None,
104
- default: Optional[pulumi.Input[str]] = None,
105
- default_follows_latest_issuer: Optional[pulumi.Input[bool]] = None,
106
- namespace: Optional[pulumi.Input[str]] = None):
104
+ backend: Optional[pulumi.Input[builtins.str]] = None,
105
+ default: Optional[pulumi.Input[builtins.str]] = None,
106
+ default_follows_latest_issuer: Optional[pulumi.Input[builtins.bool]] = None,
107
+ namespace: Optional[pulumi.Input[builtins.str]] = None):
107
108
  """
108
109
  Input properties used for looking up and filtering SecretBackendConfigIssuers resources.
109
- :param pulumi.Input[str] backend: The path the PKI secret backend is mounted at, with no
110
+ :param pulumi.Input[builtins.str] backend: The path the PKI secret backend is mounted at, with no
110
111
  leading or trailing `/`s.
111
- :param pulumi.Input[str] default: Specifies the default issuer by ID.
112
- :param pulumi.Input[bool] default_follows_latest_issuer: Specifies whether a root creation
112
+ :param pulumi.Input[builtins.str] default: Specifies the default issuer by ID.
113
+ :param pulumi.Input[builtins.bool] default_follows_latest_issuer: Specifies whether a root creation
113
114
  or an issuer import operation updates the default issuer to the newly added issuer.
114
- :param pulumi.Input[str] namespace: The namespace to provision the resource in.
115
+ :param pulumi.Input[builtins.str] namespace: The namespace to provision the resource in.
115
116
  The value should not contain leading or trailing forward slashes.
116
117
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
117
118
  *Available only for Vault Enterprise*.
@@ -127,7 +128,7 @@ class _SecretBackendConfigIssuersState:
127
128
 
128
129
  @property
129
130
  @pulumi.getter
130
- def backend(self) -> Optional[pulumi.Input[str]]:
131
+ def backend(self) -> Optional[pulumi.Input[builtins.str]]:
131
132
  """
132
133
  The path the PKI secret backend is mounted at, with no
133
134
  leading or trailing `/`s.
@@ -135,24 +136,24 @@ class _SecretBackendConfigIssuersState:
135
136
  return pulumi.get(self, "backend")
136
137
 
137
138
  @backend.setter
138
- def backend(self, value: Optional[pulumi.Input[str]]):
139
+ def backend(self, value: Optional[pulumi.Input[builtins.str]]):
139
140
  pulumi.set(self, "backend", value)
140
141
 
141
142
  @property
142
143
  @pulumi.getter
143
- def default(self) -> Optional[pulumi.Input[str]]:
144
+ def default(self) -> Optional[pulumi.Input[builtins.str]]:
144
145
  """
145
146
  Specifies the default issuer by ID.
146
147
  """
147
148
  return pulumi.get(self, "default")
148
149
 
149
150
  @default.setter
150
- def default(self, value: Optional[pulumi.Input[str]]):
151
+ def default(self, value: Optional[pulumi.Input[builtins.str]]):
151
152
  pulumi.set(self, "default", value)
152
153
 
153
154
  @property
154
155
  @pulumi.getter(name="defaultFollowsLatestIssuer")
155
- def default_follows_latest_issuer(self) -> Optional[pulumi.Input[bool]]:
156
+ def default_follows_latest_issuer(self) -> Optional[pulumi.Input[builtins.bool]]:
156
157
  """
157
158
  Specifies whether a root creation
158
159
  or an issuer import operation updates the default issuer to the newly added issuer.
@@ -160,12 +161,12 @@ class _SecretBackendConfigIssuersState:
160
161
  return pulumi.get(self, "default_follows_latest_issuer")
161
162
 
162
163
  @default_follows_latest_issuer.setter
163
- def default_follows_latest_issuer(self, value: Optional[pulumi.Input[bool]]):
164
+ def default_follows_latest_issuer(self, value: Optional[pulumi.Input[builtins.bool]]):
164
165
  pulumi.set(self, "default_follows_latest_issuer", value)
165
166
 
166
167
  @property
167
168
  @pulumi.getter
168
- def namespace(self) -> Optional[pulumi.Input[str]]:
169
+ def namespace(self) -> Optional[pulumi.Input[builtins.str]]:
169
170
  """
170
171
  The namespace to provision the resource in.
171
172
  The value should not contain leading or trailing forward slashes.
@@ -175,7 +176,7 @@ class _SecretBackendConfigIssuersState:
175
176
  return pulumi.get(self, "namespace")
176
177
 
177
178
  @namespace.setter
178
- def namespace(self, value: Optional[pulumi.Input[str]]):
179
+ def namespace(self, value: Optional[pulumi.Input[builtins.str]]):
179
180
  pulumi.set(self, "namespace", value)
180
181
 
181
182
 
@@ -184,10 +185,10 @@ class SecretBackendConfigIssuers(pulumi.CustomResource):
184
185
  def __init__(__self__,
185
186
  resource_name: str,
186
187
  opts: Optional[pulumi.ResourceOptions] = None,
187
- backend: Optional[pulumi.Input[str]] = None,
188
- default: Optional[pulumi.Input[str]] = None,
189
- default_follows_latest_issuer: Optional[pulumi.Input[bool]] = None,
190
- namespace: Optional[pulumi.Input[str]] = None,
188
+ backend: Optional[pulumi.Input[builtins.str]] = None,
189
+ default: Optional[pulumi.Input[builtins.str]] = None,
190
+ default_follows_latest_issuer: Optional[pulumi.Input[builtins.bool]] = None,
191
+ namespace: Optional[pulumi.Input[builtins.str]] = None,
191
192
  __props__=None):
192
193
  """
193
194
  ## Example Usage
@@ -226,12 +227,12 @@ class SecretBackendConfigIssuers(pulumi.CustomResource):
226
227
 
227
228
  :param str resource_name: The name of the resource.
228
229
  :param pulumi.ResourceOptions opts: Options for the resource.
229
- :param pulumi.Input[str] backend: The path the PKI secret backend is mounted at, with no
230
+ :param pulumi.Input[builtins.str] backend: The path the PKI secret backend is mounted at, with no
230
231
  leading or trailing `/`s.
231
- :param pulumi.Input[str] default: Specifies the default issuer by ID.
232
- :param pulumi.Input[bool] default_follows_latest_issuer: Specifies whether a root creation
232
+ :param pulumi.Input[builtins.str] default: Specifies the default issuer by ID.
233
+ :param pulumi.Input[builtins.bool] default_follows_latest_issuer: Specifies whether a root creation
233
234
  or an issuer import operation updates the default issuer to the newly added issuer.
234
- :param pulumi.Input[str] namespace: The namespace to provision the resource in.
235
+ :param pulumi.Input[builtins.str] namespace: The namespace to provision the resource in.
235
236
  The value should not contain leading or trailing forward slashes.
236
237
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
237
238
  *Available only for Vault Enterprise*.
@@ -292,10 +293,10 @@ class SecretBackendConfigIssuers(pulumi.CustomResource):
292
293
  def _internal_init(__self__,
293
294
  resource_name: str,
294
295
  opts: Optional[pulumi.ResourceOptions] = None,
295
- backend: Optional[pulumi.Input[str]] = None,
296
- default: Optional[pulumi.Input[str]] = None,
297
- default_follows_latest_issuer: Optional[pulumi.Input[bool]] = None,
298
- namespace: Optional[pulumi.Input[str]] = None,
296
+ backend: Optional[pulumi.Input[builtins.str]] = None,
297
+ default: Optional[pulumi.Input[builtins.str]] = None,
298
+ default_follows_latest_issuer: Optional[pulumi.Input[builtins.bool]] = None,
299
+ namespace: Optional[pulumi.Input[builtins.str]] = None,
299
300
  __props__=None):
300
301
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
301
302
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -321,10 +322,10 @@ class SecretBackendConfigIssuers(pulumi.CustomResource):
321
322
  def get(resource_name: str,
322
323
  id: pulumi.Input[str],
323
324
  opts: Optional[pulumi.ResourceOptions] = None,
324
- backend: Optional[pulumi.Input[str]] = None,
325
- default: Optional[pulumi.Input[str]] = None,
326
- default_follows_latest_issuer: Optional[pulumi.Input[bool]] = None,
327
- namespace: Optional[pulumi.Input[str]] = None) -> 'SecretBackendConfigIssuers':
325
+ backend: Optional[pulumi.Input[builtins.str]] = None,
326
+ default: Optional[pulumi.Input[builtins.str]] = None,
327
+ default_follows_latest_issuer: Optional[pulumi.Input[builtins.bool]] = None,
328
+ namespace: Optional[pulumi.Input[builtins.str]] = None) -> 'SecretBackendConfigIssuers':
328
329
  """
329
330
  Get an existing SecretBackendConfigIssuers resource's state with the given name, id, and optional extra
330
331
  properties used to qualify the lookup.
@@ -332,12 +333,12 @@ class SecretBackendConfigIssuers(pulumi.CustomResource):
332
333
  :param str resource_name: The unique name of the resulting resource.
333
334
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
334
335
  :param pulumi.ResourceOptions opts: Options for the resource.
335
- :param pulumi.Input[str] backend: The path the PKI secret backend is mounted at, with no
336
+ :param pulumi.Input[builtins.str] backend: The path the PKI secret backend is mounted at, with no
336
337
  leading or trailing `/`s.
337
- :param pulumi.Input[str] default: Specifies the default issuer by ID.
338
- :param pulumi.Input[bool] default_follows_latest_issuer: Specifies whether a root creation
338
+ :param pulumi.Input[builtins.str] default: Specifies the default issuer by ID.
339
+ :param pulumi.Input[builtins.bool] default_follows_latest_issuer: Specifies whether a root creation
339
340
  or an issuer import operation updates the default issuer to the newly added issuer.
340
- :param pulumi.Input[str] namespace: The namespace to provision the resource in.
341
+ :param pulumi.Input[builtins.str] namespace: The namespace to provision the resource in.
341
342
  The value should not contain leading or trailing forward slashes.
342
343
  The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
343
344
  *Available only for Vault Enterprise*.
@@ -354,7 +355,7 @@ class SecretBackendConfigIssuers(pulumi.CustomResource):
354
355
 
355
356
  @property
356
357
  @pulumi.getter
357
- def backend(self) -> pulumi.Output[str]:
358
+ def backend(self) -> pulumi.Output[builtins.str]:
358
359
  """
359
360
  The path the PKI secret backend is mounted at, with no
360
361
  leading or trailing `/`s.
@@ -363,7 +364,7 @@ class SecretBackendConfigIssuers(pulumi.CustomResource):
363
364
 
364
365
  @property
365
366
  @pulumi.getter
366
- def default(self) -> pulumi.Output[Optional[str]]:
367
+ def default(self) -> pulumi.Output[Optional[builtins.str]]:
367
368
  """
368
369
  Specifies the default issuer by ID.
369
370
  """
@@ -371,7 +372,7 @@ class SecretBackendConfigIssuers(pulumi.CustomResource):
371
372
 
372
373
  @property
373
374
  @pulumi.getter(name="defaultFollowsLatestIssuer")
374
- def default_follows_latest_issuer(self) -> pulumi.Output[bool]:
375
+ def default_follows_latest_issuer(self) -> pulumi.Output[builtins.bool]:
375
376
  """
376
377
  Specifies whether a root creation
377
378
  or an issuer import operation updates the default issuer to the newly added issuer.
@@ -380,7 +381,7 @@ class SecretBackendConfigIssuers(pulumi.CustomResource):
380
381
 
381
382
  @property
382
383
  @pulumi.getter
383
- def namespace(self) -> pulumi.Output[Optional[str]]:
384
+ def namespace(self) -> pulumi.Output[Optional[builtins.str]]:
384
385
  """
385
386
  The namespace to provision the resource in.
386
387
  The value should not contain leading or trailing forward slashes.