docs/SecretStoreApi.md in fastly-7.0.0 vs docs/SecretStoreApi.md in fastly-7.1.0
- old
+ new
@@ -11,11 +11,11 @@
| Method | HTTP request | Description |
| ------ | ------------ | ----------- |
| [**client_key**](SecretStoreApi.md#client_key) | **POST** /resources/stores/secret/client-key | Create new client key |
| [**create_secret_store**](SecretStoreApi.md#create_secret_store) | **POST** /resources/stores/secret | Create new secret store |
| [**delete_secret_store**](SecretStoreApi.md#delete_secret_store) | **DELETE** /resources/stores/secret/{store_id} | Delete secret store |
-| [**get_secret_store**](SecretStoreApi.md#get_secret_store) | **GET** /resources/stores/secret/{store_id} | Create secret store by ID |
+| [**get_secret_store**](SecretStoreApi.md#get_secret_store) | **GET** /resources/stores/secret/{store_id} | Get secret store by ID |
| [**get_secret_stores**](SecretStoreApi.md#get_secret_stores) | **GET** /resources/stores/secret | Get all secret stores |
| [**signing_key**](SecretStoreApi.md#signing_key) | **GET** /resources/stores/secret/signing-key | Get public key |
## `client_key()`
@@ -124,11 +124,11 @@
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
[[Back to README]](../../README.md)
## `get_secret_store()`
```ruby
-get_secret_store(opts): <SecretStoreResponse> # Create secret store by ID
+get_secret_store(opts): <SecretStoreResponse> # Get secret store by ID
```
Get a secret store by ID.
### Examples
@@ -138,10 +138,10 @@
opts = {
store_id: 'store_id_example', # String |
}
begin
- # Create secret store by ID
+ # Get secret store by ID
result = api_instance.get_secret_store(opts)
p result
rescue Fastly::ApiError => e
puts "Error when calling SecretStoreApi->get_secret_store: #{e}"
end