pub struct GetEntitiesFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetEntities
.
Gets definitions of the specified entities. Uses the latest version of the user's namespace by default. This API returns the following TDM entities.
-
Properties
-
States
-
Events
-
Actions
-
Capabilities
-
Mappings
-
Devices
-
Device Models
-
Services
This action doesn't return definitions for systems, flows, and deployments.
Implementations§
source§impl GetEntitiesFluentBuilder
impl GetEntitiesFluentBuilder
sourcepub fn as_input(&self) -> &GetEntitiesInputBuilder
pub fn as_input(&self) -> &GetEntitiesInputBuilder
Access the GetEntities as a reference.
sourcepub async fn send(
self
) -> Result<GetEntitiesOutput, SdkError<GetEntitiesError, HttpResponse>>
pub async fn send( self ) -> Result<GetEntitiesOutput, SdkError<GetEntitiesError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<GetEntitiesOutput, GetEntitiesError, Self>
pub fn customize( self ) -> CustomizableOperation<GetEntitiesOutput, GetEntitiesError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn ids(self, input: impl Into<String>) -> Self
pub fn ids(self, input: impl Into<String>) -> Self
Appends an item to ids
.
To override the contents of this collection use set_ids
.
An array of entity IDs.
The IDs should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME
sourcepub fn set_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_ids(self, input: Option<Vec<String>>) -> Self
An array of entity IDs.
The IDs should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME
sourcepub fn get_ids(&self) -> &Option<Vec<String>>
pub fn get_ids(&self) -> &Option<Vec<String>>
An array of entity IDs.
The IDs should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME
sourcepub fn namespace_version(self, input: i64) -> Self
pub fn namespace_version(self, input: i64) -> Self
The version of the user's namespace. Defaults to the latest version of the user's namespace.
sourcepub fn set_namespace_version(self, input: Option<i64>) -> Self
pub fn set_namespace_version(self, input: Option<i64>) -> Self
The version of the user's namespace. Defaults to the latest version of the user's namespace.
sourcepub fn get_namespace_version(&self) -> &Option<i64>
pub fn get_namespace_version(&self) -> &Option<i64>
The version of the user's namespace. Defaults to the latest version of the user's namespace.
Trait Implementations§
source§impl Clone for GetEntitiesFluentBuilder
impl Clone for GetEntitiesFluentBuilder
source§fn clone(&self) -> GetEntitiesFluentBuilder
fn clone(&self) -> GetEntitiesFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more