Skip to content

Latest commit

 

History

History
158 lines (95 loc) · 5.59 KB

shieldinformationbarriersegments.md

File metadata and controls

158 lines (95 loc) · 5.59 KB

ShieldInformationBarrierSegmentsManager

Get shield information barrier segment with specified ID

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)

Arguments

  • shieldInformationBarrierSegmentId String
    • The ID of the shield information barrier segment. Example: "3423"
  • headers GetShieldInformationBarrierSegmentByIdHeaders
    • Headers of getShieldInformationBarrierSegmentById method

Returns

This function returns a value of type ShieldInformationBarrierSegment.

Returns the shield information barrier segment object.

Delete shield information barrier segment

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)

Arguments

  • shieldInformationBarrierSegmentId String
    • The ID of the shield information barrier segment. Example: "3423"
  • headers DeleteShieldInformationBarrierSegmentByIdHeaders
    • Headers of deleteShieldInformationBarrierSegmentById method

Returns

This function returns a value of type void.

Empty body in response

Update shield information barrier segment with specified ID

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())

Arguments

  • 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

Returns

This function returns a value of type ShieldInformationBarrierSegment.

Returns the updated shield information barrier segment object.

List shield information barrier segments

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))

Arguments

  • queryParams GetShieldInformationBarrierSegmentsQueryParams
    • Query parameters of getShieldInformationBarrierSegments method
  • headers GetShieldInformationBarrierSegmentsHeaders
    • Headers of getShieldInformationBarrierSegments method

Returns

This function returns a value of type ShieldInformationBarrierSegments.

Returns a paginated list of shield information barrier segment objects.

Create shield information barrier segment

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())

Arguments

  • requestBody CreateShieldInformationBarrierSegmentRequestBody
    • Request body of createShieldInformationBarrierSegment method
  • headers CreateShieldInformationBarrierSegmentHeaders
    • Headers of createShieldInformationBarrierSegment method

Returns

This function returns a value of type ShieldInformationBarrierSegment.

Returns a new shield information barrier segment object.