Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.azure.mobile.kotlin.NetworkArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.mobile.kotlin
import com.pulumi.azure.mobile.NetworkArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* Manages a Mobile Network.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const example = new azure.core.ResourceGroup("example", {
* name: "example-resources",
* location: "east us",
* });
* const exampleNetwork = new azure.mobile.Network("example", {
* name: "example-mn",
* resourceGroupName: example.name,
* location: example.location,
* mobileCountryCode: "001",
* mobileNetworkCode: "01",
* tags: {
* key: "value",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="example-resources",
* location="east us")
* example_network = azure.mobile.Network("example",
* name="example-mn",
* resource_group_name=example.name,
* location=example.location,
* mobile_country_code="001",
* mobile_network_code="01",
* tags={
* "key": "value",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Azure = Pulumi.Azure;
* return await Deployment.RunAsync(() =>
* {
* var example = new Azure.Core.ResourceGroup("example", new()
* {
* Name = "example-resources",
* Location = "east us",
* });
* var exampleNetwork = new Azure.Mobile.Network("example", new()
* {
* Name = "example-mn",
* ResourceGroupName = example.Name,
* Location = example.Location,
* MobileCountryCode = "001",
* MobileNetworkCode = "01",
* Tags =
* {
* { "key", "value" },
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/mobile"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
* Name: pulumi.String("example-resources"),
* Location: pulumi.String("east us"),
* })
* if err != nil {
* return err
* }
* _, err = mobile.NewNetwork(ctx, "example", &mobile.NetworkArgs{
* Name: pulumi.String("example-mn"),
* ResourceGroupName: example.Name,
* Location: example.Location,
* MobileCountryCode: pulumi.String("001"),
* MobileNetworkCode: pulumi.String("01"),
* Tags: pulumi.StringMap{
* "key": pulumi.String("value"),
* },
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azure.core.ResourceGroup;
* import com.pulumi.azure.core.ResourceGroupArgs;
* import com.pulumi.azure.mobile.Network;
* import com.pulumi.azure.mobile.NetworkArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* var example = new ResourceGroup("example", ResourceGroupArgs.builder()
* .name("example-resources")
* .location("east us")
* .build());
* var exampleNetwork = new Network("exampleNetwork", NetworkArgs.builder()
* .name("example-mn")
* .resourceGroupName(example.name())
* .location(example.location())
* .mobileCountryCode("001")
* .mobileNetworkCode("01")
* .tags(Map.of("key", "value"))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: example-resources
* location: east us
* exampleNetwork:
* type: azure:mobile:Network
* name: example
* properties:
* name: example-mn
* resourceGroupName: ${example.name}
* location: ${example.location}
* mobileCountryCode: '001'
* mobileNetworkCode: '01'
* tags:
* key: value
* ```
*
* ## Import
* Mobile Network can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:mobile/network:Network example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.MobileNetwork/mobileNetworks/mobileNetwork1
* ```
* @property location Specifies the Azure Region where the Mobile Network should exist. Changing this forces a new Mobile Network to be created. The possible values are `eastus` and `northeurope`.
* @property mobileCountryCode Mobile country code (MCC), defined in https://www.itu.int/rec/T-REC-E.212 . Changing this forces a new resource to be created.
* @property mobileNetworkCode Mobile network code (MNC), defined in https://www.itu.int/rec/T-REC-E.212 . Changing this forces a new resource to be created.
* @property name Specifies the name which should be used for this Mobile Network. Changing this forces a new Mobile Network to be created.
* @property resourceGroupName Specifies the name of the Resource Group where the Mobile Network should exist. Changing this forces a new Mobile Network to be created.
* @property tags A mapping of tags which should be assigned to the Mobile Network.
*/
public data class NetworkArgs(
public val location: Output? = null,
public val mobileCountryCode: Output? = null,
public val mobileNetworkCode: Output? = null,
public val name: Output? = null,
public val resourceGroupName: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.mobile.NetworkArgs =
com.pulumi.azure.mobile.NetworkArgs.builder()
.location(location?.applyValue({ args0 -> args0 }))
.mobileCountryCode(mobileCountryCode?.applyValue({ args0 -> args0 }))
.mobileNetworkCode(mobileNetworkCode?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
}),
).build()
}
/**
* Builder for [NetworkArgs].
*/
@PulumiTagMarker
public class NetworkArgsBuilder internal constructor() {
private var location: Output? = null
private var mobileCountryCode: Output? = null
private var mobileNetworkCode: Output? = null
private var name: Output? = null
private var resourceGroupName: Output? = null
private var tags: Output>? = null
/**
* @param value Specifies the Azure Region where the Mobile Network should exist. Changing this forces a new Mobile Network to be created. The possible values are `eastus` and `northeurope`.
*/
@JvmName("girfhkxrqlcucvhe")
public suspend fun location(`value`: Output) {
this.location = value
}
/**
* @param value Mobile country code (MCC), defined in https://www.itu.int/rec/T-REC-E.212 . Changing this forces a new resource to be created.
*/
@JvmName("nkcbcqcfxhtbvapm")
public suspend fun mobileCountryCode(`value`: Output) {
this.mobileCountryCode = value
}
/**
* @param value Mobile network code (MNC), defined in https://www.itu.int/rec/T-REC-E.212 . Changing this forces a new resource to be created.
*/
@JvmName("nnxvdorlqlkhevia")
public suspend fun mobileNetworkCode(`value`: Output) {
this.mobileNetworkCode = value
}
/**
* @param value Specifies the name which should be used for this Mobile Network. Changing this forces a new Mobile Network to be created.
*/
@JvmName("vrtclfohlnqrnfnx")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Specifies the name of the Resource Group where the Mobile Network should exist. Changing this forces a new Mobile Network to be created.
*/
@JvmName("aymsfjaghpyqurqx")
public suspend fun resourceGroupName(`value`: Output) {
this.resourceGroupName = value
}
/**
* @param value A mapping of tags which should be assigned to the Mobile Network.
*/
@JvmName("fhhqtxhtaemvhiya")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
/**
* @param value Specifies the Azure Region where the Mobile Network should exist. Changing this forces a new Mobile Network to be created. The possible values are `eastus` and `northeurope`.
*/
@JvmName("orskolfwikelpajy")
public suspend fun location(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.location = mapped
}
/**
* @param value Mobile country code (MCC), defined in https://www.itu.int/rec/T-REC-E.212 . Changing this forces a new resource to be created.
*/
@JvmName("bbukivqwpqadqakc")
public suspend fun mobileCountryCode(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.mobileCountryCode = mapped
}
/**
* @param value Mobile network code (MNC), defined in https://www.itu.int/rec/T-REC-E.212 . Changing this forces a new resource to be created.
*/
@JvmName("fefwrehrenabkoss")
public suspend fun mobileNetworkCode(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.mobileNetworkCode = mapped
}
/**
* @param value Specifies the name which should be used for this Mobile Network. Changing this forces a new Mobile Network to be created.
*/
@JvmName("rsrqvgwbxfhaxynl")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value Specifies the name of the Resource Group where the Mobile Network should exist. Changing this forces a new Mobile Network to be created.
*/
@JvmName("qjfvlecktjctbheb")
public suspend fun resourceGroupName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resourceGroupName = mapped
}
/**
* @param value A mapping of tags which should be assigned to the Mobile Network.
*/
@JvmName("rvxodeivhetuhyjx")
public suspend fun tags(`value`: Map?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.tags = mapped
}
/**
* @param values A mapping of tags which should be assigned to the Mobile Network.
*/
@JvmName("lwglexihvdmaujgl")
public fun tags(vararg values: Pair) {
val toBeMapped = values.toMap()
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.tags = mapped
}
internal fun build(): NetworkArgs = NetworkArgs(
location = location,
mobileCountryCode = mobileCountryCode,
mobileNetworkCode = mobileNetworkCode,
name = name,
resourceGroupName = resourceGroupName,
tags = tags,
)
}