Skip to content

Commit ed9f50a

Browse files
authored
Merge pull request #129 from stackql/feature/doc-updates
`awscc` updates
2 parents 0d2c597 + 48bde81 commit ed9f50a

File tree

1,695 files changed

+22614
-22614
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,695 files changed

+22614
-22614
lines changed

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

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,21 @@ Gets an individual <code>analyzer</code> resource
4040
## Methods
4141
Currently only <code>SELECT</code> is supported for this resource resource.
4242

43+
## Example
44+
```sql
45+
SELECT
46+
region,
47+
analyzer_name,
48+
archive_rules,
49+
arn,
50+
tags,
51+
type,
52+
analyzer_configuration
53+
FROM awscc.accessanalyzer.analyzer
54+
WHERE region = 'us-east-1'
55+
AND data__Identifier = '{Arn}';
56+
```
57+
4358
## Permissions
4459

4560
To operate on the <code>analyzer</code> resource, the following permissions are required:
@@ -66,18 +81,3 @@ access-analyzer:UpdateArchiveRule
6681
access-analyzer:DeleteAnalyzer
6782
```
6883

69-
70-
## Example
71-
```sql
72-
SELECT
73-
region,
74-
analyzer_name,
75-
archive_rules,
76-
arn,
77-
tags,
78-
type,
79-
analyzer_configuration
80-
FROM awscc.accessanalyzer.analyzer
81-
WHERE region = 'us-east-1'
82-
AND data__Identifier = '&lt;Arn&gt;'
83-
```

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@ Retrieves a list of <code>analyzers</code> in a region
3535
## Methods
3636
Currently only <code>SELECT</code> is supported for this resource resource.
3737

38+
## Example
39+
```sql
40+
SELECT
41+
region,
42+
arn
43+
FROM awscc.accessanalyzer.analyzers
44+
WHERE region = 'us-east-1'
45+
```
46+
3847
## Permissions
3948

4049
To operate on the <code>analyzers</code> resource, the following permissions are required:
@@ -53,12 +62,3 @@ organizations:ListDelegatedAdministrators
5362
access-analyzer:ListAnalyzers
5463
```
5564

56-
57-
## Example
58-
```sql
59-
SELECT
60-
region,
61-
arn
62-
FROM awscc.accessanalyzer.analyzers
63-
WHERE region = 'us-east-1'
64-
```

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

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,6 @@ Gets an individual <code>certificate</code> resource
4343
## Methods
4444
Currently only <code>SELECT</code> is supported for this resource resource.
4545

46-
## Permissions
47-
48-
To operate on the <code>certificate</code> resource, the following permissions are required:
49-
50-
### Read
51-
```json
52-
acm-pca:GetCertificate
53-
```
54-
55-
### Delete
56-
```json
57-
acm-pca:GetCertificate
58-
```
59-
60-
6146
## Example
6247
```sql
6348
SELECT
@@ -73,6 +58,21 @@ certificate,
7358
arn
7459
FROM awscc.acmpca.certificate
7560
WHERE region = 'us-east-1'
76-
AND data__Identifier = '&lt;Arn&gt;'
77-
AND data__Identifier = '&lt;CertificateAuthorityArn&gt;'
61+
AND data__Identifier = '{Arn}';
62+
AND data__Identifier = '{CertificateAuthorityArn}';
7863
```
64+
65+
## Permissions
66+
67+
To operate on the <code>certificate</code> resource, the following permissions are required:
68+
69+
### Read
70+
```json
71+
acm-pca:GetCertificate
72+
```
73+
74+
### Delete
75+
```json
76+
acm-pca:GetCertificate
77+
```
78+

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@ Retrieves a list of <code>certificate_authorities</code> in a region
3535
## Methods
3636
Currently only <code>SELECT</code> is supported for this resource resource.
3737

38+
## Example
39+
```sql
40+
SELECT
41+
region,
42+
arn
43+
FROM awscc.acmpca.certificate_authorities
44+
WHERE region = 'us-east-1'
45+
```
46+
3847
## Permissions
3948

4049
To operate on the <code>certificate_authorities</code> resource, the following permissions are required:
@@ -54,12 +63,3 @@ acm-pca:ListCertificateAuthorities,
5463
acm-pca:ListTags
5564
```
5665

57-
58-
## Example
59-
```sql
60-
SELECT
61-
region,
62-
arn
63-
FROM awscc.acmpca.certificate_authorities
64-
WHERE region = 'us-east-1'
65-
```

docs/awscc-docs/providers/awscc/acmpca/certificate_authority/index.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,26 @@ Gets an individual <code>certificate_authority</code> resource
4545
## Methods
4646
Currently only <code>SELECT</code> is supported for this resource resource.
4747

48+
## Example
49+
```sql
50+
SELECT
51+
region,
52+
arn,
53+
type,
54+
key_algorithm,
55+
signing_algorithm,
56+
subject,
57+
revocation_configuration,
58+
tags,
59+
certificate_signing_request,
60+
csr_extensions,
61+
key_storage_security_standard,
62+
usage_mode
63+
FROM awscc.acmpca.certificate_authority
64+
WHERE region = 'us-east-1'
65+
AND data__Identifier = '{Arn}';
66+
```
67+
4868
## Permissions
4969

5070
To operate on the <code>certificate_authority</code> resource, the following permissions are required:
@@ -70,23 +90,3 @@ acm-pca:DeleteCertificateAuthority,
7090
acm-pca:DescribeCertificateAuthority
7191
```
7292

73-
74-
## Example
75-
```sql
76-
SELECT
77-
region,
78-
arn,
79-
type,
80-
key_algorithm,
81-
signing_algorithm,
82-
subject,
83-
revocation_configuration,
84-
tags,
85-
certificate_signing_request,
86-
csr_extensions,
87-
key_storage_security_standard,
88-
usage_mode
89-
FROM awscc.acmpca.certificate_authority
90-
WHERE region = 'us-east-1'
91-
AND data__Identifier = '&lt;Arn&gt;'
92-
```

docs/awscc-docs/providers/awscc/acmpca/certificate_authority_activation/index.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,20 @@ Gets an individual <code>certificate_authority_activation</code> resource
3939
## Methods
4040
Currently only <code>SELECT</code> is supported for this resource resource.
4141

42+
## Example
43+
```sql
44+
SELECT
45+
region,
46+
certificate_authority_arn,
47+
certificate,
48+
certificate_chain,
49+
status,
50+
complete_certificate_chain
51+
FROM awscc.acmpca.certificate_authority_activation
52+
WHERE region = 'us-east-1'
53+
AND data__Identifier = '{CertificateAuthorityArn}';
54+
```
55+
4256
## Permissions
4357

4458
To operate on the <code>certificate_authority_activation</code> resource, the following permissions are required:
@@ -60,17 +74,3 @@ acm-pca:ImportCertificateAuthorityCertificate,
6074
acm-pca:UpdateCertificateAuthority
6175
```
6276

63-
64-
## Example
65-
```sql
66-
SELECT
67-
region,
68-
certificate_authority_arn,
69-
certificate,
70-
certificate_chain,
71-
status,
72-
complete_certificate_chain
73-
FROM awscc.acmpca.certificate_authority_activation
74-
WHERE region = 'us-east-1'
75-
AND data__Identifier = '&lt;CertificateAuthorityArn&gt;'
76-
```

docs/awscc-docs/providers/awscc/acmpca/certificate_authority_activations/index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@ Retrieves a list of <code>certificate_authority_activations</code> in a region
3535
## Methods
3636
Currently only <code>SELECT</code> is supported for this resource resource.
3737

38+
## Example
39+
```sql
40+
SELECT
41+
region,
42+
certificate_authority_arn
43+
FROM awscc.acmpca.certificate_authority_activations
44+
WHERE region = 'us-east-1'
45+
```
46+
3847
## Permissions
3948

4049
To operate on the <code>certificate_authority_activations</code> resource, the following permissions are required:
@@ -45,12 +54,3 @@ acm-pca:ImportCertificateAuthorityCertificate,
4554
acm-pca:UpdateCertificateAuthority
4655
```
4756

48-
49-
## Example
50-
```sql
51-
SELECT
52-
region,
53-
certificate_authority_arn
54-
FROM awscc.acmpca.certificate_authority_activations
55-
WHERE region = 'us-east-1'
56-
```

docs/awscc-docs/providers/awscc/acmpca/certificates/index.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,16 @@ Retrieves a list of <code>certificates</code> in a region
3636
## Methods
3737
Currently only <code>SELECT</code> is supported for this resource resource.
3838

39+
## Example
40+
```sql
41+
SELECT
42+
region,
43+
arn,
44+
certificate_authority_arn
45+
FROM awscc.acmpca.certificates
46+
WHERE region = 'us-east-1'
47+
```
48+
3949
## Permissions
4050

4151
To operate on the <code>certificates</code> resource, the following permissions are required:
@@ -46,13 +56,3 @@ acm-pca:IssueCertificate,
4656
acm-pca:GetCertificate
4757
```
4858

49-
50-
## Example
51-
```sql
52-
SELECT
53-
region,
54-
arn,
55-
certificate_authority_arn
56-
FROM awscc.acmpca.certificates
57-
WHERE region = 'us-east-1'
58-
```

docs/awscc-docs/providers/awscc/acmpca/permission/index.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,20 @@ Gets an individual <code>permission</code> resource
3838
## Methods
3939
Currently only <code>SELECT</code> is supported for this resource resource.
4040

41+
## Example
42+
```sql
43+
SELECT
44+
region,
45+
actions,
46+
certificate_authority_arn,
47+
principal,
48+
source_account
49+
FROM awscc.acmpca.permission
50+
WHERE region = 'us-east-1'
51+
AND data__Identifier = '{CertificateAuthorityArn}';
52+
AND data__Identifier = '{Principal}';
53+
```
54+
4155
## Permissions
4256

4357
To operate on the <code>permission</code> resource, the following permissions are required:
@@ -52,17 +66,3 @@ acm-pca:ListPermissions
5266
acm-pca:DeletePermission
5367
```
5468

55-
56-
## Example
57-
```sql
58-
SELECT
59-
region,
60-
actions,
61-
certificate_authority_arn,
62-
principal,
63-
source_account
64-
FROM awscc.acmpca.permission
65-
WHERE region = 'us-east-1'
66-
AND data__Identifier = '&lt;CertificateAuthorityArn&gt;'
67-
AND data__Identifier = '&lt;Principal&gt;'
68-
```

docs/awscc-docs/providers/awscc/acmpca/permissions/index.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,16 @@ Retrieves a list of <code>permissions</code> in a region
3636
## Methods
3737
Currently only <code>SELECT</code> is supported for this resource resource.
3838

39+
## Example
40+
```sql
41+
SELECT
42+
region,
43+
certificate_authority_arn,
44+
principal
45+
FROM awscc.acmpca.permissions
46+
WHERE region = 'us-east-1'
47+
```
48+
3949
## Permissions
4050

4151
To operate on the <code>permissions</code> resource, the following permissions are required:
@@ -46,13 +56,3 @@ acm-pca:CreatePermission,
4656
acm-pca:ListPermissions
4757
```
4858

49-
50-
## Example
51-
```sql
52-
SELECT
53-
region,
54-
certificate_authority_arn,
55-
principal
56-
FROM awscc.acmpca.permissions
57-
WHERE region = 'us-east-1'
58-
```

0 commit comments

Comments
 (0)