Create Application Instance
panorama_create_application_instance | R Documentation |
Creates an application instance and deploys it to a device¶
Description¶
Creates an application instance and deploys it to a device.
Usage¶
panorama_create_application_instance(ApplicationInstanceIdToReplace,
DefaultRuntimeContextDevice, Description, ManifestOverridesPayload,
ManifestPayload, Name, RuntimeRoleArn, Tags)
Arguments¶
ApplicationInstanceIdToReplace |
The ID of an application instance to replace with the new instance. |
DefaultRuntimeContextDevice |
[required] A device's ID. |
Description |
A description for the application instance. |
ManifestOverridesPayload |
Setting overrides for the application manifest. |
ManifestPayload |
[required] The application's manifest document. |
Name |
A name for the application instance. |
RuntimeRoleArn |
The ARN of a runtime role for the application instance. |
Tags |
Tags for the application instance. |
Value¶
A list with the following syntax:
list(
ApplicationInstanceId = "string"
)
Request syntax¶
svc$create_application_instance(
ApplicationInstanceIdToReplace = "string",
DefaultRuntimeContextDevice = "string",
Description = "string",
ManifestOverridesPayload = list(
PayloadData = "string"
),
ManifestPayload = list(
PayloadData = "string"
),
Name = "string",
RuntimeRoleArn = "string",
Tags = list(
"string"
)
)