getCollaborationIdNamespaceAssociation method

Future<GetCollaborationIdNamespaceAssociationOutput> getCollaborationIdNamespaceAssociation({
  1. required String collaborationIdentifier,
  2. required String idNamespaceAssociationIdentifier,
})

Retrieves an ID namespace association from a specific collaboration.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter collaborationIdentifier : The unique identifier of the collaboration that contains the ID namespace association that you want to retrieve.

Parameter idNamespaceAssociationIdentifier : The unique identifier of the ID namespace association that you want to retrieve.

Implementation

Future<GetCollaborationIdNamespaceAssociationOutput>
    getCollaborationIdNamespaceAssociation({
  required String collaborationIdentifier,
  required String idNamespaceAssociationIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/collaborations/${Uri.encodeComponent(collaborationIdentifier)}/idnamespaceassociations/${Uri.encodeComponent(idNamespaceAssociationIdentifier)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetCollaborationIdNamespaceAssociationOutput.fromJson(response);
}