All Downloads are FREE. Search and download functionalities are using the official Maven repository.
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.azurenative.datamigration.kotlin.Project.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.datamigration.kotlin
import com.pulumi.azurenative.datamigration.kotlin.outputs.DatabaseInfoResponse
import com.pulumi.azurenative.datamigration.kotlin.outputs.SystemDataResponse
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.Any
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
import com.pulumi.azurenative.datamigration.kotlin.outputs.DatabaseInfoResponse.Companion.toKotlin as databaseInfoResponseToKotlin
import com.pulumi.azurenative.datamigration.kotlin.outputs.SystemDataResponse.Companion.toKotlin as systemDataResponseToKotlin
/**
* Builder for [Project].
*/
@PulumiTagMarker
public class ProjectResourceBuilder internal constructor() {
public var name: String? = null
public var args: ProjectArgs = ProjectArgs()
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 ProjectArgsBuilder.() -> Unit) {
val builder = ProjectArgsBuilder()
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(): Project {
val builtJavaResource = com.pulumi.azurenative.datamigration.Project(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return Project(builtJavaResource)
}
}
/**
* A project resource
* Azure REST API version: 2021-06-30. Prior API version in Azure Native 1.x: 2018-04-19.
* Other available API versions: 2017-11-15-preview, 2018-03-31-preview, 2021-10-30-preview, 2022-03-30-preview, 2023-07-15-preview.
* ## Example Usage
* ### Projects_CreateOrUpdate
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using AzureNative = Pulumi.AzureNative;
* return await Deployment.RunAsync(() =>
* {
* var project = new AzureNative.DataMigration.Project("project", new()
* {
* GroupName = "DmsSdkRg",
* Location = "southcentralus",
* ProjectName = "DmsSdkProject",
* ServiceName = "DmsSdkService",
* SourcePlatform = AzureNative.DataMigration.ProjectSourcePlatform.SQL,
* TargetPlatform = AzureNative.DataMigration.ProjectTargetPlatform.SQLDB,
* });
* });
* ```
* ```go
* package main
* import (
* datamigration "github.com/pulumi/pulumi-azure-native-sdk/datamigration/v2"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := datamigration.NewProject(ctx, "project", &datamigration.ProjectArgs{
* GroupName: pulumi.String("DmsSdkRg"),
* Location: pulumi.String("southcentralus"),
* ProjectName: pulumi.String("DmsSdkProject"),
* ServiceName: pulumi.String("DmsSdkService"),
* SourcePlatform: pulumi.String(datamigration.ProjectSourcePlatformSQL),
* TargetPlatform: pulumi.String(datamigration.ProjectTargetPlatformSQLDB),
* })
* 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.azurenative.datamigration.Project;
* import com.pulumi.azurenative.datamigration.ProjectArgs;
* 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 project = new Project("project", ProjectArgs.builder()
* .groupName("DmsSdkRg")
* .location("southcentralus")
* .projectName("DmsSdkProject")
* .serviceName("DmsSdkService")
* .sourcePlatform("SQL")
* .targetPlatform("SQLDB")
* .build());
* }
* }
* ```
* ## Import
* An existing resource can be imported using its type token, name, and identifier, e.g.
* ```sh
* $ pulumi import azure-native:datamigration:Project DmsSdkProject /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.DataMigration/services/{serviceName}/projects/{projectName}
* ```
*/
public class Project internal constructor(
override val javaResource: com.pulumi.azurenative.datamigration.Project,
) : KotlinCustomResource(javaResource, ProjectMapper) {
/**
* UTC Date and time when project was created
*/
public val creationTime: Output
get() = javaResource.creationTime().applyValue({ args0 -> args0 })
/**
* List of DatabaseInfo
*/
public val databasesInfo: Output>?
get() = javaResource.databasesInfo().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
databaseInfoResponseToKotlin(args0)
})
})
}).orElse(null)
})
/**
* Resource location.
*/
public val location: Output
get() = javaResource.location().applyValue({ args0 -> args0 })
/**
* Resource name.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* The project's provisioning state
*/
public val provisioningState: Output
get() = javaResource.provisioningState().applyValue({ args0 -> args0 })
/**
* Information for connecting to source
*/
public val sourceConnectionInfo: Output?
get() = javaResource.sourceConnectionInfo().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Source platform for the project
*/
public val sourcePlatform: Output
get() = javaResource.sourcePlatform().applyValue({ args0 -> args0 })
/**
* Metadata pertaining to creation and last modification of the resource.
*/
public val systemData: Output
get() = javaResource.systemData().applyValue({ args0 ->
args0.let({ args0 ->
systemDataResponseToKotlin(args0)
})
})
/**
* Resource tags.
*/
public val tags: Output>?
get() = javaResource.tags().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
}).orElse(null)
})
/**
* Information for connecting to target
*/
public val targetConnectionInfo: Output?
get() = javaResource.targetConnectionInfo().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Target platform for the project
*/
public val targetPlatform: Output
get() = javaResource.targetPlatform().applyValue({ args0 -> args0 })
/**
* Resource type.
*/
public val type: Output
get() = javaResource.type().applyValue({ args0 -> args0 })
}
public object ProjectMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azurenative.datamigration.Project::class == javaResource::class
override fun map(javaResource: Resource): Project = Project(
javaResource as
com.pulumi.azurenative.datamigration.Project,
)
}
/**
* @see [Project].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [Project].
*/
public suspend fun project(name: String, block: suspend ProjectResourceBuilder.() -> Unit): Project {
val builder = ProjectResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [Project].
* @param name The _unique_ name of the resulting resource.
*/
public fun project(name: String): Project {
val builder = ProjectResourceBuilder()
builder.name(name)
return builder.build()
}