![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.web.kotlin.WebAppSitePushSettings.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.web.kotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
/**
* Builder for [WebAppSitePushSettings].
*/
@PulumiTagMarker
public class WebAppSitePushSettingsResourceBuilder internal constructor() {
public var name: String? = null
public var args: WebAppSitePushSettingsArgs = WebAppSitePushSettingsArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend WebAppSitePushSettingsArgsBuilder.() -> Unit) {
val builder = WebAppSitePushSettingsArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): WebAppSitePushSettings {
val builtJavaResource =
com.pulumi.azurenative.web.WebAppSitePushSettings(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return WebAppSitePushSettings(builtJavaResource)
}
}
/**
* Push settings for the App.
* Azure REST API version: 2022-09-01. Prior API version in Azure Native 1.x: 2020-12-01.
* Other available API versions: 2020-10-01, 2023-01-01, 2023-12-01.
* ## Import
* An existing resource can be imported using its type token, name, and identifier, e.g.
* ```sh
* $ pulumi import azure-native:web:WebAppSitePushSettings myresource1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/pushsettings
* ```
*/
public class WebAppSitePushSettings internal constructor(
override val javaResource: com.pulumi.azurenative.web.WebAppSitePushSettings,
) : KotlinCustomResource(javaResource, WebAppSitePushSettingsMapper) {
/**
* Gets or sets a JSON string containing a list of dynamic tags that will be evaluated from user claims in the push registration endpoint.
*/
public val dynamicTagsJson: Output?
get() = javaResource.dynamicTagsJson().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Gets or sets a flag indicating whether the Push endpoint is enabled.
*/
public val isPushEnabled: Output
get() = javaResource.isPushEnabled().applyValue({ args0 -> args0 })
/**
* Kind of resource.
*/
public val kind: Output?
get() = javaResource.kind().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* Resource Name.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.
*/
public val tagWhitelistJson: Output?
get() = javaResource.tagWhitelistJson().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Gets or sets a JSON string containing a list of tags that require user authentication to be used in the push registration endpoint.
* Tags can consist of alphanumeric characters and the following:
* '_', '@', '#', '.', ':', '-'.
* Validation should be performed at the PushRequestHandler.
*/
public val tagsRequiringAuth: Output?
get() = javaResource.tagsRequiringAuth().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Resource type.
*/
public val type: Output
get() = javaResource.type().applyValue({ args0 -> args0 })
}
public object WebAppSitePushSettingsMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azurenative.web.WebAppSitePushSettings::class == javaResource::class
override fun map(javaResource: Resource): WebAppSitePushSettings =
WebAppSitePushSettings(javaResource as com.pulumi.azurenative.web.WebAppSitePushSettings)
}
/**
* @see [WebAppSitePushSettings].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [WebAppSitePushSettings].
*/
public suspend fun webAppSitePushSettings(
name: String,
block: suspend WebAppSitePushSettingsResourceBuilder.() -> Unit,
): WebAppSitePushSettings {
val builder = WebAppSitePushSettingsResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [WebAppSitePushSettings].
* @param name The _unique_ name of the resulting resource.
*/
public fun webAppSitePushSettings(name: String): WebAppSitePushSettings {
val builder = WebAppSitePushSettingsResourceBuilder()
builder.name(name)
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy