deploy_service_package_to_nodes
Creates, updates, deletes, gets or lists a deploy_service_package_to_nodes resource.
Overview
| Name | deploy_service_package_to_nodes |
| Type | Resource |
| Id | azure.service_fabric_dataplane.deploy_service_package_to_nodes |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
deploy_service_package_to_node | exec | node_name, endpoint, ServiceManifestName, ApplicationTypeName, ApplicationTypeVersion, NodeName | timeout | Downloads all of the code packages associated with specified service manifest on the specified node. This API provides a way to download code packages including the container images on a specific node outside of the normal application deployment and upgrade path. This is useful for the large code packages and container images to be present on the node before the actual application deployment and upgrade, thus significantly reducing the total time required for the deployment or upgrade. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
endpoint | string | The service endpoint host (no scheme). (default: ) |
node_name | string | The name of the node. |
timeout | integer (int64) | The server timeout for performing the operation in seconds. This timeout specifies the time duration that the client is willing to wait for the requested operation to complete. The default value for this parameter is 60 seconds. |
Lifecycle Methods
- deploy_service_package_to_node
Downloads all of the code packages associated with specified service manifest on the specified node. This API provides a way to download code packages including the container images on a specific node outside of the normal application deployment and upgrade path. This is useful for the large code packages and container images to be present on the node before the actual application deployment and upgrade, thus significantly reducing the total time required for the deployment or upgrade.
EXEC azure.service_fabric_dataplane.deploy_service_package_to_nodes.deploy_service_package_to_node
@node_name='{{ node_name }}' --required,
@endpoint='{{ endpoint }}' --required,
@timeout='{{ timeout }}'
@@json=
'{
"ServiceManifestName": "{{ ServiceManifestName }}",
"ApplicationTypeName": "{{ ApplicationTypeName }}",
"ApplicationTypeVersion": "{{ ApplicationTypeVersion }}",
"NodeName": "{{ NodeName }}",
"PackageSharingPolicy": "{{ PackageSharingPolicy }}"
}'
;