toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final connectedEndpointGroups = this.connectedEndpointGroups;
  final createTime = this.createTime;
  final description = this.description;
  final labels = this.labels;
  final locations = this.locations;
  final name = this.name;
  final nestedDeployments = this.nestedDeployments;
  final network = this.network;
  final reconciling = this.reconciling;
  final state = this.state;
  final updateTime = this.updateTime;
  return {
    'connectedEndpointGroups': ?connectedEndpointGroups,
    'createTime': ?createTime,
    'description': ?description,
    'labels': ?labels,
    'locations': ?locations,
    'name': ?name,
    'nestedDeployments': ?nestedDeployments,
    'network': ?network,
    'reconciling': ?reconciling,
    'state': ?state,
    'updateTime': ?updateTime,
  };
}