AppSyncRequest Class
(QtAws::AppSync::AppSyncRequest)The AppSyncRequest class provides an interface for AppSync requests. More...
Public Types
| enum | Action { CreateApiKeyAction, CreateDataSourceAction, CreateGraphqlApiAction, CreateResolverAction, ..., UpdateTypeAction } |
| flags | Actions |
Public Functions
| AppSyncRequest(const Action action) | |
| AppSyncRequest(const AppSyncRequest &other) | |
| Action | action() const |
| QString | actionString() const |
| QString | apiVersion() const |
| void | setAction(const Action action) |
| void | setApiVersion(const QString &version) |
| AppSyncRequest & | operator=(const AppSyncRequest &other) |
| virtual bool | operator==(const AppSyncRequest &other) const |
- 7 public functions inherited from QtAws::Core::AwsAbstractRequest
Protected Functions
| AppSyncRequest(AppSyncRequestPrivate * const d) | |
| int | clearParameter(const QString &name) |
| void | clearParameters() |
| QVariant | parameter(const QString &name, const QVariant &defaultValue = QVariant()) const |
| const QVariantMap & | parameters() const |
| void | setParameter(const QString &name, const QVariant &value) |
| void | setParameters(const QVariantMap ¶meters) |
Reimplemented Protected Functions
| virtual QNetworkRequest | unsignedRequest(const QUrl &endpoint) const override |
- 4 protected functions inherited from QtAws::Core::AwsAbstractRequest
Detailed Description
The AppSyncRequest class provides an interface for AppSync requests.
Member Type Documentation
enum AppSyncRequest::Action
flags AppSyncRequest::Actions
This enum describes the actions that can be performed as AppSync requests.
| Constant | Value | Description |
|---|---|---|
QtAws::AppSync::AppSyncRequest::CreateApiKeyAction | 0 | AppSync CreateApiKey action. |
QtAws::AppSync::AppSyncRequest::CreateDataSourceAction | 1 | AppSync CreateDataSource action. |
QtAws::AppSync::AppSyncRequest::CreateGraphqlApiAction | 2 | AppSync CreateGraphqlApi action. |
QtAws::AppSync::AppSyncRequest::CreateResolverAction | 3 | AppSync CreateResolver action. |
QtAws::AppSync::AppSyncRequest::CreateTypeAction | 4 | AppSync CreateType action. |
QtAws::AppSync::AppSyncRequest::DeleteApiKeyAction | 5 | AppSync DeleteApiKey action. |
QtAws::AppSync::AppSyncRequest::DeleteDataSourceAction | 6 | AppSync DeleteDataSource action. |
QtAws::AppSync::AppSyncRequest::DeleteGraphqlApiAction | 7 | AppSync DeleteGraphqlApi action. |
QtAws::AppSync::AppSyncRequest::DeleteResolverAction | 8 | AppSync DeleteResolver action. |
QtAws::AppSync::AppSyncRequest::DeleteTypeAction | 9 | AppSync DeleteType action. |
QtAws::AppSync::AppSyncRequest::GetDataSourceAction | 10 | AppSync GetDataSource action. |
QtAws::AppSync::AppSyncRequest::GetGraphqlApiAction | 11 | AppSync GetGraphqlApi action. |
QtAws::AppSync::AppSyncRequest::GetIntrospectionSchemaAction | 12 | AppSync GetIntrospectionSchema action. |
QtAws::AppSync::AppSyncRequest::GetResolverAction | 13 | AppSync GetResolver action. |
QtAws::AppSync::AppSyncRequest::GetSchemaCreationStatusAction | 14 | AppSync GetSchemaCreationStatus action. |
QtAws::AppSync::AppSyncRequest::GetTypeAction | 15 | AppSync GetType action. |
QtAws::AppSync::AppSyncRequest::ListApiKeysAction | 16 | AppSync ListApiKeys action. |
QtAws::AppSync::AppSyncRequest::ListDataSourcesAction | 17 | AppSync ListDataSources action. |
QtAws::AppSync::AppSyncRequest::ListGraphqlApisAction | 18 | AppSync ListGraphqlApis action. |
QtAws::AppSync::AppSyncRequest::ListResolversAction | 19 | AppSync ListResolvers action. |
QtAws::AppSync::AppSyncRequest::ListTypesAction | 20 | AppSync ListTypes action. |
QtAws::AppSync::AppSyncRequest::StartSchemaCreationAction | 21 | AppSync StartSchemaCreation action. |
QtAws::AppSync::AppSyncRequest::UpdateApiKeyAction | 22 | AppSync UpdateApiKey action. |
QtAws::AppSync::AppSyncRequest::UpdateDataSourceAction | 23 | AppSync UpdateDataSource action. |
QtAws::AppSync::AppSyncRequest::UpdateGraphqlApiAction | 24 | AppSync UpdateGraphqlApi action. |
QtAws::AppSync::AppSyncRequest::UpdateResolverAction | 25 | AppSync UpdateResolver action. |
QtAws::AppSync::AppSyncRequest::UpdateTypeAction | 26 | AppSync UpdateType action. |
The Actions type is a typedef for QFlags<Action>. It stores an OR combination of Action values.
Member Function Documentation
AppSyncRequest::AppSyncRequest(const Action action)
Constructs a AppSyncRequest object for AppSync action.
AppSyncRequest::AppSyncRequest(const AppSyncRequest &other)
Constructs a copy of other.
[protected] AppSyncRequest::AppSyncRequest(AppSyncRequestPrivate * const d)
Constructs aa AppSyncRequest object with private implementation d.
This overload allows derived classes to provide their own private class implementation that inherits from AppSyncRequestPrivate.
Action AppSyncRequest::action() const
Returns the AppSync action to be performed by this request.
See also setAction().
QString AppSyncRequest::actionString() const
Returns the name of the AppSync action to be performed by this request.
QString AppSyncRequest::apiVersion() const
Returns the AppSync API version implemented by this request.
See also setApiVersion().
[protected] int AppSyncRequest::clearParameter(const QString &name)
Removes the a name parameter from the request, then returns the number of paramters removed (typically 0 or 1).
[protected] void AppSyncRequest::clearParameters()
Removes all parameters from the request.
[protected] QVariant AppSyncRequest::parameter(const QString &name, const QVariant &defaultValue = QVariant()) const
Returns the value of the name pararemter if set; defaultValue otherwise.
See also setParameter().
[protected] const QVariantMap &AppSyncRequest::parameters() const
Returns the parameters included in this request.
See also setParameters().
void AppSyncRequest::setAction(const Action action)
Sets the AppSync action to be performed by this request to action.
See also action().
void AppSyncRequest::setApiVersion(const QString &version)
Sets the AppSync API version to include in this request to version.
See also apiVersion().
[protected] void AppSyncRequest::setParameter(const QString &name, const QVariant &value)
Sets the name parameter to value.
See also parameter().
[protected] void AppSyncRequest::setParameters(const QVariantMap ¶meters)
Sets the paramters for this request to parameters. Any request parameters set previously will be discarded.
See also parameters().
[override virtual protected] QNetworkRequest AppSyncRequest::unsignedRequest(const QUrl &endpoint) const
Reimplemented from AwsAbstractRequest::unsignedRequest().
Returns a network request for the AppSync request using the given endpoint.
This AppSync implementation builds request URLs by combining the common query parameters (such as Action and Version), with any that have been added (via setParameter) by child classes.
AppSyncRequest &AppSyncRequest::operator=(const AppSyncRequest &other)
Sets the AppSyncRequest object to be equal to other.
[virtual] bool AppSyncRequest::operator==(const AppSyncRequest &other) const
Returns true if this request is equal to other; false otherwise.
Note, most derived *Request classes do not need to provider their own implementations of this function, since most such request classes rely on this class' parameters functionality for all request parameters, and that parameters map is already checked via this implementation.
© 2018 Paul Colby Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.