- Get shield information barrier segment with specified ID
- Delete shield information barrier segment
- Update shield information barrier segment with specified ID
- List shield information barrier segments
- Create shield information barrier segment
Retrieves shield information barrier segment based on provided ID..
This operation is performed by calling function GetShieldInformationBarrierSegmentById
.
See the endpoint docs at API Reference.
await client.ShieldInformationBarrierSegments.GetShieldInformationBarrierSegmentByIdAsync(shieldInformationBarrierSegmentId: segmentId);
- shieldInformationBarrierSegmentId
string
- The ID of the shield information barrier segment. Example: "3423"
- headers
GetShieldInformationBarrierSegmentByIdHeaders
- Headers of getShieldInformationBarrierSegmentById method
- cancellationToken
System.Threading.CancellationToken?
- Token used for request cancellation.
This function returns a value of type ShieldInformationBarrierSegment
.
Returns the shield information barrier segment object.
Deletes the shield information barrier segment based on provided ID.
This operation is performed by calling function DeleteShieldInformationBarrierSegmentById
.
See the endpoint docs at API Reference.
await client.ShieldInformationBarrierSegments.DeleteShieldInformationBarrierSegmentByIdAsync(shieldInformationBarrierSegmentId: segmentId);
- shieldInformationBarrierSegmentId
string
- The ID of the shield information barrier segment. Example: "3423"
- headers
DeleteShieldInformationBarrierSegmentByIdHeaders
- Headers of deleteShieldInformationBarrierSegmentById method
- cancellationToken
System.Threading.CancellationToken?
- Token used for request cancellation.
This function returns a value of type null
.
Empty body in response
Updates the shield information barrier segment based on provided ID..
This operation is performed by calling function UpdateShieldInformationBarrierSegmentById
.
See the endpoint docs at API Reference.
await client.ShieldInformationBarrierSegments.UpdateShieldInformationBarrierSegmentByIdAsync(shieldInformationBarrierSegmentId: segmentId, requestBody: new UpdateShieldInformationBarrierSegmentByIdRequestBody() { Description = updatedSegmentDescription });
- shieldInformationBarrierSegmentId
string
- The ID of the shield information barrier segment. Example: "3423"
- requestBody
UpdateShieldInformationBarrierSegmentByIdRequestBody
- Request body of updateShieldInformationBarrierSegmentById method
- headers
UpdateShieldInformationBarrierSegmentByIdHeaders
- Headers of updateShieldInformationBarrierSegmentById method
- cancellationToken
System.Threading.CancellationToken?
- Token used for request cancellation.
This function returns a value of type ShieldInformationBarrierSegment
.
Returns the updated shield information barrier segment object.
Retrieves a list of shield information barrier segment objects for the specified Information Barrier ID.
This operation is performed by calling function GetShieldInformationBarrierSegments
.
See the endpoint docs at API Reference.
await client.ShieldInformationBarrierSegments.GetShieldInformationBarrierSegmentsAsync(queryParams: new GetShieldInformationBarrierSegmentsQueryParams(shieldInformationBarrierId: barrierId));
- queryParams
GetShieldInformationBarrierSegmentsQueryParams
- Query parameters of getShieldInformationBarrierSegments method
- headers
GetShieldInformationBarrierSegmentsHeaders
- Headers of getShieldInformationBarrierSegments method
- cancellationToken
System.Threading.CancellationToken?
- Token used for request cancellation.
This function returns a value of type ShieldInformationBarrierSegments
.
Returns a paginated list of shield information barrier segment objects.
Creates a shield information barrier segment.
This operation is performed by calling function CreateShieldInformationBarrierSegment
.
See the endpoint docs at API Reference.
await client.ShieldInformationBarrierSegments.CreateShieldInformationBarrierSegmentAsync(requestBody: new CreateShieldInformationBarrierSegmentRequestBody(shieldInformationBarrier: new ShieldInformationBarrierBase() { Id = barrierId, Type = ShieldInformationBarrierBaseTypeField.ShieldInformationBarrier }, name: segmentName) { Description = segmentDescription });
- requestBody
CreateShieldInformationBarrierSegmentRequestBody
- Request body of createShieldInformationBarrierSegment method
- headers
CreateShieldInformationBarrierSegmentHeaders
- Headers of createShieldInformationBarrierSegment method
- cancellationToken
System.Threading.CancellationToken?
- Token used for request cancellation.
This function returns a value of type ShieldInformationBarrierSegment
.
Returns a new shield information barrier segment object.