CreateServiceAccountKeyRequest constructor
CreateServiceAccountKeyRequest({
- String? name,
- ServiceAccountPrivateKeyType? privateKeyType,
- ServiceAccountKeyAlgorithm? keyAlgorithm,
Implementation
factory CreateServiceAccountKeyRequest({
$core.String? name,
ServiceAccountPrivateKeyType? privateKeyType,
ServiceAccountKeyAlgorithm? keyAlgorithm,
}) {
final result = create();
if (name != null) result.name = name;
if (privateKeyType != null) result.privateKeyType = privateKeyType;
if (keyAlgorithm != null) result.keyAlgorithm = keyAlgorithm;
return result;
}