generated from hashicorp/terraform-provider-scaffolding-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix rate limit err, split origin and add stuff
- API client now limits itself to not hit rate limits - Origin resource was split into separate resources by type (MoveResource was implemented to smoothen the transition) - Origin and cluster URLs now have url and url_part attributes, so that clients can access which ever one is more convenient - Cdn and Origin "all" resource now have all available attributes (no longer limited by the "list" endpoint)
- Loading branch information
Showing
110 changed files
with
6,499 additions
and
5,706 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "cdn77_origin_aws Data Source - terraform-provider-cdn77" | ||
subcategory: "" | ||
description: |- | ||
AWS Origin resource allows you to manage your AWS Origins | ||
--- | ||
|
||
# cdn77_origin_aws (Data Source) | ||
|
||
AWS Origin resource allows you to manage your AWS Origins | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "cdn77_origin_aws" "example" { | ||
id = "4cd2378b-dec8-49e2-aa17-bf7561452998" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `id` (String) Origin ID (UUID) | ||
|
||
### Read-Only | ||
|
||
- `access_key_id` (String) AWS access key ID | ||
- `access_key_secret` (String, Sensitive) AWS access key secret | ||
- `label` (String) The label helps you to identify your Origin | ||
- `note` (String) Optional note for the Origin | ||
- `region` (String) AWS region | ||
- `url` (String) Absolute URL of this resource. Alternative to the attribute "url_parts". | ||
- `url_parts` (Attributes) Set of attributes describing the resource URL. Alternative to the attribute "url". (see [below for nested schema](#nestedatt--url_parts)) | ||
|
||
<a id="nestedatt--url_parts"></a> | ||
### Nested Schema for `url_parts` | ||
|
||
Read-Only: | ||
|
||
- `base_path` (String) Path to the directory where the content is stored | ||
- `host` (String) Network host; can be a domain name or an IP address | ||
- `port` (Number) Port number between 1 and 65535 (if not specified, default scheme port is used) | ||
- `scheme` (String) URL scheme; can be either "http" or "https" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "cdn77_origin_object_storage Data Source - terraform-provider-cdn77" | ||
subcategory: "" | ||
description: |- | ||
Object Storage Origin resource allows you to manage your Object Storage Origins | ||
--- | ||
|
||
# cdn77_origin_object_storage (Data Source) | ||
|
||
Object Storage Origin resource allows you to manage your Object Storage Origins | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "cdn77_origin_object_storage" "example" { | ||
id = "b2d6a7df-18df-4931-8c78-3842bc6e12f0" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `id` (String) Origin ID (UUID) | ||
|
||
### Read-Only | ||
|
||
- `access_key_id` (String) Access key to your Object Storage bucket | ||
- `access_key_secret` (String, Sensitive) Access secret to your Object Storage bucket | ||
- `acl` (String) Object Storage access key ACL | ||
- `bucket_name` (String) Name of your Object Storage bucket | ||
- `cluster_id` (String) ID of the Object Storage storage cluster | ||
- `label` (String) The label helps you to identify your Origin | ||
- `note` (String) Optional note for the Origin | ||
- `url` (String) Absolute URL of this resource. Alternative to the attribute "url_parts". | ||
- `url_parts` (Attributes) Set of attributes describing the resource URL. Alternative to the attribute "url". (see [below for nested schema](#nestedatt--url_parts)) | ||
- `usage` (Attributes) Usage statistics of the Object Storage bucket (see [below for nested schema](#nestedatt--usage)) | ||
|
||
<a id="nestedatt--url_parts"></a> | ||
### Nested Schema for `url_parts` | ||
|
||
Read-Only: | ||
|
||
- `base_path` (String) Path to the directory where the content is stored | ||
- `host` (String) Network host; can be a domain name or an IP address | ||
- `port` (Number) Port number between 1 and 65535 (if not specified, default scheme port is used) | ||
- `scheme` (String) URL scheme; can be either "http" or "https" | ||
|
||
|
||
<a id="nestedatt--usage"></a> | ||
### Nested Schema for `usage` | ||
|
||
Read-Only: | ||
|
||
- `files` (Number) Number of files stored on the Object Storage bucket | ||
- `size_bytes` (Number) Total size of the Object Storage bucket in bytes |
Oops, something went wrong.