- 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.
client.getShieldInformationBarrierSegments().getShieldInformationBarrierSegmentById(segmentId)
- shieldInformationBarrierSegmentId
String
- The ID of the shield information barrier segment. Example: "3423"
- headers
GetShieldInformationBarrierSegmentByIdHeaders
- Headers of getShieldInformationBarrierSegmentById method
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.
client.getShieldInformationBarrierSegments().deleteShieldInformationBarrierSegmentById(segmentId)
- shieldInformationBarrierSegmentId
String
- The ID of the shield information barrier segment. Example: "3423"
- headers
DeleteShieldInformationBarrierSegmentByIdHeaders
- Headers of deleteShieldInformationBarrierSegmentById method
This function returns a value of type void
.
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.
client.getShieldInformationBarrierSegments().updateShieldInformationBarrierSegmentById(segmentId, new UpdateShieldInformationBarrierSegmentByIdRequestBody.UpdateShieldInformationBarrierSegmentByIdRequestBodyBuilder().description(updatedSegmentDescription).build())
- 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
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.
client.getShieldInformationBarrierSegments().getShieldInformationBarrierSegments(new GetShieldInformationBarrierSegmentsQueryParams(barrierId))
- queryParams
GetShieldInformationBarrierSegmentsQueryParams
- Query parameters of getShieldInformationBarrierSegments method
- headers
GetShieldInformationBarrierSegmentsHeaders
- Headers of getShieldInformationBarrierSegments method
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.
client.getShieldInformationBarrierSegments().createShieldInformationBarrierSegment(new CreateShieldInformationBarrierSegmentRequestBody.CreateShieldInformationBarrierSegmentRequestBodyBuilder(new ShieldInformationBarrierBase.ShieldInformationBarrierBaseBuilder().id(barrierId).type(ShieldInformationBarrierBaseTypeField.SHIELD_INFORMATION_BARRIER).build(), segmentName).description(segmentDescription).build())
- requestBody
CreateShieldInformationBarrierSegmentRequestBody
- Request body of createShieldInformationBarrierSegment method
- headers
CreateShieldInformationBarrierSegmentHeaders
- Headers of createShieldInformationBarrierSegment method
This function returns a value of type ShieldInformationBarrierSegment
.
Returns a new shield information barrier segment object.