From 777c4b9979d125e2f2753e4210b0a1ceacfdd582 Mon Sep 17 00:00:00 2001 From: Luis Presuel Date: Fri, 24 May 2024 14:05:08 -0600 Subject: [PATCH] updates cloud docs to include provisioning for CLI --- README-CLI-CLOUD.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README-CLI-CLOUD.md b/README-CLI-CLOUD.md index 6f6c84ff..1ea594e9 100644 --- a/README-CLI-CLOUD.md +++ b/README-CLI-CLOUD.md @@ -35,6 +35,7 @@ Use these links to quickly jump to a relevant section lower on this page: - [Certificate Retrieval Parameters](#certificate-retrieval-parameters) - [Certificate Renewal Parameters](#certificate-renewal-parameters) - [Certificate Retire Parameters](#certificate-retire-parameters) + - [Certificate Provisioning Parameters](#certificate-provisioning-parameters) - [Parameters for Applying Certificate Policy](#parameters-for-applying-certificate-policy) - [Parameters for Viewing Certificate Policy](#parameters-for-viewing-certificate-policy) - [Examples](#examples) @@ -217,6 +218,29 @@ Options: | `--id` | Use to specify the unique identifier of the certificate to retire. Value may be specified as a string or read from a file using the `file:` prefix. | | `--thumbprint` | Use to specify the SHA1 thumbprint of the certificate to retire. Value may be specified as a string or read from the certificate file using the `file:` prefix. | +## Certificate Provisioning Parameters +API key: +``` +vcert provisioning cloudkeystore -p vcp -k [--certificate-id | --pickup-id | --pickup-id-file ] [ --keystore-id | --keystore-name --provider-name ] +``` +Access token: +``` +vcert provisioning cloudkeystore -p vcp -t [--certificate-id | --pickup-id | --pickup-id-file ] [ --keystore-id | --keystore-name --provider-name ] +``` +Options: + +| Command | Description | +|----------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| `--certificate-id` | The id of the certificate to be provisioned to a cloud keystore. | +| `--pickup-id` | Use to specify the unique identifier of the certificate returned by the enroll or renew actions if `--no-pickup` was used or a timeout occurred. Required when `--pickup-id-file` is not specified. | +| `--pickup-id-file` | Use to specify a file name that contains the unique identifier of the certificate returned by the enroll or renew actions if --no-pickup was used or a timeout occurred. Required when `--pickup-id` is not specified. | +| `--certificate-name` | Use to specify Cloud Keystore Certificate Name if it supports it | +| `--keystore-id` | The id of the cloud keystore where the certificate will be provisioned. | +| `--provider-name` | The name of the cloud provider which owns the cloud keystore where the certificate will be provisioned. Must be set along with keystore-name flag. | +| `--keystore-name` | The name of the cloud keystore where the certificate will be provisioned. Must be set along with provider-name flag. | +| `--file` | Use to specify a file name and a location where the output should be written. Example: --file /path-to/provision-output | +| `--format` | The format of the operation output: text or JSON. Defaults to text. | + ## Parameters for Applying Certificate Policy API key: ```