You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:param type_: (Optional.) See the `Secret.Type` enum for a description of values. If not specified, the type is `Opaque`.
81
82
:param path: (Optional.) Location of the secret in the directory structure. If not specified, the path is `/`.
82
83
:param ephemeral_policy: (Optional.) Policy that defines whether/when a secret's versions expire. By default, the policy is applied to all the secret's versions.
84
+
:param key_id: (Optional.) The Scaleway's Key Manager key ID will be used to encrypt and decrypt secret versions. If not specified, the Secret Manager will use an internal key.
Copy file name to clipboardExpand all lines: scaleway-async/scaleway_async/secret/v1beta1/types.py
+10
Original file line number
Diff line number
Diff line change
@@ -303,6 +303,11 @@ class Secret:
303
303
Returns the time at which deletion was requested.
304
304
"""
305
305
306
+
key_id: Optional[str]
307
+
"""
308
+
(Optional.) The Scaleway's Key Manager key ID used to encrypt and decrypt secret versions.
309
+
"""
310
+
306
311
307
312
@dataclass
308
313
classAccessSecretVersionByPathRequest:
@@ -514,6 +519,11 @@ class CreateSecretRequest:
514
519
(Optional.) Policy that defines whether/when a secret's versions expire. By default, the policy is applied to all the secret's versions.
515
520
"""
516
521
522
+
key_id: Optional[str]
523
+
"""
524
+
(Optional.) The Scaleway's Key Manager key ID will be used to encrypt and decrypt secret versions. If not specified, the Secret Manager will use an internal key.
:param type_: (Optional.) See the `Secret.Type` enum for a description of values. If not specified, the type is `Opaque`.
81
82
:param path: (Optional.) Location of the secret in the directory structure. If not specified, the path is `/`.
82
83
:param ephemeral_policy: (Optional.) Policy that defines whether/when a secret's versions expire. By default, the policy is applied to all the secret's versions.
84
+
:param key_id: (Optional.) The Scaleway's Key Manager key ID will be used to encrypt and decrypt secret versions. If not specified, the Secret Manager will use an internal key.
Copy file name to clipboardExpand all lines: scaleway/scaleway/secret/v1beta1/types.py
+10
Original file line number
Diff line number
Diff line change
@@ -303,6 +303,11 @@ class Secret:
303
303
Returns the time at which deletion was requested.
304
304
"""
305
305
306
+
key_id: Optional[str]
307
+
"""
308
+
(Optional.) The Scaleway's Key Manager key ID used to encrypt and decrypt secret versions.
309
+
"""
310
+
306
311
307
312
@dataclass
308
313
classAccessSecretVersionByPathRequest:
@@ -514,6 +519,11 @@ class CreateSecretRequest:
514
519
(Optional.) Policy that defines whether/when a secret's versions expire. By default, the policy is applied to all the secret's versions.
515
520
"""
516
521
522
+
key_id: Optional[str]
523
+
"""
524
+
(Optional.) The Scaleway's Key Manager key ID will be used to encrypt and decrypt secret versions. If not specified, the Secret Manager will use an internal key.
0 commit comments