toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final delegatingServiceAccount = this.delegatingServiceAccount;
final displayName = this.displayName;
final externalIps = this.externalIps;
final hubs = this.hubs;
final name = this.name;
final proxyProtocolConfig = this.proxyProtocolConfig;
final serviceDiscovery = this.serviceDiscovery;
final state = this.state;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'delegatingServiceAccount': ?delegatingServiceAccount,
'displayName': ?displayName,
'externalIps': ?externalIps,
'hubs': ?hubs,
'name': ?name,
'proxyProtocolConfig': ?proxyProtocolConfig,
'serviceDiscovery': ?serviceDiscovery,
'state': ?state,
'updateTime': ?updateTime,
};
}