@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class AbstractAWSIoTSiteWiseAsync extends AbstractAWSIoTSiteWise implements AWSIoTSiteWiseAsync
AWSIoTSiteWiseAsync
. Convenient method forms pass through to the corresponding
overload that takes a request object and an AsyncHandler
, which throws an
UnsupportedOperationException
.ENDPOINT_PREFIX
associateAssets, batchAssociateProjectAssets, batchDisassociateProjectAssets, batchPutAssetPropertyValue, createAccessPolicy, createAsset, createAssetModel, createDashboard, createGateway, createPortal, createProject, deleteAccessPolicy, deleteAsset, deleteAssetModel, deleteDashboard, deleteGateway, deletePortal, deleteProject, describeAccessPolicy, describeAsset, describeAssetModel, describeAssetProperty, describeDashboard, describeGateway, describeGatewayCapabilityConfiguration, describeLoggingOptions, describePortal, describeProject, disassociateAssets, getAssetPropertyAggregates, getAssetPropertyValue, getAssetPropertyValueHistory, getCachedResponseMetadata, listAccessPolicies, listAssetModels, listAssets, listAssociatedAssets, listDashboards, listGateways, listPortals, listProjectAssets, listProjects, listTagsForResource, putLoggingOptions, shutdown, tagResource, untagResource, updateAccessPolicy, updateAsset, updateAssetModel, updateAssetProperty, updateDashboard, updateGateway, updateGatewayCapabilityConfiguration, updatePortal, updateProject, waiters
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
associateAssets, batchAssociateProjectAssets, batchDisassociateProjectAssets, batchPutAssetPropertyValue, createAccessPolicy, createAsset, createAssetModel, createDashboard, createGateway, createPortal, createProject, deleteAccessPolicy, deleteAsset, deleteAssetModel, deleteDashboard, deleteGateway, deletePortal, deleteProject, describeAccessPolicy, describeAsset, describeAssetModel, describeAssetProperty, describeDashboard, describeGateway, describeGatewayCapabilityConfiguration, describeLoggingOptions, describePortal, describeProject, disassociateAssets, getAssetPropertyAggregates, getAssetPropertyValue, getAssetPropertyValueHistory, getCachedResponseMetadata, listAccessPolicies, listAssetModels, listAssets, listAssociatedAssets, listDashboards, listGateways, listPortals, listProjectAssets, listProjects, listTagsForResource, putLoggingOptions, shutdown, tagResource, untagResource, updateAccessPolicy, updateAsset, updateAssetModel, updateAssetProperty, updateDashboard, updateGateway, updateGatewayCapabilityConfiguration, updatePortal, updateProject, waiters
public Future<AssociateAssetsResult> associateAssetsAsync(AssociateAssetsRequest request)
AWSIoTSiteWiseAsync
Associates a child asset with the given parent asset through a hierarchy defined in the parent asset's model. For more information, see Associating assets in the AWS IoT SiteWise User Guide.
associateAssetsAsync
in interface AWSIoTSiteWiseAsync
public Future<AssociateAssetsResult> associateAssetsAsync(AssociateAssetsRequest request, AsyncHandler<AssociateAssetsRequest,AssociateAssetsResult> asyncHandler)
AWSIoTSiteWiseAsync
Associates a child asset with the given parent asset through a hierarchy defined in the parent asset's model. For more information, see Associating assets in the AWS IoT SiteWise User Guide.
associateAssetsAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<BatchAssociateProjectAssetsResult> batchAssociateProjectAssetsAsync(BatchAssociateProjectAssetsRequest request)
AWSIoTSiteWiseAsync
Associates a group (batch) of assets with an AWS IoT SiteWise Monitor project.
batchAssociateProjectAssetsAsync
in interface AWSIoTSiteWiseAsync
public Future<BatchAssociateProjectAssetsResult> batchAssociateProjectAssetsAsync(BatchAssociateProjectAssetsRequest request, AsyncHandler<BatchAssociateProjectAssetsRequest,BatchAssociateProjectAssetsResult> asyncHandler)
AWSIoTSiteWiseAsync
Associates a group (batch) of assets with an AWS IoT SiteWise Monitor project.
batchAssociateProjectAssetsAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<BatchDisassociateProjectAssetsResult> batchDisassociateProjectAssetsAsync(BatchDisassociateProjectAssetsRequest request)
AWSIoTSiteWiseAsync
Disassociates a group (batch) of assets from an AWS IoT SiteWise Monitor project.
batchDisassociateProjectAssetsAsync
in interface AWSIoTSiteWiseAsync
public Future<BatchDisassociateProjectAssetsResult> batchDisassociateProjectAssetsAsync(BatchDisassociateProjectAssetsRequest request, AsyncHandler<BatchDisassociateProjectAssetsRequest,BatchDisassociateProjectAssetsResult> asyncHandler)
AWSIoTSiteWiseAsync
Disassociates a group (batch) of assets from an AWS IoT SiteWise Monitor project.
batchDisassociateProjectAssetsAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<BatchPutAssetPropertyValueResult> batchPutAssetPropertyValueAsync(BatchPutAssetPropertyValueRequest request)
AWSIoTSiteWiseAsync
Sends a list of asset property values to AWS IoT SiteWise. Each value is a timestamp-quality-value (TQV) data point. For more information, see Ingesting data using the API in the AWS IoT SiteWise User Guide.
To identify an asset property, you must specify one of the following:
The assetId
and propertyId
of an asset property.
A propertyAlias
, which is a data stream alias (for example,
/company/windfarm/3/turbine/7/temperature
). To define an asset property's alias, see UpdateAssetProperty.
With respect to Unix epoch time, AWS IoT SiteWise accepts only TQVs that have a timestamp of no more than 15
minutes in the past and no more than 5 minutes in the future. AWS IoT SiteWise rejects timestamps outside of the
inclusive range of [-15, +5] minutes and returns a TimestampOutOfRangeException
error.
For each asset property, AWS IoT SiteWise overwrites TQVs with duplicate timestamps unless the newer TQV has a
different quality. For example, if you store a TQV {T1, GOOD, V1}
, then storing
{T1, GOOD, V2}
replaces the existing TQV.
AWS IoT SiteWise authorizes access to each BatchPutAssetPropertyValue
entry individually. For more
information, see BatchPutAssetPropertyValue authorization in the AWS IoT SiteWise User Guide.
batchPutAssetPropertyValueAsync
in interface AWSIoTSiteWiseAsync
public Future<BatchPutAssetPropertyValueResult> batchPutAssetPropertyValueAsync(BatchPutAssetPropertyValueRequest request, AsyncHandler<BatchPutAssetPropertyValueRequest,BatchPutAssetPropertyValueResult> asyncHandler)
AWSIoTSiteWiseAsync
Sends a list of asset property values to AWS IoT SiteWise. Each value is a timestamp-quality-value (TQV) data point. For more information, see Ingesting data using the API in the AWS IoT SiteWise User Guide.
To identify an asset property, you must specify one of the following:
The assetId
and propertyId
of an asset property.
A propertyAlias
, which is a data stream alias (for example,
/company/windfarm/3/turbine/7/temperature
). To define an asset property's alias, see UpdateAssetProperty.
With respect to Unix epoch time, AWS IoT SiteWise accepts only TQVs that have a timestamp of no more than 15
minutes in the past and no more than 5 minutes in the future. AWS IoT SiteWise rejects timestamps outside of the
inclusive range of [-15, +5] minutes and returns a TimestampOutOfRangeException
error.
For each asset property, AWS IoT SiteWise overwrites TQVs with duplicate timestamps unless the newer TQV has a
different quality. For example, if you store a TQV {T1, GOOD, V1}
, then storing
{T1, GOOD, V2}
replaces the existing TQV.
AWS IoT SiteWise authorizes access to each BatchPutAssetPropertyValue
entry individually. For more
information, see BatchPutAssetPropertyValue authorization in the AWS IoT SiteWise User Guide.
batchPutAssetPropertyValueAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<CreateAccessPolicyResult> createAccessPolicyAsync(CreateAccessPolicyRequest request)
AWSIoTSiteWiseAsync
Creates an access policy that grants the specified AWS Single Sign-On user or group access to the specified AWS IoT SiteWise Monitor portal or project resource.
createAccessPolicyAsync
in interface AWSIoTSiteWiseAsync
public Future<CreateAccessPolicyResult> createAccessPolicyAsync(CreateAccessPolicyRequest request, AsyncHandler<CreateAccessPolicyRequest,CreateAccessPolicyResult> asyncHandler)
AWSIoTSiteWiseAsync
Creates an access policy that grants the specified AWS Single Sign-On user or group access to the specified AWS IoT SiteWise Monitor portal or project resource.
createAccessPolicyAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<CreateAssetResult> createAssetAsync(CreateAssetRequest request)
AWSIoTSiteWiseAsync
Creates an asset from an existing asset model. For more information, see Creating assets in the AWS IoT SiteWise User Guide.
createAssetAsync
in interface AWSIoTSiteWiseAsync
public Future<CreateAssetResult> createAssetAsync(CreateAssetRequest request, AsyncHandler<CreateAssetRequest,CreateAssetResult> asyncHandler)
AWSIoTSiteWiseAsync
Creates an asset from an existing asset model. For more information, see Creating assets in the AWS IoT SiteWise User Guide.
createAssetAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<CreateAssetModelResult> createAssetModelAsync(CreateAssetModelRequest request)
AWSIoTSiteWiseAsync
Creates an asset model from specified property and hierarchy definitions. You create assets from asset models. With asset models, you can easily create assets of the same type that have standardized definitions. Each asset created from a model inherits the asset model's property and hierarchy definitions. For more information, see Defining asset models in the AWS IoT SiteWise User Guide.
createAssetModelAsync
in interface AWSIoTSiteWiseAsync
public Future<CreateAssetModelResult> createAssetModelAsync(CreateAssetModelRequest request, AsyncHandler<CreateAssetModelRequest,CreateAssetModelResult> asyncHandler)
AWSIoTSiteWiseAsync
Creates an asset model from specified property and hierarchy definitions. You create assets from asset models. With asset models, you can easily create assets of the same type that have standardized definitions. Each asset created from a model inherits the asset model's property and hierarchy definitions. For more information, see Defining asset models in the AWS IoT SiteWise User Guide.
createAssetModelAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<CreateDashboardResult> createDashboardAsync(CreateDashboardRequest request)
AWSIoTSiteWiseAsync
Creates a dashboard in an AWS IoT SiteWise Monitor project.
createDashboardAsync
in interface AWSIoTSiteWiseAsync
public Future<CreateDashboardResult> createDashboardAsync(CreateDashboardRequest request, AsyncHandler<CreateDashboardRequest,CreateDashboardResult> asyncHandler)
AWSIoTSiteWiseAsync
Creates a dashboard in an AWS IoT SiteWise Monitor project.
createDashboardAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<CreateGatewayResult> createGatewayAsync(CreateGatewayRequest request)
AWSIoTSiteWiseAsync
Creates a gateway, which is a virtual or edge device that delivers industrial data streams from local servers to AWS IoT SiteWise. For more information, see Ingesting data using a gateway in the AWS IoT SiteWise User Guide.
createGatewayAsync
in interface AWSIoTSiteWiseAsync
public Future<CreateGatewayResult> createGatewayAsync(CreateGatewayRequest request, AsyncHandler<CreateGatewayRequest,CreateGatewayResult> asyncHandler)
AWSIoTSiteWiseAsync
Creates a gateway, which is a virtual or edge device that delivers industrial data streams from local servers to AWS IoT SiteWise. For more information, see Ingesting data using a gateway in the AWS IoT SiteWise User Guide.
createGatewayAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<CreatePortalResult> createPortalAsync(CreatePortalRequest request)
AWSIoTSiteWiseAsync
Creates a portal, which can contain projects and dashboards. Before you can create a portal, you must enable AWS Single Sign-On. AWS IoT SiteWise Monitor uses AWS SSO to manage user permissions. For more information, see Enabling AWS SSO in the AWS IoT SiteWise User Guide.
Before you can sign in to a new portal, you must add at least one AWS SSO user or group to that portal. For more information, see Adding or removing portal administrators in the AWS IoT SiteWise User Guide.
createPortalAsync
in interface AWSIoTSiteWiseAsync
public Future<CreatePortalResult> createPortalAsync(CreatePortalRequest request, AsyncHandler<CreatePortalRequest,CreatePortalResult> asyncHandler)
AWSIoTSiteWiseAsync
Creates a portal, which can contain projects and dashboards. Before you can create a portal, you must enable AWS Single Sign-On. AWS IoT SiteWise Monitor uses AWS SSO to manage user permissions. For more information, see Enabling AWS SSO in the AWS IoT SiteWise User Guide.
Before you can sign in to a new portal, you must add at least one AWS SSO user or group to that portal. For more information, see Adding or removing portal administrators in the AWS IoT SiteWise User Guide.
createPortalAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<CreateProjectResult> createProjectAsync(CreateProjectRequest request)
AWSIoTSiteWiseAsync
Creates a project in the specified portal.
createProjectAsync
in interface AWSIoTSiteWiseAsync
public Future<CreateProjectResult> createProjectAsync(CreateProjectRequest request, AsyncHandler<CreateProjectRequest,CreateProjectResult> asyncHandler)
AWSIoTSiteWiseAsync
Creates a project in the specified portal.
createProjectAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DeleteAccessPolicyResult> deleteAccessPolicyAsync(DeleteAccessPolicyRequest request)
AWSIoTSiteWiseAsync
Deletes an access policy that grants the specified AWS Single Sign-On identity access to the specified AWS IoT SiteWise Monitor resource. You can use this operation to revoke access to an AWS IoT SiteWise Monitor resource.
deleteAccessPolicyAsync
in interface AWSIoTSiteWiseAsync
public Future<DeleteAccessPolicyResult> deleteAccessPolicyAsync(DeleteAccessPolicyRequest request, AsyncHandler<DeleteAccessPolicyRequest,DeleteAccessPolicyResult> asyncHandler)
AWSIoTSiteWiseAsync
Deletes an access policy that grants the specified AWS Single Sign-On identity access to the specified AWS IoT SiteWise Monitor resource. You can use this operation to revoke access to an AWS IoT SiteWise Monitor resource.
deleteAccessPolicyAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DeleteAssetResult> deleteAssetAsync(DeleteAssetRequest request)
AWSIoTSiteWiseAsync
Deletes an asset. This action can't be undone. For more information, see Deleting assets and models in the AWS IoT SiteWise User Guide.
You can't delete an asset that's associated to another asset. For more information, see DisassociateAssets.
deleteAssetAsync
in interface AWSIoTSiteWiseAsync
public Future<DeleteAssetResult> deleteAssetAsync(DeleteAssetRequest request, AsyncHandler<DeleteAssetRequest,DeleteAssetResult> asyncHandler)
AWSIoTSiteWiseAsync
Deletes an asset. This action can't be undone. For more information, see Deleting assets and models in the AWS IoT SiteWise User Guide.
You can't delete an asset that's associated to another asset. For more information, see DisassociateAssets.
deleteAssetAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DeleteAssetModelResult> deleteAssetModelAsync(DeleteAssetModelRequest request)
AWSIoTSiteWiseAsync
Deletes an asset model. This action can't be undone. You must delete all assets created from an asset model before you can delete the model. Also, you can't delete an asset model if a parent asset model exists that contains a property formula expression that depends on the asset model that you want to delete. For more information, see Deleting assets and models in the AWS IoT SiteWise User Guide.
deleteAssetModelAsync
in interface AWSIoTSiteWiseAsync
public Future<DeleteAssetModelResult> deleteAssetModelAsync(DeleteAssetModelRequest request, AsyncHandler<DeleteAssetModelRequest,DeleteAssetModelResult> asyncHandler)
AWSIoTSiteWiseAsync
Deletes an asset model. This action can't be undone. You must delete all assets created from an asset model before you can delete the model. Also, you can't delete an asset model if a parent asset model exists that contains a property formula expression that depends on the asset model that you want to delete. For more information, see Deleting assets and models in the AWS IoT SiteWise User Guide.
deleteAssetModelAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DeleteDashboardResult> deleteDashboardAsync(DeleteDashboardRequest request)
AWSIoTSiteWiseAsync
Deletes a dashboard from AWS IoT SiteWise Monitor.
deleteDashboardAsync
in interface AWSIoTSiteWiseAsync
public Future<DeleteDashboardResult> deleteDashboardAsync(DeleteDashboardRequest request, AsyncHandler<DeleteDashboardRequest,DeleteDashboardResult> asyncHandler)
AWSIoTSiteWiseAsync
Deletes a dashboard from AWS IoT SiteWise Monitor.
deleteDashboardAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DeleteGatewayResult> deleteGatewayAsync(DeleteGatewayRequest request)
AWSIoTSiteWiseAsync
Deletes a gateway from AWS IoT SiteWise. When you delete a gateway, some of the gateway's files remain in your gateway's file system. For more information, see Data retention in the AWS IoT SiteWise User Guide.
deleteGatewayAsync
in interface AWSIoTSiteWiseAsync
public Future<DeleteGatewayResult> deleteGatewayAsync(DeleteGatewayRequest request, AsyncHandler<DeleteGatewayRequest,DeleteGatewayResult> asyncHandler)
AWSIoTSiteWiseAsync
Deletes a gateway from AWS IoT SiteWise. When you delete a gateway, some of the gateway's files remain in your gateway's file system. For more information, see Data retention in the AWS IoT SiteWise User Guide.
deleteGatewayAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DeletePortalResult> deletePortalAsync(DeletePortalRequest request)
AWSIoTSiteWiseAsync
Deletes a portal from AWS IoT SiteWise Monitor.
deletePortalAsync
in interface AWSIoTSiteWiseAsync
public Future<DeletePortalResult> deletePortalAsync(DeletePortalRequest request, AsyncHandler<DeletePortalRequest,DeletePortalResult> asyncHandler)
AWSIoTSiteWiseAsync
Deletes a portal from AWS IoT SiteWise Monitor.
deletePortalAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DeleteProjectResult> deleteProjectAsync(DeleteProjectRequest request)
AWSIoTSiteWiseAsync
Deletes a project from AWS IoT SiteWise Monitor.
deleteProjectAsync
in interface AWSIoTSiteWiseAsync
public Future<DeleteProjectResult> deleteProjectAsync(DeleteProjectRequest request, AsyncHandler<DeleteProjectRequest,DeleteProjectResult> asyncHandler)
AWSIoTSiteWiseAsync
Deletes a project from AWS IoT SiteWise Monitor.
deleteProjectAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DescribeAccessPolicyResult> describeAccessPolicyAsync(DescribeAccessPolicyRequest request)
AWSIoTSiteWiseAsync
Describes an access policy, which specifies an AWS SSO user or group's access to an AWS IoT SiteWise Monitor portal or project.
describeAccessPolicyAsync
in interface AWSIoTSiteWiseAsync
public Future<DescribeAccessPolicyResult> describeAccessPolicyAsync(DescribeAccessPolicyRequest request, AsyncHandler<DescribeAccessPolicyRequest,DescribeAccessPolicyResult> asyncHandler)
AWSIoTSiteWiseAsync
Describes an access policy, which specifies an AWS SSO user or group's access to an AWS IoT SiteWise Monitor portal or project.
describeAccessPolicyAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DescribeAssetResult> describeAssetAsync(DescribeAssetRequest request)
AWSIoTSiteWiseAsync
Retrieves information about an asset.
describeAssetAsync
in interface AWSIoTSiteWiseAsync
public Future<DescribeAssetResult> describeAssetAsync(DescribeAssetRequest request, AsyncHandler<DescribeAssetRequest,DescribeAssetResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves information about an asset.
describeAssetAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DescribeAssetModelResult> describeAssetModelAsync(DescribeAssetModelRequest request)
AWSIoTSiteWiseAsync
Retrieves information about an asset model.
describeAssetModelAsync
in interface AWSIoTSiteWiseAsync
public Future<DescribeAssetModelResult> describeAssetModelAsync(DescribeAssetModelRequest request, AsyncHandler<DescribeAssetModelRequest,DescribeAssetModelResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves information about an asset model.
describeAssetModelAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DescribeAssetPropertyResult> describeAssetPropertyAsync(DescribeAssetPropertyRequest request)
AWSIoTSiteWiseAsync
Retrieves information about an asset property.
When you call this operation for an attribute property, this response includes the default attribute value that you define in the asset model. If you update the default value in the model, this operation's response includes the new default value.
This operation doesn't return the value of the asset property. To get the value of an asset property, use GetAssetPropertyValue.
describeAssetPropertyAsync
in interface AWSIoTSiteWiseAsync
public Future<DescribeAssetPropertyResult> describeAssetPropertyAsync(DescribeAssetPropertyRequest request, AsyncHandler<DescribeAssetPropertyRequest,DescribeAssetPropertyResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves information about an asset property.
When you call this operation for an attribute property, this response includes the default attribute value that you define in the asset model. If you update the default value in the model, this operation's response includes the new default value.
This operation doesn't return the value of the asset property. To get the value of an asset property, use GetAssetPropertyValue.
describeAssetPropertyAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DescribeDashboardResult> describeDashboardAsync(DescribeDashboardRequest request)
AWSIoTSiteWiseAsync
Retrieves information about a dashboard.
describeDashboardAsync
in interface AWSIoTSiteWiseAsync
public Future<DescribeDashboardResult> describeDashboardAsync(DescribeDashboardRequest request, AsyncHandler<DescribeDashboardRequest,DescribeDashboardResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves information about a dashboard.
describeDashboardAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DescribeGatewayResult> describeGatewayAsync(DescribeGatewayRequest request)
AWSIoTSiteWiseAsync
Retrieves information about a gateway.
describeGatewayAsync
in interface AWSIoTSiteWiseAsync
public Future<DescribeGatewayResult> describeGatewayAsync(DescribeGatewayRequest request, AsyncHandler<DescribeGatewayRequest,DescribeGatewayResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves information about a gateway.
describeGatewayAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DescribeGatewayCapabilityConfigurationResult> describeGatewayCapabilityConfigurationAsync(DescribeGatewayCapabilityConfigurationRequest request)
AWSIoTSiteWiseAsync
Retrieves information about a gateway capability configuration. Each gateway capability defines data sources for a gateway. A capability configuration can contain multiple data source configurations. If you define OPC-UA sources for a gateway in the AWS IoT SiteWise console, all of your OPC-UA sources are stored in one capability configuration. To list all capability configurations for a gateway, use DescribeGateway.
describeGatewayCapabilityConfigurationAsync
in interface AWSIoTSiteWiseAsync
public Future<DescribeGatewayCapabilityConfigurationResult> describeGatewayCapabilityConfigurationAsync(DescribeGatewayCapabilityConfigurationRequest request, AsyncHandler<DescribeGatewayCapabilityConfigurationRequest,DescribeGatewayCapabilityConfigurationResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves information about a gateway capability configuration. Each gateway capability defines data sources for a gateway. A capability configuration can contain multiple data source configurations. If you define OPC-UA sources for a gateway in the AWS IoT SiteWise console, all of your OPC-UA sources are stored in one capability configuration. To list all capability configurations for a gateway, use DescribeGateway.
describeGatewayCapabilityConfigurationAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DescribeLoggingOptionsResult> describeLoggingOptionsAsync(DescribeLoggingOptionsRequest request)
AWSIoTSiteWiseAsync
Retrieves the current AWS IoT SiteWise logging options.
describeLoggingOptionsAsync
in interface AWSIoTSiteWiseAsync
public Future<DescribeLoggingOptionsResult> describeLoggingOptionsAsync(DescribeLoggingOptionsRequest request, AsyncHandler<DescribeLoggingOptionsRequest,DescribeLoggingOptionsResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves the current AWS IoT SiteWise logging options.
describeLoggingOptionsAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DescribePortalResult> describePortalAsync(DescribePortalRequest request)
AWSIoTSiteWiseAsync
Retrieves information about a portal.
describePortalAsync
in interface AWSIoTSiteWiseAsync
public Future<DescribePortalResult> describePortalAsync(DescribePortalRequest request, AsyncHandler<DescribePortalRequest,DescribePortalResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves information about a portal.
describePortalAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DescribeProjectResult> describeProjectAsync(DescribeProjectRequest request)
AWSIoTSiteWiseAsync
Retrieves information about a project.
describeProjectAsync
in interface AWSIoTSiteWiseAsync
public Future<DescribeProjectResult> describeProjectAsync(DescribeProjectRequest request, AsyncHandler<DescribeProjectRequest,DescribeProjectResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves information about a project.
describeProjectAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DisassociateAssetsResult> disassociateAssetsAsync(DisassociateAssetsRequest request)
AWSIoTSiteWiseAsync
Disassociates a child asset from the given parent asset through a hierarchy defined in the parent asset's model.
disassociateAssetsAsync
in interface AWSIoTSiteWiseAsync
public Future<DisassociateAssetsResult> disassociateAssetsAsync(DisassociateAssetsRequest request, AsyncHandler<DisassociateAssetsRequest,DisassociateAssetsResult> asyncHandler)
AWSIoTSiteWiseAsync
Disassociates a child asset from the given parent asset through a hierarchy defined in the parent asset's model.
disassociateAssetsAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<GetAssetPropertyAggregatesResult> getAssetPropertyAggregatesAsync(GetAssetPropertyAggregatesRequest request)
AWSIoTSiteWiseAsync
Gets aggregated values for an asset property. For more information, see Querying aggregates in the AWS IoT SiteWise User Guide.
To identify an asset property, you must specify one of the following:
The assetId
and propertyId
of an asset property.
A propertyAlias
, which is a data stream alias (for example,
/company/windfarm/3/turbine/7/temperature
). To define an asset property's alias, see UpdateAssetProperty.
getAssetPropertyAggregatesAsync
in interface AWSIoTSiteWiseAsync
public Future<GetAssetPropertyAggregatesResult> getAssetPropertyAggregatesAsync(GetAssetPropertyAggregatesRequest request, AsyncHandler<GetAssetPropertyAggregatesRequest,GetAssetPropertyAggregatesResult> asyncHandler)
AWSIoTSiteWiseAsync
Gets aggregated values for an asset property. For more information, see Querying aggregates in the AWS IoT SiteWise User Guide.
To identify an asset property, you must specify one of the following:
The assetId
and propertyId
of an asset property.
A propertyAlias
, which is a data stream alias (for example,
/company/windfarm/3/turbine/7/temperature
). To define an asset property's alias, see UpdateAssetProperty.
getAssetPropertyAggregatesAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<GetAssetPropertyValueResult> getAssetPropertyValueAsync(GetAssetPropertyValueRequest request)
AWSIoTSiteWiseAsync
Gets an asset property's current value. For more information, see Querying current values in the AWS IoT SiteWise User Guide.
To identify an asset property, you must specify one of the following:
The assetId
and propertyId
of an asset property.
A propertyAlias
, which is a data stream alias (for example,
/company/windfarm/3/turbine/7/temperature
). To define an asset property's alias, see UpdateAssetProperty.
getAssetPropertyValueAsync
in interface AWSIoTSiteWiseAsync
public Future<GetAssetPropertyValueResult> getAssetPropertyValueAsync(GetAssetPropertyValueRequest request, AsyncHandler<GetAssetPropertyValueRequest,GetAssetPropertyValueResult> asyncHandler)
AWSIoTSiteWiseAsync
Gets an asset property's current value. For more information, see Querying current values in the AWS IoT SiteWise User Guide.
To identify an asset property, you must specify one of the following:
The assetId
and propertyId
of an asset property.
A propertyAlias
, which is a data stream alias (for example,
/company/windfarm/3/turbine/7/temperature
). To define an asset property's alias, see UpdateAssetProperty.
getAssetPropertyValueAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<GetAssetPropertyValueHistoryResult> getAssetPropertyValueHistoryAsync(GetAssetPropertyValueHistoryRequest request)
AWSIoTSiteWiseAsync
Gets the history of an asset property's values. For more information, see Querying historical values in the AWS IoT SiteWise User Guide.
To identify an asset property, you must specify one of the following:
The assetId
and propertyId
of an asset property.
A propertyAlias
, which is a data stream alias (for example,
/company/windfarm/3/turbine/7/temperature
). To define an asset property's alias, see UpdateAssetProperty.
getAssetPropertyValueHistoryAsync
in interface AWSIoTSiteWiseAsync
public Future<GetAssetPropertyValueHistoryResult> getAssetPropertyValueHistoryAsync(GetAssetPropertyValueHistoryRequest request, AsyncHandler<GetAssetPropertyValueHistoryRequest,GetAssetPropertyValueHistoryResult> asyncHandler)
AWSIoTSiteWiseAsync
Gets the history of an asset property's values. For more information, see Querying historical values in the AWS IoT SiteWise User Guide.
To identify an asset property, you must specify one of the following:
The assetId
and propertyId
of an asset property.
A propertyAlias
, which is a data stream alias (for example,
/company/windfarm/3/turbine/7/temperature
). To define an asset property's alias, see UpdateAssetProperty.
getAssetPropertyValueHistoryAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<ListAccessPoliciesResult> listAccessPoliciesAsync(ListAccessPoliciesRequest request)
AWSIoTSiteWiseAsync
Retrieves a paginated list of access policies for an AWS SSO identity (a user or group) or an AWS IoT SiteWise Monitor resource (a portal or project).
listAccessPoliciesAsync
in interface AWSIoTSiteWiseAsync
public Future<ListAccessPoliciesResult> listAccessPoliciesAsync(ListAccessPoliciesRequest request, AsyncHandler<ListAccessPoliciesRequest,ListAccessPoliciesResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves a paginated list of access policies for an AWS SSO identity (a user or group) or an AWS IoT SiteWise Monitor resource (a portal or project).
listAccessPoliciesAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<ListAssetModelsResult> listAssetModelsAsync(ListAssetModelsRequest request)
AWSIoTSiteWiseAsync
Retrieves a paginated list of summaries of all asset models.
listAssetModelsAsync
in interface AWSIoTSiteWiseAsync
public Future<ListAssetModelsResult> listAssetModelsAsync(ListAssetModelsRequest request, AsyncHandler<ListAssetModelsRequest,ListAssetModelsResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves a paginated list of summaries of all asset models.
listAssetModelsAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<ListAssetsResult> listAssetsAsync(ListAssetsRequest request)
AWSIoTSiteWiseAsync
Retrieves a paginated list of asset summaries.
You can use this operation to do the following:
List assets based on a specific asset model.
List top-level assets.
You can't use this operation to list all assets. To retrieve summaries for all of your assets, use ListAssetModels to get all of your asset model IDs. Then, use ListAssets to get all assets for each asset model.
listAssetsAsync
in interface AWSIoTSiteWiseAsync
public Future<ListAssetsResult> listAssetsAsync(ListAssetsRequest request, AsyncHandler<ListAssetsRequest,ListAssetsResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves a paginated list of asset summaries.
You can use this operation to do the following:
List assets based on a specific asset model.
List top-level assets.
You can't use this operation to list all assets. To retrieve summaries for all of your assets, use ListAssetModels to get all of your asset model IDs. Then, use ListAssets to get all assets for each asset model.
listAssetsAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<ListAssociatedAssetsResult> listAssociatedAssetsAsync(ListAssociatedAssetsRequest request)
AWSIoTSiteWiseAsync
Retrieves a paginated list of associated assets.
You can use this operation to do the following:
List child assets associated to a parent asset by a hierarchy that you specify.
List an asset's parent asset.
listAssociatedAssetsAsync
in interface AWSIoTSiteWiseAsync
public Future<ListAssociatedAssetsResult> listAssociatedAssetsAsync(ListAssociatedAssetsRequest request, AsyncHandler<ListAssociatedAssetsRequest,ListAssociatedAssetsResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves a paginated list of associated assets.
You can use this operation to do the following:
List child assets associated to a parent asset by a hierarchy that you specify.
List an asset's parent asset.
listAssociatedAssetsAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<ListDashboardsResult> listDashboardsAsync(ListDashboardsRequest request)
AWSIoTSiteWiseAsync
Retrieves a paginated list of dashboards for an AWS IoT SiteWise Monitor project.
listDashboardsAsync
in interface AWSIoTSiteWiseAsync
public Future<ListDashboardsResult> listDashboardsAsync(ListDashboardsRequest request, AsyncHandler<ListDashboardsRequest,ListDashboardsResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves a paginated list of dashboards for an AWS IoT SiteWise Monitor project.
listDashboardsAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<ListGatewaysResult> listGatewaysAsync(ListGatewaysRequest request)
AWSIoTSiteWiseAsync
Retrieves a paginated list of gateways.
listGatewaysAsync
in interface AWSIoTSiteWiseAsync
public Future<ListGatewaysResult> listGatewaysAsync(ListGatewaysRequest request, AsyncHandler<ListGatewaysRequest,ListGatewaysResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves a paginated list of gateways.
listGatewaysAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<ListPortalsResult> listPortalsAsync(ListPortalsRequest request)
AWSIoTSiteWiseAsync
Retrieves a paginated list of AWS IoT SiteWise Monitor portals.
listPortalsAsync
in interface AWSIoTSiteWiseAsync
public Future<ListPortalsResult> listPortalsAsync(ListPortalsRequest request, AsyncHandler<ListPortalsRequest,ListPortalsResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves a paginated list of AWS IoT SiteWise Monitor portals.
listPortalsAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<ListProjectAssetsResult> listProjectAssetsAsync(ListProjectAssetsRequest request)
AWSIoTSiteWiseAsync
Retrieves a paginated list of assets associated with an AWS IoT SiteWise Monitor project.
listProjectAssetsAsync
in interface AWSIoTSiteWiseAsync
public Future<ListProjectAssetsResult> listProjectAssetsAsync(ListProjectAssetsRequest request, AsyncHandler<ListProjectAssetsRequest,ListProjectAssetsResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves a paginated list of assets associated with an AWS IoT SiteWise Monitor project.
listProjectAssetsAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<ListProjectsResult> listProjectsAsync(ListProjectsRequest request)
AWSIoTSiteWiseAsync
Retrieves a paginated list of projects for an AWS IoT SiteWise Monitor portal.
listProjectsAsync
in interface AWSIoTSiteWiseAsync
public Future<ListProjectsResult> listProjectsAsync(ListProjectsRequest request, AsyncHandler<ListProjectsRequest,ListProjectsResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves a paginated list of projects for an AWS IoT SiteWise Monitor portal.
listProjectsAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<ListTagsForResourceResult> listTagsForResourceAsync(ListTagsForResourceRequest request)
AWSIoTSiteWiseAsync
Retrieves the list of tags for an AWS IoT SiteWise resource.
listTagsForResourceAsync
in interface AWSIoTSiteWiseAsync
public Future<ListTagsForResourceResult> listTagsForResourceAsync(ListTagsForResourceRequest request, AsyncHandler<ListTagsForResourceRequest,ListTagsForResourceResult> asyncHandler)
AWSIoTSiteWiseAsync
Retrieves the list of tags for an AWS IoT SiteWise resource.
listTagsForResourceAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<PutLoggingOptionsResult> putLoggingOptionsAsync(PutLoggingOptionsRequest request)
AWSIoTSiteWiseAsync
Sets logging options for AWS IoT SiteWise.
putLoggingOptionsAsync
in interface AWSIoTSiteWiseAsync
public Future<PutLoggingOptionsResult> putLoggingOptionsAsync(PutLoggingOptionsRequest request, AsyncHandler<PutLoggingOptionsRequest,PutLoggingOptionsResult> asyncHandler)
AWSIoTSiteWiseAsync
Sets logging options for AWS IoT SiteWise.
putLoggingOptionsAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<TagResourceResult> tagResourceAsync(TagResourceRequest request)
AWSIoTSiteWiseAsync
Adds tags to an AWS IoT SiteWise resource. If a tag already exists for the resource, this operation updates the tag's value.
tagResourceAsync
in interface AWSIoTSiteWiseAsync
public Future<TagResourceResult> tagResourceAsync(TagResourceRequest request, AsyncHandler<TagResourceRequest,TagResourceResult> asyncHandler)
AWSIoTSiteWiseAsync
Adds tags to an AWS IoT SiteWise resource. If a tag already exists for the resource, this operation updates the tag's value.
tagResourceAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<UntagResourceResult> untagResourceAsync(UntagResourceRequest request)
AWSIoTSiteWiseAsync
Removes a tag from an AWS IoT SiteWise resource.
untagResourceAsync
in interface AWSIoTSiteWiseAsync
public Future<UntagResourceResult> untagResourceAsync(UntagResourceRequest request, AsyncHandler<UntagResourceRequest,UntagResourceResult> asyncHandler)
AWSIoTSiteWiseAsync
Removes a tag from an AWS IoT SiteWise resource.
untagResourceAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<UpdateAccessPolicyResult> updateAccessPolicyAsync(UpdateAccessPolicyRequest request)
AWSIoTSiteWiseAsync
Updates an existing access policy that specifies an AWS SSO user or group's access to an AWS IoT SiteWise Monitor portal or project resource.
updateAccessPolicyAsync
in interface AWSIoTSiteWiseAsync
public Future<UpdateAccessPolicyResult> updateAccessPolicyAsync(UpdateAccessPolicyRequest request, AsyncHandler<UpdateAccessPolicyRequest,UpdateAccessPolicyResult> asyncHandler)
AWSIoTSiteWiseAsync
Updates an existing access policy that specifies an AWS SSO user or group's access to an AWS IoT SiteWise Monitor portal or project resource.
updateAccessPolicyAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<UpdateAssetResult> updateAssetAsync(UpdateAssetRequest request)
AWSIoTSiteWiseAsync
Updates an asset's name. For more information, see Updating assets and models in the AWS IoT SiteWise User Guide.
updateAssetAsync
in interface AWSIoTSiteWiseAsync
public Future<UpdateAssetResult> updateAssetAsync(UpdateAssetRequest request, AsyncHandler<UpdateAssetRequest,UpdateAssetResult> asyncHandler)
AWSIoTSiteWiseAsync
Updates an asset's name. For more information, see Updating assets and models in the AWS IoT SiteWise User Guide.
updateAssetAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<UpdateAssetModelResult> updateAssetModelAsync(UpdateAssetModelRequest request)
AWSIoTSiteWiseAsync
Updates an asset model and all of the assets that were created from the model. Each asset created from the model inherits the updated asset model's property and hierarchy definitions. For more information, see Updating assets and models in the AWS IoT SiteWise User Guide.
This operation overwrites the existing model with the provided model. To avoid deleting your asset model's properties or hierarchies, you must include their IDs and definitions in the updated asset model payload. For more information, see DescribeAssetModel.
If you remove a property from an asset model or update a property's formula expression, AWS IoT SiteWise deletes all previous data for that property. If you remove a hierarchy definition from an asset model, AWS IoT SiteWise disassociates every asset associated with that hierarchy. You can't change the type or data type of an existing property.
updateAssetModelAsync
in interface AWSIoTSiteWiseAsync
public Future<UpdateAssetModelResult> updateAssetModelAsync(UpdateAssetModelRequest request, AsyncHandler<UpdateAssetModelRequest,UpdateAssetModelResult> asyncHandler)
AWSIoTSiteWiseAsync
Updates an asset model and all of the assets that were created from the model. Each asset created from the model inherits the updated asset model's property and hierarchy definitions. For more information, see Updating assets and models in the AWS IoT SiteWise User Guide.
This operation overwrites the existing model with the provided model. To avoid deleting your asset model's properties or hierarchies, you must include their IDs and definitions in the updated asset model payload. For more information, see DescribeAssetModel.
If you remove a property from an asset model or update a property's formula expression, AWS IoT SiteWise deletes all previous data for that property. If you remove a hierarchy definition from an asset model, AWS IoT SiteWise disassociates every asset associated with that hierarchy. You can't change the type or data type of an existing property.
updateAssetModelAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<UpdateAssetPropertyResult> updateAssetPropertyAsync(UpdateAssetPropertyRequest request)
AWSIoTSiteWiseAsync
Updates an asset property's alias and notification state.
This operation overwrites the property's existing alias and notification state. To keep your existing property's alias or notification state, you must include the existing values in the UpdateAssetProperty request. For more information, see DescribeAssetProperty.
updateAssetPropertyAsync
in interface AWSIoTSiteWiseAsync
public Future<UpdateAssetPropertyResult> updateAssetPropertyAsync(UpdateAssetPropertyRequest request, AsyncHandler<UpdateAssetPropertyRequest,UpdateAssetPropertyResult> asyncHandler)
AWSIoTSiteWiseAsync
Updates an asset property's alias and notification state.
This operation overwrites the property's existing alias and notification state. To keep your existing property's alias or notification state, you must include the existing values in the UpdateAssetProperty request. For more information, see DescribeAssetProperty.
updateAssetPropertyAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<UpdateDashboardResult> updateDashboardAsync(UpdateDashboardRequest request)
AWSIoTSiteWiseAsync
Updates an AWS IoT SiteWise Monitor dashboard.
updateDashboardAsync
in interface AWSIoTSiteWiseAsync
public Future<UpdateDashboardResult> updateDashboardAsync(UpdateDashboardRequest request, AsyncHandler<UpdateDashboardRequest,UpdateDashboardResult> asyncHandler)
AWSIoTSiteWiseAsync
Updates an AWS IoT SiteWise Monitor dashboard.
updateDashboardAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<UpdateGatewayResult> updateGatewayAsync(UpdateGatewayRequest request)
AWSIoTSiteWiseAsync
Updates a gateway's name.
updateGatewayAsync
in interface AWSIoTSiteWiseAsync
public Future<UpdateGatewayResult> updateGatewayAsync(UpdateGatewayRequest request, AsyncHandler<UpdateGatewayRequest,UpdateGatewayResult> asyncHandler)
AWSIoTSiteWiseAsync
Updates a gateway's name.
updateGatewayAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<UpdateGatewayCapabilityConfigurationResult> updateGatewayCapabilityConfigurationAsync(UpdateGatewayCapabilityConfigurationRequest request)
AWSIoTSiteWiseAsync
Updates a gateway capability configuration or defines a new capability configuration. Each gateway capability defines data sources for a gateway. A capability configuration can contain multiple data source configurations. If you define OPC-UA sources for a gateway in the AWS IoT SiteWise console, all of your OPC-UA sources are stored in one capability configuration. To list all capability configurations for a gateway, use DescribeGateway.
updateGatewayCapabilityConfigurationAsync
in interface AWSIoTSiteWiseAsync
public Future<UpdateGatewayCapabilityConfigurationResult> updateGatewayCapabilityConfigurationAsync(UpdateGatewayCapabilityConfigurationRequest request, AsyncHandler<UpdateGatewayCapabilityConfigurationRequest,UpdateGatewayCapabilityConfigurationResult> asyncHandler)
AWSIoTSiteWiseAsync
Updates a gateway capability configuration or defines a new capability configuration. Each gateway capability defines data sources for a gateway. A capability configuration can contain multiple data source configurations. If you define OPC-UA sources for a gateway in the AWS IoT SiteWise console, all of your OPC-UA sources are stored in one capability configuration. To list all capability configurations for a gateway, use DescribeGateway.
updateGatewayCapabilityConfigurationAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<UpdatePortalResult> updatePortalAsync(UpdatePortalRequest request)
AWSIoTSiteWiseAsync
Updates an AWS IoT SiteWise Monitor portal.
updatePortalAsync
in interface AWSIoTSiteWiseAsync
public Future<UpdatePortalResult> updatePortalAsync(UpdatePortalRequest request, AsyncHandler<UpdatePortalRequest,UpdatePortalResult> asyncHandler)
AWSIoTSiteWiseAsync
Updates an AWS IoT SiteWise Monitor portal.
updatePortalAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<UpdateProjectResult> updateProjectAsync(UpdateProjectRequest request)
AWSIoTSiteWiseAsync
Updates an AWS IoT SiteWise Monitor project.
updateProjectAsync
in interface AWSIoTSiteWiseAsync
public Future<UpdateProjectResult> updateProjectAsync(UpdateProjectRequest request, AsyncHandler<UpdateProjectRequest,UpdateProjectResult> asyncHandler)
AWSIoTSiteWiseAsync
Updates an AWS IoT SiteWise Monitor project.
updateProjectAsync
in interface AWSIoTSiteWiseAsync
asyncHandler
- Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.