Skip to content

updateRcsAutomaticTargetMapping

Update RCS automatic target mapping.

Arguments

Argument Type Description
input (required) UpdateRcsAutomaticTargetMappingInput! Update RCS automatic target mapping.

Returns

TargetMapping!

Sample

mutation UpdateRcsAutomaticTargetMapping($input: UpdateRcsAutomaticTargetMappingInput!) {
  updateRcsAutomaticTargetMapping(input: $input) {
    groupType
    id
    name
    targetType
    tieringStatus
  }
}
{
  "input": {
    "id": "example-string",
    "lockDurationDays": 0
  }
}
{
  "data": {
    "updateRcsAutomaticTargetMapping": {
      "groupType": "AUTOMATIC_ARCHIVAL_GROUP",
      "id": "00000000-0000-0000-0000-000000000000",
      "name": "example-string",
      "targetType": "AWS",
      "tieringStatus": [
        "INSTANT_TIERING_NOT_SUPPORTED"
      ],
      "connectionStatus": {
        "status": "CONNECTED"
      },
      "targetTemplate": {
        "targetType": "AWS"
      }
    }
  }
}