toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final autoUpgradeConfig = this.autoUpgradeConfig;
  final computedReleaseChannel = this.computedReleaseChannel;
  final createTime = this.createTime;
  final deleteTime = this.deleteTime;
  final displayName = this.displayName;
  final effectiveAutoUpgradeConfig = this.effectiveAutoUpgradeConfig;
  final etag = this.etag;
  final ignoredClustersSelector = this.ignoredClustersSelector;
  final labels = this.labels;
  final lastQualifiedControlPlaneVersion =
      this.lastQualifiedControlPlaneVersion;
  final lastQualifiedNodeVersion = this.lastQualifiedNodeVersion;
  final name = this.name;
  final operationalState = this.operationalState;
  final stages = this.stages;
  final targetControlPlaneVersion = this.targetControlPlaneVersion;
  final targetNodeVersion = this.targetNodeVersion;
  final uid = this.uid;
  final updateTime = this.updateTime;
  return {
    'autoUpgradeConfig': ?autoUpgradeConfig,
    'computedReleaseChannel': ?computedReleaseChannel,
    'createTime': ?createTime,
    'deleteTime': ?deleteTime,
    'displayName': ?displayName,
    'effectiveAutoUpgradeConfig': ?effectiveAutoUpgradeConfig,
    'etag': ?etag,
    'ignoredClustersSelector': ?ignoredClustersSelector,
    'labels': ?labels,
    'lastQualifiedControlPlaneVersion': ?lastQualifiedControlPlaneVersion,
    'lastQualifiedNodeVersion': ?lastQualifiedNodeVersion,
    'name': ?name,
    'operationalState': ?operationalState,
    'stages': ?stages,
    'targetControlPlaneVersion': ?targetControlPlaneVersion,
    'targetNodeVersion': ?targetNodeVersion,
    'uid': ?uid,
    'updateTime': ?updateTime,
  };
}