INPUT_OBJECT

CreateRadiusServerMutationInput

The input object that defines the fields for the createRadiusServer mutation.

link GraphQL Schema definition

  • input CreateRadiusServerMutationInput {
  • # A descriptive name.
  • name: String!
  • # The RADIUS server type.
  • type: RadiusServerType!
  • # Whether or not this is enabled.
  • enabled: Boolean
  • # An IPv4/IPv6 address.
  • ip_address: IP!
  • # The RADIUS server credentials.
  • radius_server_credentials: [RadiusServerCredentialInput]!
  • # Whether or not Sonar should track bandwidth usage data from this RADIUS server.
  • collect_bandwidth: Boolean
  • # Send a change of authorization on account delinquency to this device.
  • send_change_auth_on_delinquency: Boolean
  • # Send a change of authorization on account service change to this device.
  • send_change_auth_on_service_change: Boolean
  • # Send a change of authorization on account status change to this device.
  • send_change_auth_on_status_change: Boolean
  • # The secret used to send a change of authorization to this device.
  • coa_secret: String
  • # A note about this entity.
  • note: NoteMutationInput
  • }

link Require by