Skip to content

Commit

Permalink
feat: add examples
Browse files Browse the repository at this point in the history
  • Loading branch information
bschaatsbergen committed Mar 15, 2024
1 parent 22d6ce3 commit 18a77a8
Show file tree
Hide file tree
Showing 7 changed files with 82 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/functions/is_http_2xx.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: "is_http_2xx function - assert"
page_title: "is_http_2xx function - terraform-provider-assert"
subcategory: ""
description: |-
Checks whether the HTTP status code is a valid 2xx status code
Expand Down
26 changes: 26 additions & 0 deletions docs/functions/is_http_3xx.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "is_http_3xx function - terraform-provider-assert"
subcategory: ""
description: |-
Checks whether the HTTP status code is a valid 3xx status code
---

# function: is_http_3xx





## Signature

<!-- signature generated by tfplugindocs -->
```text
is_http_3xx(status_code number) bool
```

## Arguments

<!-- arguments generated by tfplugindocs -->
1. `status_code` (Number) The HTTP status code to check

26 changes: 26 additions & 0 deletions docs/functions/is_http_4xx.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "is_http_4xx function - terraform-provider-assert"
subcategory: ""
description: |-
Checks whether the HTTP status code is a valid 4xx status code
---

# function: is_http_4xx





## Signature

<!-- signature generated by tfplugindocs -->
```text
is_http_4xx(status_code number) bool
```

## Arguments

<!-- arguments generated by tfplugindocs -->
1. `status_code` (Number) The HTTP status code to check

26 changes: 26 additions & 0 deletions docs/functions/is_http_5xx.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "is_http_5xx function - terraform-provider-assert"
subcategory: ""
description: |-
Checks whether the HTTP status code is a valid 5xx status code
---

# function: is_http_5xx





## Signature

<!-- signature generated by tfplugindocs -->
```text
is_http_5xx(status_code number) bool
```

## Arguments

<!-- arguments generated by tfplugindocs -->
1. `status_code` (Number) The HTTP status code to check

2 changes: 1 addition & 1 deletion docs/functions/is_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: "is_null function - assert"
page_title: "is_null function - terraform-provider-assert"
subcategory: ""
description: |-
Checks whether a given object is null
Expand Down
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 - assert"
page_title: "not_null function - terraform-provider-assert"
subcategory: ""
description: |-
Checks whether a given object is not 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 - assert"
page_title: "within_range function - terraform-provider-assert"
subcategory: ""
description: |-
Checks whether a number is within a given range
Expand Down

0 comments on commit 18a77a8

Please sign in to comment.