Skip to content

Commit 9201ff0

Browse files
authored
Merge pull request #141 from stackql/feature/doc-updates
copyable code for aws
2 parents 94b287c + eab11ac commit 9201ff0

File tree

1,920 files changed

+28504
-22681
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,920 files changed

+28504
-22681
lines changed

.github/workflows/build-docs.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616

1717
- name: Get changed files
1818
id: changed-files
19-
uses: tj-actions/changed-files@v35
19+
uses: tj-actions/changed-files@v44.3.0
2020

2121
- name: find updated providers
2222
id: provider-to-deploy
23-
uses: actions/github-script@v6
23+
uses: actions/github-script@v7.0.1
2424
env:
2525
CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
2626
with:
@@ -43,7 +43,7 @@ jobs:
4343
4444
- name: Send Slack message
4545
id: slack
46-
uses: slackapi/slack-github-action@v1.23.0
46+
uses: slackapi/slack-github-action@v1.26.0
4747
with:
4848
payload-file-path: slack-message.json
4949
env:
@@ -105,7 +105,7 @@ jobs:
105105
106106
- name: Send Slack message
107107
id: slack
108-
uses: slackapi/slack-github-action@v1.23.0
108+
uses: slackapi/slack-github-action@v1.26.0
109109
with:
110110
payload-file-path: slack-message.json
111111
env:

docs/aws-docs/providers/aws/accessanalyzer/analyzer/index.md

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,29 @@ description: Query, deploy and manage AWS resources using SQL
1414
custom_edit_url: null
1515
image: /img/providers/aws/stackql-aws-provider-featured-image.png
1616
---
17+
18+
import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
19+
1720
Gets or operates on an individual <code>analyzer</code> resource, use <code>analyzers</code> to retrieve a list of resources or to create a resource.
1821

1922
## Overview
2023
<table><tbody>
2124
<tr><td><b>Name</b></td><td><code>analyzer</code></td></tr>
2225
<tr><td><b>Type</b></td><td>Resource</td></tr>
2326
<tr><td><b>Description</b></td><td>The AWS::AccessAnalyzer::Analyzer type specifies an analyzer of the user's account</td></tr>
24-
<tr><td><b>Id</b></td><td><code>aws.accessanalyzer.analyzer</code></td></tr>
27+
<tr><td><b>Id</b></td><td><CopyableCode code="aws.accessanalyzer.analyzer" /></td></tr>
2528
</tbody></table>
2629

2730
## Fields
2831
<table><tbody>
2932
<tr><th>Name</th><th>Datatype</th><th>Description</th></tr>
30-
<tr><td><code>analyzer_name</code></td><td><code>string</code></td><td>Analyzer name</td></tr>
31-
<tr><td><code>archive_rules</code></td><td><code>array</code></td><td></td></tr>
32-
<tr><td><code>arn</code></td><td><code>string</code></td><td>Amazon Resource Name (ARN) of the analyzer</td></tr>
33-
<tr><td><code>tags</code></td><td><code>array</code></td><td>An array of key-value pairs to apply to this resource.</td></tr>
34-
<tr><td><code>type</code></td><td><code>string</code></td><td>The type of the analyzer, must be one of ACCOUNT, ORGANIZATION, ACCOUNT_UNUSED_ACCESS or ORGANIZATION_UNUSED_ACCESS</td></tr>
35-
<tr><td><code>analyzer_configuration</code></td><td><code>object</code></td><td>The configuration for the analyzer</td></tr>
36-
<tr><td><code>region</code></td><td><code>string</code></td><td>AWS region.</td></tr>
33+
<tr><td><CopyableCode code="analyzer_name" /></td><td><code>string</code></td><td>Analyzer name</td></tr>
34+
<tr><td><CopyableCode code="archive_rules" /></td><td><code>array</code></td><td></td></tr>
35+
<tr><td><CopyableCode code="arn" /></td><td><code>string</code></td><td>Amazon Resource Name (ARN) of the analyzer</td></tr>
36+
<tr><td><CopyableCode code="tags" /></td><td><code>array</code></td><td>An array of key-value pairs to apply to this resource.</td></tr>
37+
<tr><td><CopyableCode code="type" /></td><td><code>string</code></td><td>The type of the analyzer, must be one of ACCOUNT, ORGANIZATION, ACCOUNT_UNUSED_ACCESS or ORGANIZATION_UNUSED_ACCESS</td></tr>
38+
<tr><td><CopyableCode code="analyzer_configuration" /></td><td><code>object</code></td><td>The configuration for the analyzer</td></tr>
39+
<tr><td><CopyableCode code="region" /></td><td><code>string</code></td><td>AWS region.</td></tr>
3740

3841
</tbody></table>
3942

@@ -46,19 +49,19 @@ Gets or operates on an individual <code>analyzer</code> resource, use <code>anal
4649
<th>Required Params</th>
4750
</tr>
4851
<tr>
49-
<td><code>update_resource</code></td>
52+
<td><CopyableCode code="update_resource" /></td>
5053
<td><code>UPDATE</code></td>
51-
<td><code>data__Identifier, data__PatchDocument, region</code></td>
54+
<td><CopyableCode code="data__Identifier, data__PatchDocument, region" /></td>
5255
</tr>
5356
<tr>
54-
<td><code>delete_resource</code></td>
57+
<td><CopyableCode code="delete_resource" /></td>
5558
<td><code>DELETE</code></td>
56-
<td><code>data__Identifier, region</code></td>
59+
<td><CopyableCode code="data__Identifier, region" /></td>
5760
</tr>
5861
<tr>
59-
<td><code>get_resource</code></td>
62+
<td><CopyableCode code="get_resource" /></td>
6063
<td><code>SELECT</code></td>
61-
<td><code>data__Identifier, region</code></td>
64+
<td><CopyableCode code="data__Identifier, region" /></td>
6265
</tr>
6366
</tbody></table>
6467

docs/aws-docs/providers/aws/accessanalyzer/analyzers/index.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,24 @@ description: Query, deploy and manage AWS resources using SQL
1414
custom_edit_url: null
1515
image: /img/providers/aws/stackql-aws-provider-featured-image.png
1616
---
17+
18+
import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
19+
1720
Used to retrieve a list of <code>analyzers</code> in a region or create a <code>analyzers</code> resource, use <code>analyzer</code> to operate on an individual resource.
1821

1922
## Overview
2023
<table><tbody>
2124
<tr><td><b>Name</b></td><td><code>analyzers</code></td></tr>
2225
<tr><td><b>Type</b></td><td>Resource</td></tr>
2326
<tr><td><b>Description</b></td><td>The AWS::AccessAnalyzer::Analyzer type specifies an analyzer of the user's account</td></tr>
24-
<tr><td><b>Id</b></td><td><code>aws.accessanalyzer.analyzers</code></td></tr>
27+
<tr><td><b>Id</b></td><td><CopyableCode code="aws.accessanalyzer.analyzers" /></td></tr>
2528
</tbody></table>
2629

2730
## Fields
2831
<table><tbody>
2932
<tr><th>Name</th><th>Datatype</th><th>Description</th></tr>
30-
<tr><td><code>arn</code></td><td><code>string</code></td><td>Amazon Resource Name (ARN) of the analyzer</td></tr>
31-
<tr><td><code>region</code></td><td><code>string</code></td><td>AWS region.</td></tr>
33+
<tr><td><CopyableCode code="arn" /></td><td><code>string</code></td><td>Amazon Resource Name (ARN) of the analyzer</td></tr>
34+
<tr><td><CopyableCode code="region" /></td><td><code>string</code></td><td>AWS region.</td></tr>
3235

3336
</tbody></table>
3437

@@ -41,14 +44,14 @@ Used to retrieve a list of <code>analyzers</code> in a region or create a <code>
4144
<th>Required Params</th>
4245
</tr>
4346
<tr>
44-
<td><code>create_resource</code></td>
47+
<td><CopyableCode code="create_resource" /></td>
4548
<td><code>INSERT</code></td>
46-
<td><code>data__DesiredState, region</code></td>
49+
<td><CopyableCode code="data__DesiredState, region" /></td>
4750
</tr>
4851
<tr>
49-
<td><code>list_resource</code></td>
52+
<td><CopyableCode code="list_resource" /></td>
5053
<td><code>SELECT</code></td>
51-
<td><code>region</code></td>
54+
<td><CopyableCode code="region" /></td>
5255
</tr>
5356
</tbody></table>
5457

docs/aws-docs/providers/aws/acmpca/certificate/index.md

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,29 +14,32 @@ description: Query, deploy and manage AWS resources using SQL
1414
custom_edit_url: null
1515
image: /img/providers/aws/stackql-aws-provider-featured-image.png
1616
---
17+
18+
import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
19+
1720
Gets or operates on an individual <code>certificate</code> resource, use <code>certificates</code> to retrieve a list of resources or to create a resource.
1821

1922
## Overview
2023
<table><tbody>
2124
<tr><td><b>Name</b></td><td><code>certificate</code></td></tr>
2225
<tr><td><b>Type</b></td><td>Resource</td></tr>
2326
<tr><td><b>Description</b></td><td>The ``AWS::ACMPCA::Certificate`` resource is used to issue a certificate using your private certificate authority. For more information, see the &#91;IssueCertificate&#93;(https:&#x2F;&#x2F;docs.aws.amazon.com&#x2F;privateca&#x2F;latest&#x2F;APIReference&#x2F;API_IssueCertificate.html) action.</td></tr>
24-
<tr><td><b>Id</b></td><td><code>aws.acmpca.certificate</code></td></tr>
27+
<tr><td><b>Id</b></td><td><CopyableCode code="aws.acmpca.certificate" /></td></tr>
2528
</tbody></table>
2629

2730
## Fields
2831
<table><tbody>
2932
<tr><th>Name</th><th>Datatype</th><th>Description</th></tr>
30-
<tr><td><code>api_passthrough</code></td><td><code>object</code></td><td>Specifies X.509 certificate information to be included in the issued certificate. An ``APIPassthrough`` or ``APICSRPassthrough`` template variant must be selected, or else this parameter is ignored.</td></tr>
31-
<tr><td><code>certificate_authority_arn</code></td><td><code>string</code></td><td>The Amazon Resource Name (ARN) for the private CA issues the certificate.</td></tr>
32-
<tr><td><code>certificate_signing_request</code></td><td><code>string</code></td><td>The certificate signing request (CSR) for the certificate.</td></tr>
33-
<tr><td><code>signing_algorithm</code></td><td><code>string</code></td><td>The name of the algorithm that will be used to sign the certificate to be issued. &lt;br&#x2F;&gt; This parameter should not be confused with the ``SigningAlgorithm`` parameter used to sign a CSR in the ``CreateCertificateAuthority`` action.&lt;br&#x2F;&gt; The specified signing algorithm family (RSA or ECDSA) must match the algorithm family of the CA's secret key.</td></tr>
34-
<tr><td><code>template_arn</code></td><td><code>string</code></td><td>Specifies a custom configuration template to use when issuing a certificate. If this parameter is not provided, PCAshort defaults to the ``EndEntityCertificate&#x2F;V1`` template. For more information about PCAshort templates, see &#91;Using Templates&#93;(https:&#x2F;&#x2F;docs.aws.amazon.com&#x2F;privateca&#x2F;latest&#x2F;userguide&#x2F;UsingTemplates.html).</td></tr>
35-
<tr><td><code>validity</code></td><td><code>object</code></td><td>The period of time during which the certificate will be valid.</td></tr>
36-
<tr><td><code>validity_not_before</code></td><td><code>object</code></td><td>Information describing the start of the validity period of the certificate. This parameter sets the “Not Before" date for the certificate.&lt;br&#x2F;&gt; By default, when issuing a certificate, PCAshort sets the "Not Before" date to the issuance time minus 60 minutes. This compensates for clock inconsistencies across computer systems. The ``ValidityNotBefore`` parameter can be used to customize the “Not Before” value. &lt;br&#x2F;&gt; Unlike the ``Validity`` parameter, the ``ValidityNotBefore`` parameter is optional.&lt;br&#x2F;&gt; The ``ValidityNotBefore`` value is expressed as an explicit date and time, using the ``Validity`` type value ``ABSOLUTE``.</td></tr>
37-
<tr><td><code>certificate</code></td><td><code>string</code></td><td></td></tr>
38-
<tr><td><code>arn</code></td><td><code>string</code></td><td></td></tr>
39-
<tr><td><code>region</code></td><td><code>string</code></td><td>AWS region.</td></tr>
33+
<tr><td><CopyableCode code="api_passthrough" /></td><td><code>object</code></td><td>Specifies X.509 certificate information to be included in the issued certificate. An ``APIPassthrough`` or ``APICSRPassthrough`` template variant must be selected, or else this parameter is ignored.</td></tr>
34+
<tr><td><CopyableCode code="certificate_authority_arn" /></td><td><code>string</code></td><td>The Amazon Resource Name (ARN) for the private CA issues the certificate.</td></tr>
35+
<tr><td><CopyableCode code="certificate_signing_request" /></td><td><code>string</code></td><td>The certificate signing request (CSR) for the certificate.</td></tr>
36+
<tr><td><CopyableCode code="signing_algorithm" /></td><td><code>string</code></td><td>The name of the algorithm that will be used to sign the certificate to be issued. &lt;br&#x2F;&gt; This parameter should not be confused with the ``SigningAlgorithm`` parameter used to sign a CSR in the ``CreateCertificateAuthority`` action.&lt;br&#x2F;&gt; The specified signing algorithm family (RSA or ECDSA) must match the algorithm family of the CA's secret key.</td></tr>
37+
<tr><td><CopyableCode code="template_arn" /></td><td><code>string</code></td><td>Specifies a custom configuration template to use when issuing a certificate. If this parameter is not provided, PCAshort defaults to the ``EndEntityCertificate&#x2F;V1`` template. For more information about PCAshort templates, see &#91;Using Templates&#93;(https:&#x2F;&#x2F;docs.aws.amazon.com&#x2F;privateca&#x2F;latest&#x2F;userguide&#x2F;UsingTemplates.html).</td></tr>
38+
<tr><td><CopyableCode code="validity" /></td><td><code>object</code></td><td>The period of time during which the certificate will be valid.</td></tr>
39+
<tr><td><CopyableCode code="validity_not_before" /></td><td><code>object</code></td><td>Information describing the start of the validity period of the certificate. This parameter sets the “Not Before" date for the certificate.&lt;br&#x2F;&gt; By default, when issuing a certificate, PCAshort sets the "Not Before" date to the issuance time minus 60 minutes. This compensates for clock inconsistencies across computer systems. The ``ValidityNotBefore`` parameter can be used to customize the “Not Before” value. &lt;br&#x2F;&gt; Unlike the ``Validity`` parameter, the ``ValidityNotBefore`` parameter is optional.&lt;br&#x2F;&gt; The ``ValidityNotBefore`` value is expressed as an explicit date and time, using the ``Validity`` type value ``ABSOLUTE``.</td></tr>
40+
<tr><td><CopyableCode code="certificate" /></td><td><code>string</code></td><td></td></tr>
41+
<tr><td><CopyableCode code="arn" /></td><td><code>string</code></td><td></td></tr>
42+
<tr><td><CopyableCode code="region" /></td><td><code>string</code></td><td>AWS region.</td></tr>
4043

4144
</tbody></table>
4245

@@ -49,19 +52,19 @@ Gets or operates on an individual <code>certificate</code> resource, use <code>c
4952
<th>Required Params</th>
5053
</tr>
5154
<tr>
52-
<td><code>update_resource</code></td>
55+
<td><CopyableCode code="update_resource" /></td>
5356
<td><code>UPDATE</code></td>
54-
<td><code>data__Identifier, data__PatchDocument, region</code></td>
57+
<td><CopyableCode code="data__Identifier, data__PatchDocument, region" /></td>
5558
</tr>
5659
<tr>
57-
<td><code>delete_resource</code></td>
60+
<td><CopyableCode code="delete_resource" /></td>
5861
<td><code>DELETE</code></td>
59-
<td><code>data__Identifier, region</code></td>
62+
<td><CopyableCode code="data__Identifier, region" /></td>
6063
</tr>
6164
<tr>
62-
<td><code>get_resource</code></td>
65+
<td><CopyableCode code="get_resource" /></td>
6366
<td><code>SELECT</code></td>
64-
<td><code>data__Identifier, region</code></td>
67+
<td><CopyableCode code="data__Identifier, region" /></td>
6568
</tr>
6669
</tbody></table>
6770

docs/aws-docs/providers/aws/acmpca/certificate_authorities/index.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,24 @@ description: Query, deploy and manage AWS resources using SQL
1414
custom_edit_url: null
1515
image: /img/providers/aws/stackql-aws-provider-featured-image.png
1616
---
17+
18+
import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
19+
1720
Used to retrieve a list of <code>certificate_authorities</code> in a region or create a <code>certificate_authorities</code> resource, use <code>certificate_authority</code> to operate on an individual resource.
1821

1922
## Overview
2023
<table><tbody>
2124
<tr><td><b>Name</b></td><td><code>certificate_authorities</code></td></tr>
2225
<tr><td><b>Type</b></td><td>Resource</td></tr>
2326
<tr><td><b>Description</b></td><td>Private certificate authority.</td></tr>
24-
<tr><td><b>Id</b></td><td><code>aws.acmpca.certificate_authorities</code></td></tr>
27+
<tr><td><b>Id</b></td><td><CopyableCode code="aws.acmpca.certificate_authorities" /></td></tr>
2528
</tbody></table>
2629

2730
## Fields
2831
<table><tbody>
2932
<tr><th>Name</th><th>Datatype</th><th>Description</th></tr>
30-
<tr><td><code>arn</code></td><td><code>undefined</code></td><td>The Amazon Resource Name (ARN) of the certificate authority.</td></tr>
31-
<tr><td><code>region</code></td><td><code>string</code></td><td>AWS region.</td></tr>
33+
<tr><td><CopyableCode code="arn" /></td><td><code>undefined</code></td><td>The Amazon Resource Name (ARN) of the certificate authority.</td></tr>
34+
<tr><td><CopyableCode code="region" /></td><td><code>string</code></td><td>AWS region.</td></tr>
3235

3336
</tbody></table>
3437

@@ -41,14 +44,14 @@ Used to retrieve a list of <code>certificate_authorities</code> in a region or c
4144
<th>Required Params</th>
4245
</tr>
4346
<tr>
44-
<td><code>create_resource</code></td>
47+
<td><CopyableCode code="create_resource" /></td>
4548
<td><code>INSERT</code></td>
46-
<td><code>data__DesiredState, region</code></td>
49+
<td><CopyableCode code="data__DesiredState, region" /></td>
4750
</tr>
4851
<tr>
49-
<td><code>list_resource</code></td>
52+
<td><CopyableCode code="list_resource" /></td>
5053
<td><code>SELECT</code></td>
51-
<td><code>region</code></td>
54+
<td><CopyableCode code="region" /></td>
5255
</tr>
5356
</tbody></table>
5457

0 commit comments

Comments
 (0)