Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added manipulation PhysicallyDisconnectRemovableSubsystemAfterPhysicalConnectorProvided #94

Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- manipulation PhysicallyDisconnectRemovableSubsystemAfterPhysicalConnectorProvided
- manipulation SetActiveModeOfOperation for metrics
- manipulation PhysicallyDisconnectRemovableSubsystemAfterSettingActivationStateOnOrStndBy
- manipulation RequestIndicationOfNextCalibrationTimeRequired for devices
Expand Down
19 changes: 19 additions & 0 deletions src/t2iapi/combined/service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,23 @@ service CombinedService {
*/
rpc PhysicallyDisconnectRemovableSubsystemAfterSettingActivationStateOnOrStndBy (BasicHandleRequest)
returns (BasicResponse);

/*
Request to ensure that the pm:AbstractDeviceComponentState corresponding to the specified handle has a
pstaeck marked this conversation as resolved.
Show resolved Hide resolved
pm:AbstractDeviceComponentState/pm:PhysicalConnector element and then to
physically disconnect the removable subsystem being represented by the
corresponding pm:AbstractDeviceComponentDescriptor all while persisting the aforementioned pm:PhysicalConnector
except when it is necessary to change it due to the physical disconnection by means other than this manipulation.

The pm:PhysicalConnector as requested shall be persisted in all cases except (indirectly)
as a result of the physical disconnection.
Reasons other than the physical disconnection constitute a RESULT_NOT_SUPPORTED or RESULT_FAIL.
In case the pm:PhysicalConnector is not going to be persisted it shall not be a direct result of this manipulation,
i.e. this manipulation shall not directly change the pm:PhysicalConnector in a way not described here.

In case the pm:AbstractDeviceComponentDescriptor with the specified handle does not represent a removable subsystem
it shall return RESULT_NOT_SUPPORTED.
*/
rpc PhysicallyDisconnectRemovableSubsystemAfterPhysicalConnectorProvided (BasicHandleRequest)
returns (BasicResponse);
}
Loading