toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final certificateAuthorityConfig = this.certificateAuthorityConfig;
  final createTime = this.createTime;
  final description = this.description;
  final keyAlgorithm = this.keyAlgorithm;
  final labels = this.labels;
  final lifetime = this.lifetime;
  final name = this.name;
  final rotationWindowPercentage = this.rotationWindowPercentage;
  final updateTime = this.updateTime;
  return {
    'certificateAuthorityConfig': ?certificateAuthorityConfig,
    'createTime': ?createTime,
    'description': ?description,
    'keyAlgorithm': ?keyAlgorithm,
    'labels': ?labels,
    'lifetime': ?lifetime,
    'name': ?name,
    'rotationWindowPercentage': ?rotationWindowPercentage,
    'updateTime': ?updateTime,
  };
}