set

@JvmName(name = "setEnv")
operator fun DslList<EnvVar, AppConfigurationKt.Dsl.EnvProxy>.set(index: Int, value: EnvVar)
Environment variables configured for this application.

repeated .elide.app.EnvVar env = 7;

Parameters

index

The index to set the value at.

value

The env to set.


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

repeated .elide.app.Secret secret = 8;

Parameters

index

The index to set the value at.

value

The secret to set.


@JvmName(name = "setService")
operator fun DslList<Service, AppConfigurationKt.Dsl.ServiceProxy>.set(index: Int, value: Service)
Exposed services for this application.

repeated .elide.net.Service service = 9;

Parameters

index

The index to set the value at.

value

The service to set.


@JvmName(name = "setKv")
operator fun DslList<Namespace, AppConfigurationKt.Dsl.KvProxy>.set(index: Int, value: Namespace)
Key-value namespaces configured for this application.

repeated .elide.kv.Namespace kv = 10;

Parameters

index

The index to set the value at.

value

The kv to set.


@JvmName(name = "setDb")
operator fun DslList<Database, AppConfigurationKt.Dsl.DbProxy>.set(index: Int, value: Database)
Database connections configured for this application.

repeated .elide.db.Database db = 11;

Parameters

index

The index to set the value at.

value

The db to set.


@JvmName(name = "setDomain")
operator fun DslList<Domain, AppConfigurationKt.Dsl.DomainProxy>.set(index: Int, value: Domain)
Custom domains mapped for this application.

repeated .elide.app.Domain domain = 12;

Parameters

index

The index to set the value at.

value

The domain to set.


@JvmName(name = "setConfig")
operator fun DslList<AppConfigurationSuite, AppConfigurationKt.Dsl.ConfigProxy>.set(index: Int, value: AppConfigurationSuite)
Configuration suites to make available to the application.

repeated .elide.app.AppConfigurationSuite config = 13;

Parameters

index

The index to set the value at.

value

The config to set.