pub struct ContainerRegistryAuth {
pub id: String,
pub name: String,
}Expand description
Container registry authentication credentials.
Represents stored authentication credentials for accessing private container registries. These credentials enable RunPod to pull private Docker images during Pod and Serverless endpoint deployment.
§Security Notice
This struct only contains non-sensitive information. Actual passwords and tokens are securely stored by RunPod and never returned in API responses.
§Usage
Authentication records are typically referenced by their ID when creating Pods or Serverless endpoints that require access to private container images.
Fields§
§id: StringA unique string identifying the container registry authentication. This ID is used to reference the authentication when creating Pods or endpoints.
name: StringA user-defined name for the container registry authentication. The name must be unique within your RunPod account and should be descriptive enough to identify the registry or purpose (e.g., “production-ecr”, “my-dockerhub”).
Trait Implementations§
Source§impl Clone for ContainerRegistryAuth
impl Clone for ContainerRegistryAuth
Source§fn clone(&self) -> ContainerRegistryAuth
fn clone(&self) -> ContainerRegistryAuth
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more