DescribedSecurityPolicy constructor

DescribedSecurityPolicy({
  1. required String securityPolicyName,
  2. bool? fips,
  3. List<String>? sshCiphers,
  4. List<String>? sshKexs,
  5. List<String>? sshMacs,
  6. List<String>? tlsCiphers,
})

Implementation

DescribedSecurityPolicy({
  required this.securityPolicyName,
  this.fips,
  this.sshCiphers,
  this.sshKexs,
  this.sshMacs,
  this.tlsCiphers,
});