Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
create_resource | POST /service/{service_id}/version/{version_id}/resource | Create a resource link |
delete_resource | DELETE /service/{service_id}/version/{version_id}/resource/{id} | Delete a resource link |
get_resource | GET /service/{service_id}/version/{version_id}/resource/{id} | Display a resource link |
list_resources | GET /service/{service_id}/version/{version_id}/resource | List resource links |
update_resource | PUT /service/{service_id}/version/{version_id}/resource/{id} | Update a resource link |
ResourceResponse create_resource(service_id, version_id)
Create a resource link
Create a link between a resource and a service version.
- Api Key Authentication (token):
import time
import fastly
from fastly.api import resource_api
from fastly.model.resource_response import ResourceResponse
from pprint import pprint
# Defining the host is optional and defaults to https://api.fastly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = fastly.Configuration(
host = "https://api.fastly.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: token
configuration.api_key['token'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['token'] = 'Bearer'
# Enter a context with an instance of the API client
with fastly.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = resource_api.ResourceApi(api_client)
service_id = "SU1Z0isxPaozGVKXdv0eY" # str | Alphanumeric string identifying the service.
version_id = 1 # int | Integer identifying a service version.
resource_id = "3vjTN8v1O7nOAY7aNDGOL" # str | The ID of the underlying linked resource. (optional)
name = "test-resource" # str | The name of the resource link. (optional)
# example passing only required values which don't have defaults set
try:
# Create a resource link
api_response = api_instance.create_resource(service_id, version_id)
pprint(api_response)
except fastly.ApiException as e:
print("Exception when calling ResourceApi->create_resource: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
# Create a resource link
api_response = api_instance.create_resource(service_id, version_id, resource_id=resource_id, name=name)
pprint(api_response)
except fastly.ApiException as e:
print("Exception when calling ResourceApi->create_resource: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
service_id | str | Alphanumeric string identifying the service. | |
version_id | int | Integer identifying a service version. | |
resource_id | str | The ID of the underlying linked resource. | [optional] |
name | str | The name of the resource link. | [optional] |
- Content-Type: application/x-www-form-urlencoded
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InlineResponse200 delete_resource(service_id, version_id, id)
Delete a resource link
Delete a link between a resource and a service version.
- Api Key Authentication (token):
import time
import fastly
from fastly.api import resource_api
from fastly.model.inline_response200 import InlineResponse200
from pprint import pprint
# Defining the host is optional and defaults to https://api.fastly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = fastly.Configuration(
host = "https://api.fastly.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: token
configuration.api_key['token'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['token'] = 'Bearer'
# Enter a context with an instance of the API client
with fastly.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = resource_api.ResourceApi(api_client)
service_id = "SU1Z0isxPaozGVKXdv0eY" # str | Alphanumeric string identifying the service.
version_id = 1 # int | Integer identifying a service version.
id = "7Lsb7Y76rChV9hSrv3KgFl" # str | An alphanumeric string identifying the resource link.
# example passing only required values which don't have defaults set
try:
# Delete a resource link
api_response = api_instance.delete_resource(service_id, version_id, id)
pprint(api_response)
except fastly.ApiException as e:
print("Exception when calling ResourceApi->delete_resource: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
service_id | str | Alphanumeric string identifying the service. | |
version_id | int | Integer identifying a service version. | |
id | str | An alphanumeric string identifying the resource link. |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ResourceResponse get_resource(service_id, version_id, id)
Display a resource link
Display a resource link by its identifier.
- Api Key Authentication (token):
import time
import fastly
from fastly.api import resource_api
from fastly.model.resource_response import ResourceResponse
from pprint import pprint
# Defining the host is optional and defaults to https://api.fastly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = fastly.Configuration(
host = "https://api.fastly.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: token
configuration.api_key['token'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['token'] = 'Bearer'
# Enter a context with an instance of the API client
with fastly.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = resource_api.ResourceApi(api_client)
service_id = "SU1Z0isxPaozGVKXdv0eY" # str | Alphanumeric string identifying the service.
version_id = 1 # int | Integer identifying a service version.
id = "7Lsb7Y76rChV9hSrv3KgFl" # str | An alphanumeric string identifying the resource link.
# example passing only required values which don't have defaults set
try:
# Display a resource link
api_response = api_instance.get_resource(service_id, version_id, id)
pprint(api_response)
except fastly.ApiException as e:
print("Exception when calling ResourceApi->get_resource: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
service_id | str | Alphanumeric string identifying the service. | |
version_id | int | Integer identifying a service version. | |
id | str | An alphanumeric string identifying the resource link. |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[ResourceResponse] list_resources(service_id, version_id)
List resource links
List links between resources and services
- Api Key Authentication (token):
import time
import fastly
from fastly.api import resource_api
from fastly.model.resource_response import ResourceResponse
from pprint import pprint
# Defining the host is optional and defaults to https://api.fastly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = fastly.Configuration(
host = "https://api.fastly.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: token
configuration.api_key['token'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['token'] = 'Bearer'
# Enter a context with an instance of the API client
with fastly.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = resource_api.ResourceApi(api_client)
service_id = "SU1Z0isxPaozGVKXdv0eY" # str | Alphanumeric string identifying the service.
version_id = 1 # int | Integer identifying a service version.
# example passing only required values which don't have defaults set
try:
# List resource links
api_response = api_instance.list_resources(service_id, version_id)
pprint(api_response)
except fastly.ApiException as e:
print("Exception when calling ResourceApi->list_resources: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
service_id | str | Alphanumeric string identifying the service. | |
version_id | int | Integer identifying a service version. |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ResourceResponse update_resource(service_id, version_id, id)
Update a resource link
Update a link between a resource and a service version.
- Api Key Authentication (token):
import time
import fastly
from fastly.api import resource_api
from fastly.model.resource_response import ResourceResponse
from pprint import pprint
# Defining the host is optional and defaults to https://api.fastly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = fastly.Configuration(
host = "https://api.fastly.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: token
configuration.api_key['token'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['token'] = 'Bearer'
# Enter a context with an instance of the API client
with fastly.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = resource_api.ResourceApi(api_client)
service_id = "SU1Z0isxPaozGVKXdv0eY" # str | Alphanumeric string identifying the service.
version_id = 1 # int | Integer identifying a service version.
id = "7Lsb7Y76rChV9hSrv3KgFl" # str | An alphanumeric string identifying the resource link.
resource_id = "3vjTN8v1O7nOAY7aNDGOL" # str | The ID of the underlying linked resource. (optional)
name = "test-resource" # str | The name of the resource link. (optional)
# example passing only required values which don't have defaults set
try:
# Update a resource link
api_response = api_instance.update_resource(service_id, version_id, id)
pprint(api_response)
except fastly.ApiException as e:
print("Exception when calling ResourceApi->update_resource: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
# Update a resource link
api_response = api_instance.update_resource(service_id, version_id, id, resource_id=resource_id, name=name)
pprint(api_response)
except fastly.ApiException as e:
print("Exception when calling ResourceApi->update_resource: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
service_id | str | Alphanumeric string identifying the service. | |
version_id | int | Integer identifying a service version. | |
id | str | An alphanumeric string identifying the resource link. | |
resource_id | str | The ID of the underlying linked resource. | [optional] |
name | str | The name of the resource link. | [optional] |
- Content-Type: application/x-www-form-urlencoded
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]