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
lists the properties of all certificates in the specified Key Vault.
338
338
```go
339
339
import (
@@ -363,7 +363,7 @@ func main() {
363
363
panic(err)
364
364
}
365
365
366
-
pager:= client.ListCertificates(nil)
366
+
pager:= client.NewListCertificatesPager(nil)
367
367
for pager.More() {
368
368
page, err:= pager.NextPage(context.TODO())
369
369
if err != nil {
@@ -380,13 +380,13 @@ func main() {
380
380
## Troubleshooting
381
381
### Error Handling
382
382
383
-
All I/O operations will return an `error` that can be investigated to discover more information about the error. In addition, you can investigate the raw response of any response object:
383
+
All I/O operations will return an `error` that can be investigated to discover more information about the error. In addition, you can investigate the raw response of any error object:
0 commit comments