plusAssign

@JvmName(name = "plusAssignEnv")
inline operator fun DslList<EnvVar, AppConfigurationKt.Dsl.EnvProxy>.plusAssign(value: EnvVar)
Environment variables configured for this application.

repeated .elide.app.EnvVar env = 7;

Parameters

value

The env to add.


@JvmName(name = "plusAssignAllEnv")
inline operator fun DslList<EnvVar, AppConfigurationKt.Dsl.EnvProxy>.plusAssign(values: Iterable<EnvVar>)
Environment variables configured for this application.

repeated .elide.app.EnvVar env = 7;

Parameters

values

The env to add.


@JvmName(name = "plusAssignSecret")
inline operator fun DslList<Secret, AppConfigurationKt.Dsl.SecretProxy>.plusAssign(value: Secret)
Secrets configured for this application's access.

repeated .elide.app.Secret secret = 8;

Parameters

value

The secret to add.


@JvmName(name = "plusAssignAllSecret")
inline operator fun DslList<Secret, AppConfigurationKt.Dsl.SecretProxy>.plusAssign(values: Iterable<Secret>)
Secrets configured for this application's access.

repeated .elide.app.Secret secret = 8;

Parameters

values

The secret to add.


@JvmName(name = "plusAssignService")
inline operator fun DslList<Service, AppConfigurationKt.Dsl.ServiceProxy>.plusAssign(value: Service)
Exposed services for this application.

repeated .elide.net.Service service = 9;

Parameters

value

The service to add.


@JvmName(name = "plusAssignAllService")
inline operator fun DslList<Service, AppConfigurationKt.Dsl.ServiceProxy>.plusAssign(values: Iterable<Service>)
Exposed services for this application.

repeated .elide.net.Service service = 9;

Parameters

values

The service to add.


@JvmName(name = "plusAssignKv")
inline operator fun DslList<Namespace, AppConfigurationKt.Dsl.KvProxy>.plusAssign(value: Namespace)
Key-value namespaces configured for this application.

repeated .elide.kv.Namespace kv = 10;

Parameters

value

The kv to add.


@JvmName(name = "plusAssignAllKv")
inline operator fun DslList<Namespace, AppConfigurationKt.Dsl.KvProxy>.plusAssign(values: Iterable<Namespace>)
Key-value namespaces configured for this application.

repeated .elide.kv.Namespace kv = 10;

Parameters

values

The kv to add.


@JvmName(name = "plusAssignDb")
inline operator fun DslList<Database, AppConfigurationKt.Dsl.DbProxy>.plusAssign(value: Database)
Database connections configured for this application.

repeated .elide.db.Database db = 11;

Parameters

value

The db to add.


@JvmName(name = "plusAssignAllDb")
inline operator fun DslList<Database, AppConfigurationKt.Dsl.DbProxy>.plusAssign(values: Iterable<Database>)
Database connections configured for this application.

repeated .elide.db.Database db = 11;

Parameters

values

The db to add.


@JvmName(name = "plusAssignDomain")
inline operator fun DslList<Domain, AppConfigurationKt.Dsl.DomainProxy>.plusAssign(value: Domain)
Custom domains mapped for this application.

repeated .elide.app.Domain domain = 12;

Parameters

value

The domain to add.


@JvmName(name = "plusAssignAllDomain")
inline operator fun DslList<Domain, AppConfigurationKt.Dsl.DomainProxy>.plusAssign(values: Iterable<Domain>)
Custom domains mapped for this application.

repeated .elide.app.Domain domain = 12;

Parameters

values

The domain to add.


@JvmName(name = "plusAssignConfig")
inline operator fun DslList<AppConfigurationSuite, AppConfigurationKt.Dsl.ConfigProxy>.plusAssign(value: AppConfigurationSuite)
Configuration suites to make available to the application.

repeated .elide.app.AppConfigurationSuite config = 13;

Parameters

value

The config to add.


@JvmName(name = "plusAssignAllConfig")
inline operator fun DslList<AppConfigurationSuite, AppConfigurationKt.Dsl.ConfigProxy>.plusAssign(values: Iterable<AppConfigurationSuite>)
Configuration suites to make available to the application.

repeated .elide.app.AppConfigurationSuite config = 13;

Parameters

values

The config to add.