docs/PackageApi.md in fastly-7.2.0 vs docs/PackageApi.md in fastly-7.2.1
- old
+ new
@@ -8,21 +8,21 @@
## Methods
| Method | HTTP request | Description |
| ------ | ------------ | ----------- |
-| [**get_package**](PackageApi.md#get_package) | **GET** /service/{service_id}/version/{version_id}/package | Get details of the service's Compute@Edge package. |
-| [**put_package**](PackageApi.md#put_package) | **PUT** /service/{service_id}/version/{version_id}/package | Upload a Compute@Edge package. |
+| [**get_package**](PackageApi.md#get_package) | **GET** /service/{service_id}/version/{version_id}/package | Get details of the service's Compute package. |
+| [**put_package**](PackageApi.md#put_package) | **PUT** /service/{service_id}/version/{version_id}/package | Upload a Compute package. |
## `get_package()`
```ruby
-get_package(opts): <PackageResponse> # Get details of the service's Compute@Edge package.
+get_package(opts): <PackageResponse> # Get details of the service's Compute package.
```
-List detailed information about the Compute@Edge package for the specified service.
+List detailed information about the Compute package for the specified service.
### Examples
```ruby
api_instance = Fastly::PackageApi.new
@@ -30,11 +30,11 @@
service_id: 'service_id_example', # String | Alphanumeric string identifying the service.
version_id: 56, # Integer | Integer identifying a service version.
}
begin
- # Get details of the service's Compute@Edge package.
+ # Get details of the service's Compute package.
result = api_instance.get_package(opts)
p result
rescue Fastly::ApiError => e
puts "Error when calling PackageApi->get_package: #{e}"
end
@@ -54,14 +54,14 @@
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
[[Back to README]](../../README.md)
## `put_package()`
```ruby
-put_package(opts): <PackageResponse> # Upload a Compute@Edge package.
+put_package(opts): <PackageResponse> # Upload a Compute package.
```
-Upload a Compute@Edge package associated with the specified service version.
+Upload a Compute package associated with the specified service version.
### Examples
```ruby
api_instance = Fastly::PackageApi.new
@@ -71,10 +71,10 @@
expect: '100-continue', # String | We recommend using the Expect header because it may identify issues with the request based upon the headers alone instead of requiring you to wait until the entire binary package upload has completed.
package: File.new('/path/to/some/file'), # File | The content of the Wasm binary package.
}
begin
- # Upload a Compute@Edge package.
+ # Upload a Compute package.
result = api_instance.put_package(opts)
p result
rescue Fastly::ApiError => e
puts "Error when calling PackageApi->put_package: #{e}"
end