Skip to content

Commit

Permalink
chore: gen docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bschaatsbergen committed Mar 15, 2024
1 parent baa9ac0 commit c595358
Show file tree
Hide file tree
Showing 20 changed files with 173 additions and 79 deletions.
27 changes: 27 additions & 0 deletions docs/functions/equal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "equal function - assert"
subcategory: ""
description: |-
Checks whether a number is equal to a given number
---

# function: equal





## Signature

<!-- signature generated by tfplugindocs -->
```text
equal(number number, compare_against number) bool
```

## Arguments

<!-- arguments generated by tfplugindocs -->
1. `number` (Number, Nullable) The number to check
1. `compare_against` (Number) The number to compare against

27 changes: 27 additions & 0 deletions docs/functions/greater_than.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "greater_than function - assert"
subcategory: ""
description: |-
Checks whether a number is greater than a given number
---

# function: greater_than





## Signature

<!-- signature generated by tfplugindocs -->
```text
greater_than(number number, compare_against number) bool
```

## Arguments

<!-- arguments generated by tfplugindocs -->
1. `number` (Number, Nullable) The number to check
1. `compare_against` (Number) The number to compare against

27 changes: 27 additions & 0 deletions docs/functions/greater_than_or_equal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "greater_than_or_equal function - assert"
subcategory: ""
description: |-
Checks whether a number is greater than or equal to a given number
---

# function: greater_than_or_equal





## Signature

<!-- signature generated by tfplugindocs -->
```text
greater_than_or_equal(number number, compare_against number) bool
```

## Arguments

<!-- arguments generated by tfplugindocs -->
1. `number` (Number, Nullable) The number to check
1. `compare_against` (Number) The number to compare against

Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "http_client_error function - terraform-provider-assert"
page_title: "http_client_error function - assert"
subcategory: ""
description: |-
Checks whether the HTTP status code is a valid 4xx status code
Checks whether an HTTP status code is a client error status code
---

# function: http_client_error
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "http_redirect function - terraform-provider-assert"
page_title: "http_redirect function - assert"
subcategory: ""
description: |-
Checks whether the HTTP status code is a valid 3xx status code
Checks whether an HTTP status code is a redirect status code
---

# function: http_redirect
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "http_server_error function - terraform-provider-assert"
page_title: "http_server_error function - assert"
subcategory: ""
description: |-
Checks whether the HTTP status code is a valid 5xx status code
Checks whether an HTTP status code is a server error status code
---

# function: http_server_error
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "http_success function - terraform-provider-assert"
page_title: "http_success function - assert"
subcategory: ""
description: |-
Checks whether the HTTP status code is a valid 2xx status code
Checks whether an HTTP status code is a success status code
---

# function: http_success
Expand Down
27 changes: 27 additions & 0 deletions docs/functions/less_than.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "less_than function - assert"
subcategory: ""
description: |-
Checks whether a number is less than a given number
---

# function: less_than





## Signature

<!-- signature generated by tfplugindocs -->
```text
less_than(number number, compare_against number) bool
```

## Arguments

<!-- arguments generated by tfplugindocs -->
1. `number` (Number, Nullable) The number to check
1. `compare_against` (Number) The number to compare against

27 changes: 27 additions & 0 deletions docs/functions/less_than_or_equal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "less_than_or_equal function - assert"
subcategory: ""
description: |-
Checks whether a number is less than or equal to a given number
---

# function: less_than_or_equal





## Signature

<!-- signature generated by tfplugindocs -->
```text
less_than_or_equal(number number, compare_against number) bool
```

## Arguments

<!-- arguments generated by tfplugindocs -->
1. `number` (Number, Nullable) The number to check
1. `compare_against` (Number) The number to compare against

27 changes: 27 additions & 0 deletions docs/functions/not_equal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "not_equal function - assert"
subcategory: ""
description: |-
Checks whether a number is not equal to a given number
---

# function: not_equal





## Signature

<!-- signature generated by tfplugindocs -->
```text
not_equal(number number, compare_against number) bool
```

## Arguments

<!-- arguments generated by tfplugindocs -->
1. `number` (Number, Nullable) The number to check
1. `compare_against` (Number) The number to compare against

2 changes: 1 addition & 1 deletion docs/functions/not_null.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "not_null function - terraform-provider-assert"
page_title: "not_null function - assert"
subcategory: ""
description: |-
Checks whether a given object is not null
Expand Down
2 changes: 1 addition & 1 deletion docs/functions/is_null.md → docs/functions/null.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "null function - terraform-provider-assert"
page_title: "null function - assert"
subcategory: ""
description: |-
Checks whether a given object is null
Expand Down
2 changes: 1 addition & 1 deletion docs/functions/within_range.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "within_range function - terraform-provider-assert"
page_title: "within_range function - assert"
subcategory: ""
description: |-
Checks whether a number is within a given range
Expand Down
12 changes: 0 additions & 12 deletions examples/functions/is_http_2xx/example.tf

This file was deleted.

12 changes: 0 additions & 12 deletions examples/functions/is_http_3xx/example.tf

This file was deleted.

12 changes: 0 additions & 12 deletions examples/functions/is_http_4xx/example.tf

This file was deleted.

12 changes: 0 additions & 12 deletions examples/functions/is_http_5xx/example.tf

This file was deleted.

7 changes: 0 additions & 7 deletions examples/functions/is_null/example.tf

This file was deleted.

10 changes: 0 additions & 10 deletions examples/functions/not_null/example.tf

This file was deleted.

3 changes: 0 additions & 3 deletions examples/functions/within_range/example.tf

This file was deleted.

0 comments on commit c595358

Please sign in to comment.