toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final authenticationConfig = this.authenticationConfig;
  final idleTtl = this.idleTtl;
  final kmsKey = this.kmsKey;
  final networkTags = this.networkTags;
  final networkUri = this.networkUri;
  final serviceAccount = this.serviceAccount;
  final stagingBucket = this.stagingBucket;
  final subnetworkUri = this.subnetworkUri;
  final ttl = this.ttl;
  return {
    'authenticationConfig': ?authenticationConfig,
    'idleTtl': ?idleTtl,
    'kmsKey': ?kmsKey,
    'networkTags': ?networkTags,
    'networkUri': ?networkUri,
    'serviceAccount': ?serviceAccount,
    'stagingBucket': ?stagingBucket,
    'subnetworkUri': ?subnetworkUri,
    'ttl': ?ttl,
  };
}