INPUT_OBJECT

NetworkResourceMutationConfigInput

Network resource modification payload containing identifier specifying what resource to change, and mutation data specifying what fields to change.

link GraphQL Schema definition

  • input NetworkResourceMutationConfigInput {
  • # Network resource data fields to modify for CREATE/MODIFY operations.
  • mutationData: PolicyNetworkResourceMutationDataInput
  • # DEPRECATED - Replaced by operationId. NBI responses will not return this value
  • # anymore.
  • clientMutationId: String
  • # Network Resource to modify/delete. Specify fields to uniquely identify network
  • # resource: name, and optional global field. Not required for mutationType=Create.
  • dataIdentifier: PolicyNetworkResourceDataIdentifierInput
  • # Specifies what the operation type is (Create/Delete/Modify).
  • mutationType: DomainMutationTypeInput!
  • # Unique identifier optionally passed into input object of any query/mutation
  • # call, returned in the corresponding response output.
  • operationId: String
  • # Name of domain being modified. Validates the intended domain has been opened
  • # first via openDomain. Editing a different domain that has not been explicitly
  • # opened first returns an error.
  • domainName: String!
  • }