Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
create_secret | POST /resources/stores/secret/{store_id}/secrets | Create a new secret in a store. |
delete_secret | DELETE /resources/stores/secret/{store_id}/secrets/{secret_name} | Delete a secret from a store. |
get_secret | GET /resources/stores/secret/{store_id}/secrets/{secret_name} | Get secret metadata. |
get_secrets | GET /resources/stores/secret/{store_id}/secrets | List secrets within a store. |
must_recreate_secret | PATCH /resources/stores/secret/{store_id}/secrets | Recreate a secret in a store. |
recreate_secret | PUT /resources/stores/secret/{store_id}/secrets | Create or recreate a secret in a store. |
Create a new secret in a store. Returns an error if a secret already exists with the same name. See PUT
and PATCH
methods for ways to recreate an existing secret. The secret
field must be Base64-encoded because a secret can contain binary data. In the example below, the unencoded secret is "Hello, world!"
let cfg = &Configuration::default();
let params = CreateSecretParams {
// parameters
};
create_secret(cfg, params)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
store_id | String | [required] | ||
secret | Option<Secret> |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to README]
Delete a secret from a store by name.
let cfg = &Configuration::default();
let params = DeleteSecretParams {
// parameters
};
delete_secret(cfg, params)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
store_id | String | [required] | ||
secret_name | String | [required] |
(empty response body)
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to README]
Get metadata about a secret by name.
let cfg = &Configuration::default();
let params = GetSecretParams {
// parameters
};
get_secret(cfg, params)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
store_id | String | [required] | ||
secret_name | String | [required] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to README]
List all secrets within a store.
let cfg = &Configuration::default();
let params = GetSecretsParams {
// parameters
};
get_secrets(cfg, params)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
store_id | String | [required] | ||
cursor | Option<String> | Cursor value from the next_cursor field of a previous response, used to retrieve the next page. To request the first page, this should be empty. |
||
limit | Option<String> | Number of results per page. The maximum is 200. | [default to 100] |
crate::models::InlineResponse2006
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to README]
Recreate a secret based on the secret's name. Returns an error if there is no existing secret with the same name. The secret
field must be Base64-encoded because a secret can contain binary data. In the example below, the unencoded secret is "Hello, world!"
let cfg = &Configuration::default();
let params = MustRecreateSecretParams {
// parameters
};
must_recreate_secret(cfg, params)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
store_id | String | [required] | ||
secret | Option<Secret> |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to README]
Create or recreate a secret based on the secret's name. The response object's recreated
field will be true if the secret was recreated. The secret
field must be Base64-encoded because a secret can contain binary data. In the example below, the unencoded secret is "Hello, world!"
let cfg = &Configuration::default();
let params = RecreateSecretParams {
// parameters
};
recreate_secret(cfg, params)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
store_id | String | [required] | ||
secret | Option<Secret> |
- Content-Type: application/json
- Accept: application/json