Documentation
¶
Overview ¶
Package managedcertificate provides operations needed for interacting with ManagedCertificate resources in an e2e test.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Interface ¶ added in v1.0.0
type Interface interface { // Create creates a ManagedCertificate v1. Create(ctx context.Context, name string, domains []string) error // DeleteAll deletes all ManagedCertificates. DeleteAll(ctx context.Context) error // Delete deletes a ManagedCertificate. Delete(ctx context.Context, name string) error // Get fetches a ManagedCertificate. Get(ctx context.Context, name string) (*v1.ManagedCertificate, error) // Update updates a ManagedCertificate. Update(ctx context.Context, mcrt *v1.ManagedCertificate) error }
Interface provides operations for interacting with ManagedCertificate resources in an e2e test.
Click to show internal directories.
Click to hide internal directories.