Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

iot Update models to latest #3212

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -744,67 +744,65 @@ CreateBillingGroupResult createBillingGroup(CreateBillingGroupRequest createBill
* request.
* </p>
* <p>
* <b>Note:</b> The CSR must include a public key that is either an RSA key
* with a length of at least 2048 bits or an ECC key from NIST P-256, NIST
* P-384, or NIST P-512 curves. For supported certificates, consult <a href=
* "https://docs.aws.amazon.com/iot/latest/developerguide/x509-client-certs.html#x509-cert-algorithms"
* > Certificate signing algorithms supported by IoT</a>.
* </p>
* <p>
* <b>Note:</b> Reusing the same certificate signing request (CSR) results
* in a distinct certificate.
* </p>
* <p>
* Requires permission to access the <a href=
* "https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions"
* >CreateCertificateFromCsr</a> action.
* </p>
* <note>
* <p>
* You can create multiple certificates in a batch by creating a directory,
* copying multiple .csr files into that directory, and then specifying that
* directory on the command line. The following commands show how to create
* a batch of certificates given a batch of CSRs.
* The CSR must include a public key that is either an RSA key with a length
* of at least 2048 bits or an ECC key from NIST P-25 or NIST P-384 curves.
* For supported certificates, consult <a href=
* "https://docs.aws.amazon.com/iot/latest/developerguide/x509-client-certs.html#x509-cert-algorithms"
* > Certificate signing algorithms supported by IoT</a>.
* </p>
* </note> <note>
* <p>
* Assuming a set of CSRs are located inside of the directory
* my-csr-directory:
* Reusing the same certificate signing request (CSR) results in a distinct
* certificate.
* </p>
* </note>
* <p>
* You can create multiple certificates in a batch by creating a directory,
* copying multiple <code>.csr</code> files into that directory, and then
* specifying that directory on the command line. The following commands
* show how to create a batch of certificates given a batch of CSRs. In the
* following commands, we assume that a set of CSRs are located inside of
* the directory my-csr-directory:
* </p>
* <p>
* On Linux and OS X, the command is:
* </p>
* <p>
* $ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr
* --certificate-signing-request file://my-csr-directory/{}
* <code>$ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{}</code>
* </p>
* <p>
* This command lists all of the CSRs in my-csr-directory and pipes each CSR
* file name to the aws iot create-certificate-from-csr Amazon Web Services
* CLI command to create a certificate for the corresponding CSR.
* file name to the <code>aws iot create-certificate-from-csr</code> Amazon
* Web Services CLI command to create a certificate for the corresponding
* CSR.
* </p>
* <p>
* The aws iot create-certificate-from-csr part of the command can also be
* run in parallel to speed up the certificate creation process:
* You can also run the <code>aws iot create-certificate-from-csr</code>
* part of the command in parallel to speed up the certificate creation
* process:
* </p>
* <p>
* $ ls my-csr-directory/ | xargs -P 10 -I {} aws iot
* create-certificate-from-csr --certificate-signing-request
* file://my-csr-directory/{}
* <code>$ ls my-csr-directory/ | xargs -P 10 -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} </code>
* </p>
* <p>
* On Windows PowerShell, the command to create certificates for all CSRs in
* my-csr-directory is:
* </p>
* <p>
* &gt; ls -Name my-csr-directory | %{aws iot create-certificate-from-csr
* --certificate-signing-request file://my-csr-directory/$_}
* <code>&gt; ls -Name my-csr-directory | %{aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/$_} </code>
* </p>
* <p>
* On a Windows command prompt, the command to create certificates for all
* CSRs in my-csr-directory is:
* </p>
* <p>
* &gt; forfiles /p my-csr-directory /c
* "cmd /c aws iot create-certificate-from-csr --certificate-signing-request file://@path"
* <code>&gt; forfiles /p my-csr-directory /c "cmd /c aws iot create-certificate-from-csr --certificate-signing-request file://@path" </code>
* </p>
*
* @param createCertificateFromCsrRequest <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1520,67 +1520,65 @@ public CreateBillingGroupResult createBillingGroup(
* request.
* </p>
* <p>
* <b>Note:</b> The CSR must include a public key that is either an RSA key
* with a length of at least 2048 bits or an ECC key from NIST P-256, NIST
* P-384, or NIST P-512 curves. For supported certificates, consult <a href=
* "https://docs.aws.amazon.com/iot/latest/developerguide/x509-client-certs.html#x509-cert-algorithms"
* > Certificate signing algorithms supported by IoT</a>.
* </p>
* <p>
* <b>Note:</b> Reusing the same certificate signing request (CSR) results
* in a distinct certificate.
* </p>
* <p>
* Requires permission to access the <a href=
* "https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions"
* >CreateCertificateFromCsr</a> action.
* </p>
* <note>
* <p>
* You can create multiple certificates in a batch by creating a directory,
* copying multiple .csr files into that directory, and then specifying that
* directory on the command line. The following commands show how to create
* a batch of certificates given a batch of CSRs.
* The CSR must include a public key that is either an RSA key with a length
* of at least 2048 bits or an ECC key from NIST P-25 or NIST P-384 curves.
* For supported certificates, consult <a href=
* "https://docs.aws.amazon.com/iot/latest/developerguide/x509-client-certs.html#x509-cert-algorithms"
* > Certificate signing algorithms supported by IoT</a>.
* </p>
* </note> <note>
* <p>
* Assuming a set of CSRs are located inside of the directory
* my-csr-directory:
* Reusing the same certificate signing request (CSR) results in a distinct
* certificate.
* </p>
* </note>
* <p>
* You can create multiple certificates in a batch by creating a directory,
* copying multiple <code>.csr</code> files into that directory, and then
* specifying that directory on the command line. The following commands
* show how to create a batch of certificates given a batch of CSRs. In the
* following commands, we assume that a set of CSRs are located inside of
* the directory my-csr-directory:
* </p>
* <p>
* On Linux and OS X, the command is:
* </p>
* <p>
* $ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr
* --certificate-signing-request file://my-csr-directory/{}
* <code>$ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{}</code>
* </p>
* <p>
* This command lists all of the CSRs in my-csr-directory and pipes each CSR
* file name to the aws iot create-certificate-from-csr Amazon Web Services
* CLI command to create a certificate for the corresponding CSR.
* file name to the <code>aws iot create-certificate-from-csr</code> Amazon
* Web Services CLI command to create a certificate for the corresponding
* CSR.
* </p>
* <p>
* The aws iot create-certificate-from-csr part of the command can also be
* run in parallel to speed up the certificate creation process:
* You can also run the <code>aws iot create-certificate-from-csr</code>
* part of the command in parallel to speed up the certificate creation
* process:
* </p>
* <p>
* $ ls my-csr-directory/ | xargs -P 10 -I {} aws iot
* create-certificate-from-csr --certificate-signing-request
* file://my-csr-directory/{}
* <code>$ ls my-csr-directory/ | xargs -P 10 -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} </code>
* </p>
* <p>
* On Windows PowerShell, the command to create certificates for all CSRs in
* my-csr-directory is:
* </p>
* <p>
* &gt; ls -Name my-csr-directory | %{aws iot create-certificate-from-csr
* --certificate-signing-request file://my-csr-directory/$_}
* <code>&gt; ls -Name my-csr-directory | %{aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/$_} </code>
* </p>
* <p>
* On a Windows command prompt, the command to create certificates for all
* CSRs in my-csr-directory is:
* </p>
* <p>
* &gt; forfiles /p my-csr-directory /c
* "cmd /c aws iot create-certificate-from-csr --certificate-signing-request file://@path"
* <code>&gt; forfiles /p my-csr-directory /c "cmd /c aws iot create-certificate-from-csr --certificate-signing-request file://@path" </code>
* </p>
*
* @param createCertificateFromCsrRequest <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,66 +24,63 @@
* Creates an X.509 certificate using the specified certificate signing request.
* </p>
* <p>
* <b>Note:</b> The CSR must include a public key that is either an RSA key with
* a length of at least 2048 bits or an ECC key from NIST P-256, NIST P-384, or
* NIST P-512 curves. For supported certificates, consult <a href=
* "https://docs.aws.amazon.com/iot/latest/developerguide/x509-client-certs.html#x509-cert-algorithms"
* > Certificate signing algorithms supported by IoT</a>.
* </p>
* <p>
* <b>Note:</b> Reusing the same certificate signing request (CSR) results in a
* distinct certificate.
* </p>
* <p>
* Requires permission to access the <a href=
* "https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions"
* >CreateCertificateFromCsr</a> action.
* </p>
* <note>
* <p>
* You can create multiple certificates in a batch by creating a directory,
* copying multiple .csr files into that directory, and then specifying that
* directory on the command line. The following commands show how to create a
* batch of certificates given a batch of CSRs.
* The CSR must include a public key that is either an RSA key with a length of
* at least 2048 bits or an ECC key from NIST P-25 or NIST P-384 curves. For
* supported certificates, consult <a href=
* "https://docs.aws.amazon.com/iot/latest/developerguide/x509-client-certs.html#x509-cert-algorithms"
* > Certificate signing algorithms supported by IoT</a>.
* </p>
* </note> <note>
* <p>
* Assuming a set of CSRs are located inside of the directory my-csr-directory:
* Reusing the same certificate signing request (CSR) results in a distinct
* certificate.
* </p>
* </note>
* <p>
* You can create multiple certificates in a batch by creating a directory,
* copying multiple <code>.csr</code> files into that directory, and then
* specifying that directory on the command line. The following commands show
* how to create a batch of certificates given a batch of CSRs. In the following
* commands, we assume that a set of CSRs are located inside of the directory
* my-csr-directory:
* </p>
* <p>
* On Linux and OS X, the command is:
* </p>
* <p>
* $ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr
* --certificate-signing-request file://my-csr-directory/{}
* <code>$ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{}</code>
* </p>
* <p>
* This command lists all of the CSRs in my-csr-directory and pipes each CSR
* file name to the aws iot create-certificate-from-csr Amazon Web Services CLI
* command to create a certificate for the corresponding CSR.
* file name to the <code>aws iot create-certificate-from-csr</code> Amazon Web
* Services CLI command to create a certificate for the corresponding CSR.
* </p>
* <p>
* The aws iot create-certificate-from-csr part of the command can also be run
* in parallel to speed up the certificate creation process:
* You can also run the <code>aws iot create-certificate-from-csr</code> part of
* the command in parallel to speed up the certificate creation process:
* </p>
* <p>
* $ ls my-csr-directory/ | xargs -P 10 -I {} aws iot
* create-certificate-from-csr --certificate-signing-request
* file://my-csr-directory/{}
* <code>$ ls my-csr-directory/ | xargs -P 10 -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} </code>
* </p>
* <p>
* On Windows PowerShell, the command to create certificates for all CSRs in
* my-csr-directory is:
* </p>
* <p>
* &gt; ls -Name my-csr-directory | %{aws iot create-certificate-from-csr
* --certificate-signing-request file://my-csr-directory/$_}
* <code>&gt; ls -Name my-csr-directory | %{aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/$_} </code>
* </p>
* <p>
* On a Windows command prompt, the command to create certificates for all CSRs
* in my-csr-directory is:
* </p>
* <p>
* &gt; forfiles /p my-csr-directory /c
* "cmd /c aws iot create-certificate-from-csr --certificate-signing-request file://@path"
* <code>&gt; forfiles /p my-csr-directory /c "cmd /c aws iot create-certificate-from-csr --certificate-signing-request file://@path" </code>
* </p>
*/
public class CreateCertificateFromCsrRequest extends AmazonWebServiceRequest implements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public class CreateFleetMetricRequest extends AmazonWebServiceRequest implements
* <p>
* Used to support unit transformation such as milliseconds to seconds. The
* unit must be supported by <a href=
* "https://docs.aws.amazon.com/https:/docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* "https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* >CW metric</a>. Default to null.
* </p>
* <p>
Expand Down Expand Up @@ -566,7 +566,7 @@ public CreateFleetMetricRequest withIndexName(String indexName) {
* <p>
* Used to support unit transformation such as milliseconds to seconds. The
* unit must be supported by <a href=
* "https://docs.aws.amazon.com/https:/docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* "https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* >CW metric</a>. Default to null.
* </p>
* <p>
Expand All @@ -581,7 +581,7 @@ public CreateFleetMetricRequest withIndexName(String indexName) {
* @return <p>
* Used to support unit transformation such as milliseconds to
* seconds. The unit must be supported by <a href=
* "https://docs.aws.amazon.com/https:/docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* "https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* >CW metric</a>. Default to null.
* </p>
* @see FleetMetricUnit
Expand All @@ -594,7 +594,7 @@ public String getUnit() {
* <p>
* Used to support unit transformation such as milliseconds to seconds. The
* unit must be supported by <a href=
* "https://docs.aws.amazon.com/https:/docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* "https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* >CW metric</a>. Default to null.
* </p>
* <p>
Expand All @@ -609,7 +609,7 @@ public String getUnit() {
* @param unit <p>
* Used to support unit transformation such as milliseconds to
* seconds. The unit must be supported by <a href=
* "https://docs.aws.amazon.com/https:/docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* "https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* >CW metric</a>. Default to null.
* </p>
* @see FleetMetricUnit
Expand All @@ -622,7 +622,7 @@ public void setUnit(String unit) {
* <p>
* Used to support unit transformation such as milliseconds to seconds. The
* unit must be supported by <a href=
* "https://docs.aws.amazon.com/https:/docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* "https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* >CW metric</a>. Default to null.
* </p>
* <p>
Expand All @@ -640,7 +640,7 @@ public void setUnit(String unit) {
* @param unit <p>
* Used to support unit transformation such as milliseconds to
* seconds. The unit must be supported by <a href=
* "https://docs.aws.amazon.com/https:/docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* "https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* >CW metric</a>. Default to null.
* </p>
* @return A reference to this updated object so that method calls can be
Expand All @@ -656,7 +656,7 @@ public CreateFleetMetricRequest withUnit(String unit) {
* <p>
* Used to support unit transformation such as milliseconds to seconds. The
* unit must be supported by <a href=
* "https://docs.aws.amazon.com/https:/docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* "https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* >CW metric</a>. Default to null.
* </p>
* <p>
Expand All @@ -671,7 +671,7 @@ public CreateFleetMetricRequest withUnit(String unit) {
* @param unit <p>
* Used to support unit transformation such as milliseconds to
* seconds. The unit must be supported by <a href=
* "https://docs.aws.amazon.com/https:/docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* "https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* >CW metric</a>. Default to null.
* </p>
* @see FleetMetricUnit
Expand All @@ -684,7 +684,7 @@ public void setUnit(FleetMetricUnit unit) {
* <p>
* Used to support unit transformation such as milliseconds to seconds. The
* unit must be supported by <a href=
* "https://docs.aws.amazon.com/https:/docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* "https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* >CW metric</a>. Default to null.
* </p>
* <p>
Expand All @@ -702,7 +702,7 @@ public void setUnit(FleetMetricUnit unit) {
* @param unit <p>
* Used to support unit transformation such as milliseconds to
* seconds. The unit must be supported by <a href=
* "https://docs.aws.amazon.com/https:/docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* "https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html"
* >CW metric</a>. Default to null.
* </p>
* @return A reference to this updated object so that method calls can be
Expand Down
Loading