factory Application()

in lib/src/grpc_api/dart/google/appengine/v1/application.pb.dart [284:344]


  factory Application({
    $core.String? name,
    $core.String? id,
    $core.Iterable<UrlDispatchRule>? dispatchRules,
    $core.String? authDomain,
    $core.String? locationId,
    $core.String? codeBucket,
    $0.Duration? defaultCookieExpiration,
    Application_ServingStatus? servingStatus,
    $core.String? defaultHostname,
    $core.String? defaultBucket,
    Application_IdentityAwareProxy? iap,
    $core.String? gcrDomain,
    Application_DatabaseType? databaseType,
    Application_FeatureSettings? featureSettings,
  }) {
    final _result = create();
    if (name != null) {
      _result.name = name;
    }
    if (id != null) {
      _result.id = id;
    }
    if (dispatchRules != null) {
      _result.dispatchRules.addAll(dispatchRules);
    }
    if (authDomain != null) {
      _result.authDomain = authDomain;
    }
    if (locationId != null) {
      _result.locationId = locationId;
    }
    if (codeBucket != null) {
      _result.codeBucket = codeBucket;
    }
    if (defaultCookieExpiration != null) {
      _result.defaultCookieExpiration = defaultCookieExpiration;
    }
    if (servingStatus != null) {
      _result.servingStatus = servingStatus;
    }
    if (defaultHostname != null) {
      _result.defaultHostname = defaultHostname;
    }
    if (defaultBucket != null) {
      _result.defaultBucket = defaultBucket;
    }
    if (iap != null) {
      _result.iap = iap;
    }
    if (gcrDomain != null) {
      _result.gcrDomain = gcrDomain;
    }
    if (databaseType != null) {
      _result.databaseType = databaseType;
    }
    if (featureSettings != null) {
      _result.featureSettings = featureSettings;
    }
    return _result;
  }