toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final connectionRatelimitWindowSeconds =
      this.connectionRatelimitWindowSeconds;
  final deploymentModel = this.deploymentModel;
  final deploymentModelMigrationState = this.deploymentModelMigrationState;
  final hpaConfig = this.hpaConfig;
  final internalclientRatelimitThreshold =
      this.internalclientRatelimitThreshold;
  final maxInstanceRequestConcurrency = this.maxInstanceRequestConcurrency;
  final ratelimitThreshold = this.ratelimitThreshold;
  final resourceLimits = this.resourceLimits;
  final resourceRequests = this.resourceRequests;
  final sharedDeployment = this.sharedDeployment;
  final tlsMigrationState = this.tlsMigrationState;
  return {
    'connectionRatelimitWindowSeconds': ?connectionRatelimitWindowSeconds,
    'deploymentModel': ?deploymentModel,
    'deploymentModelMigrationState': ?deploymentModelMigrationState,
    'hpaConfig': ?hpaConfig,
    'internalclientRatelimitThreshold': ?internalclientRatelimitThreshold,
    'maxInstanceRequestConcurrency': ?maxInstanceRequestConcurrency,
    'ratelimitThreshold': ?ratelimitThreshold,
    'resourceLimits': ?resourceLimits,
    'resourceRequests': ?resourceRequests,
    'sharedDeployment': ?sharedDeployment,
    'tlsMigrationState': ?tlsMigrationState,
  };
}