in pkg/clientgen/clientset/versioned/typed/networking.gke.io/v1/managedcertificate.go [81:95]
func (c *managedCertificates) List(ctx context.Context, opts metav1.ListOptions) (result *v1.ManagedCertificateList, err error) {
var timeout time.Duration
if opts.TimeoutSeconds != nil {
timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
}
result = &v1.ManagedCertificateList{}
err = c.client.Get().
Namespace(c.ns).
Resource("managedcertificates").
VersionedParams(&opts, scheme.ParameterCodec).
Timeout(timeout).
Do(ctx).
Into(result)
return
}