secrets¶
Secrets 资源的模型和管理器。
- class Secret(attrs: Mapping[str, Any] | None = None, client: APIClient | None = None, collection: Manager | None = None)[source]¶
-
在 Podman 服务中注册的密钥的详细信息和配置。
初始化 PodmanResource 的基类。
- 参数:
attrs – 来自 Podman 服务的资源属性映射。
client – 配置连接到 Podman 服务。
collection – 此类资源的管理器,出于兼容性考虑命名为 collection
- reload() None ¶
从服务刷新此对象的數據。
- remove(all: bool | None = None)[source]¶
删除密钥。
- 参数:
all – 为 True 时,删除所有密钥。
- 引发:
NotFound – 密钥不存在时
APIError – 服务返回错误时
- property id¶
返回对象的标识符。
- 类型:
str
- property name¶
密钥的名称。
- 类型:
str
- property short_id¶
返回截断的标识符。'sha256' 在包含在 id 中时会保留。
不会尝试确保返回值对所有资源在语义上都有意义。
- 类型:
str
- class SecretsManager(client: APIClient)[source]¶
基类:
Manager
Secret 资源的专用管理器。
初始化 SecretsManager 对象。
- 参数:
client – 连接到 Podman 服务。
- create(name: str, data: bytes, labels: Mapping[str, Any] | None = None, driver: str | None = None) Secret [source]¶
创建密钥。
- 参数:
name – 密钥的用户定义名称。
data – 要在 Podman 服务中注册的密钥。
labels – 被忽略。
driver – 密钥驱动程序。
- 引发:
APIError – 服务返回错误时
- get(secret_id: str) Secret [source]¶
按名称或 ID 返回密钥的信息。
- 参数:
secret_id – 密钥名称或 ID。
- 引发:
NotFound – 密钥不存在时
APIError – 服务返回错误时
- list(**kwargs) List[Secret] [source]¶
报告密钥。
- 关键字参数:
filters (Dict[str, Any]) – 被忽略。
- 引发:
APIError – 服务返回错误时
- prepare_model(attrs: PodmanResource | Mapping[str, Any]) PodmanResourceType ¶
从一组属性创建模型。