Class: Aws::PCS::Types::UpdateAccountingRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pcs/types.rb

Overview

The accounting configuration includes configurable settings for Slurm accounting.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#default_purge_time_in_daysInteger

The default value for all purge settings for ‘slurmdbd.conf`. For more information, see the [slurmdbd.conf documentation at SchedMD].

The default value for ‘defaultPurgeTimeInDays` is `-1`.

A value of ‘-1` means there is no purge time and records persist as long as the cluster exists.

‘0` isn’t a valid value.

[1]: slurm.schedmd.com/slurmdbd.conf.html

Returns:

  • (Integer)


1973
1974
1975
1976
1977
1978
# File 'lib/aws-sdk-pcs/types.rb', line 1973

class UpdateAccountingRequest < Struct.new(
  :default_purge_time_in_days,
  :mode)
  SENSITIVE = []
  include Aws::Structure
end

#modeString

The default value for ‘mode` is `STANDARD`. A value of `STANDARD` means Slurm accounting is enabled.

Returns:

  • (String)


1973
1974
1975
1976
1977
1978
# File 'lib/aws-sdk-pcs/types.rb', line 1973

class UpdateAccountingRequest < Struct.new(
  :default_purge_time_in_days,
  :mode)
  SENSITIVE = []
  include Aws::Structure
end