com.pulumi.aws.grafana.kotlin.LicenseAssociationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.grafana.kotlin
import com.pulumi.aws.grafana.LicenseAssociationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Provides an Amazon Managed Grafana workspace license association resource.
* ## Example Usage
* ### Basic configuration
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const assume = new aws.iam.Role("assume", {
* name: "grafana-assume",
* assumeRolePolicy: JSON.stringify({
* Version: "2012-10-17",
* Statement: [{
* Action: "sts:AssumeRole",
* Effect: "Allow",
* Sid: "",
* Principal: {
* Service: "grafana.amazonaws.com",
* },
* }],
* }),
* });
* const exampleWorkspace = new aws.grafana.Workspace("example", {
* accountAccessType: "CURRENT_ACCOUNT",
* authenticationProviders: ["SAML"],
* permissionType: "SERVICE_MANAGED",
* roleArn: assume.arn,
* });
* const example = new aws.grafana.LicenseAssociation("example", {
* licenseType: "ENTERPRISE_FREE_TRIAL",
* workspaceId: exampleWorkspace.id,
* });
* ```
* ```python
* import pulumi
* import json
* import pulumi_aws as aws
* assume = aws.iam.Role("assume",
* name="grafana-assume",
* assume_role_policy=json.dumps({
* "Version": "2012-10-17",
* "Statement": [{
* "Action": "sts:AssumeRole",
* "Effect": "Allow",
* "Sid": "",
* "Principal": {
* "Service": "grafana.amazonaws.com",
* },
* }],
* }))
* example_workspace = aws.grafana.Workspace("example",
* account_access_type="CURRENT_ACCOUNT",
* authentication_providers=["SAML"],
* permission_type="SERVICE_MANAGED",
* role_arn=assume.arn)
* example = aws.grafana.LicenseAssociation("example",
* license_type="ENTERPRISE_FREE_TRIAL",
* workspace_id=example_workspace.id)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using System.Text.Json;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var assume = new Aws.Iam.Role("assume", new()
* {
* Name = "grafana-assume",
* AssumeRolePolicy = JsonSerializer.Serialize(new Dictionary
* {
* ["Version"] = "2012-10-17",
* ["Statement"] = new[]
* {
* new Dictionary
* {
* ["Action"] = "sts:AssumeRole",
* ["Effect"] = "Allow",
* ["Sid"] = "",
* ["Principal"] = new Dictionary
* {
* ["Service"] = "grafana.amazonaws.com",
* },
* },
* },
* }),
* });
* var exampleWorkspace = new Aws.Grafana.Workspace("example", new()
* {
* AccountAccessType = "CURRENT_ACCOUNT",
* AuthenticationProviders = new[]
* {
* "SAML",
* },
* PermissionType = "SERVICE_MANAGED",
* RoleArn = assume.Arn,
* });
* var example = new Aws.Grafana.LicenseAssociation("example", new()
* {
* LicenseType = "ENTERPRISE_FREE_TRIAL",
* WorkspaceId = exampleWorkspace.Id,
* });
* });
* ```
* ```go
* package main
* import (
* "encoding/json"
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/grafana"
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* tmpJSON0, err := json.Marshal(map[string]interface{}{
* "Version": "2012-10-17",
* "Statement": []map[string]interface{}{
* map[string]interface{}{
* "Action": "sts:AssumeRole",
* "Effect": "Allow",
* "Sid": "",
* "Principal": map[string]interface{}{
* "Service": "grafana.amazonaws.com",
* },
* },
* },
* })
* if err != nil {
* return err
* }
* json0 := string(tmpJSON0)
* assume, err := iam.NewRole(ctx, "assume", &iam.RoleArgs{
* Name: pulumi.String("grafana-assume"),
* AssumeRolePolicy: pulumi.String(json0),
* })
* if err != nil {
* return err
* }
* exampleWorkspace, err := grafana.NewWorkspace(ctx, "example", &grafana.WorkspaceArgs{
* AccountAccessType: pulumi.String("CURRENT_ACCOUNT"),
* AuthenticationProviders: pulumi.StringArray{
* pulumi.String("SAML"),
* },
* PermissionType: pulumi.String("SERVICE_MANAGED"),
* RoleArn: assume.Arn,
* })
* if err != nil {
* return err
* }
* _, err = grafana.NewLicenseAssociation(ctx, "example", &grafana.LicenseAssociationArgs{
* LicenseType: pulumi.String("ENTERPRISE_FREE_TRIAL"),
* WorkspaceId: exampleWorkspace.ID(),
* })
* 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.aws.iam.Role;
* import com.pulumi.aws.iam.RoleArgs;
* import com.pulumi.aws.grafana.Workspace;
* import com.pulumi.aws.grafana.WorkspaceArgs;
* import com.pulumi.aws.grafana.LicenseAssociation;
* import com.pulumi.aws.grafana.LicenseAssociationArgs;
* import static com.pulumi.codegen.internal.Serialization.*;
* 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 assume = new Role("assume", RoleArgs.builder()
* .name("grafana-assume")
* .assumeRolePolicy(serializeJson(
* jsonObject(
* jsonProperty("Version", "2012-10-17"),
* jsonProperty("Statement", jsonArray(jsonObject(
* jsonProperty("Action", "sts:AssumeRole"),
* jsonProperty("Effect", "Allow"),
* jsonProperty("Sid", ""),
* jsonProperty("Principal", jsonObject(
* jsonProperty("Service", "grafana.amazonaws.com")
* ))
* )))
* )))
* .build());
* var exampleWorkspace = new Workspace("exampleWorkspace", WorkspaceArgs.builder()
* .accountAccessType("CURRENT_ACCOUNT")
* .authenticationProviders("SAML")
* .permissionType("SERVICE_MANAGED")
* .roleArn(assume.arn())
* .build());
* var example = new LicenseAssociation("example", LicenseAssociationArgs.builder()
* .licenseType("ENTERPRISE_FREE_TRIAL")
* .workspaceId(exampleWorkspace.id())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: aws:grafana:LicenseAssociation
* properties:
* licenseType: ENTERPRISE_FREE_TRIAL
* workspaceId: ${exampleWorkspace.id}
* exampleWorkspace:
* type: aws:grafana:Workspace
* name: example
* properties:
* accountAccessType: CURRENT_ACCOUNT
* authenticationProviders:
* - SAML
* permissionType: SERVICE_MANAGED
* roleArn: ${assume.arn}
* assume:
* type: aws:iam:Role
* properties:
* name: grafana-assume
* assumeRolePolicy:
* fn::toJSON:
* Version: 2012-10-17
* Statement:
* - Action: sts:AssumeRole
* Effect: Allow
* Sid:
* Principal:
* Service: grafana.amazonaws.com
* ```
*
* ## Import
* Using `pulumi import`, import Grafana workspace license association using the workspace's `id`. For example:
* ```sh
* $ pulumi import aws:grafana/licenseAssociation:LicenseAssociation example g-2054c75a02
* ```
* @property grafanaToken A token from Grafana Labs that ties your AWS account with a Grafana Labs account.
* @property licenseType The type of license for the workspace license association. Valid values are `ENTERPRISE` and `ENTERPRISE_FREE_TRIAL`.
* @property workspaceId The workspace id.
*/
public data class LicenseAssociationArgs(
public val grafanaToken: Output? = null,
public val licenseType: Output? = null,
public val workspaceId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.grafana.LicenseAssociationArgs =
com.pulumi.aws.grafana.LicenseAssociationArgs.builder()
.grafanaToken(grafanaToken?.applyValue({ args0 -> args0 }))
.licenseType(licenseType?.applyValue({ args0 -> args0 }))
.workspaceId(workspaceId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LicenseAssociationArgs].
*/
@PulumiTagMarker
public class LicenseAssociationArgsBuilder internal constructor() {
private var grafanaToken: Output? = null
private var licenseType: Output? = null
private var workspaceId: Output? = null
/**
* @param value A token from Grafana Labs that ties your AWS account with a Grafana Labs account.
*/
@JvmName("gcaqybbabissjlch")
public suspend fun grafanaToken(`value`: Output) {
this.grafanaToken = value
}
/**
* @param value The type of license for the workspace license association. Valid values are `ENTERPRISE` and `ENTERPRISE_FREE_TRIAL`.
*/
@JvmName("vdhfuqnyunvexvtw")
public suspend fun licenseType(`value`: Output) {
this.licenseType = value
}
/**
* @param value The workspace id.
*/
@JvmName("ebcmantcjjluiwbi")
public suspend fun workspaceId(`value`: Output) {
this.workspaceId = value
}
/**
* @param value A token from Grafana Labs that ties your AWS account with a Grafana Labs account.
*/
@JvmName("nexbfuctvsoyjilp")
public suspend fun grafanaToken(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.grafanaToken = mapped
}
/**
* @param value The type of license for the workspace license association. Valid values are `ENTERPRISE` and `ENTERPRISE_FREE_TRIAL`.
*/
@JvmName("btpxbmvegiehmtmh")
public suspend fun licenseType(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.licenseType = mapped
}
/**
* @param value The workspace id.
*/
@JvmName("hvjxgfywxtlmjlxh")
public suspend fun workspaceId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.workspaceId = mapped
}
internal fun build(): LicenseAssociationArgs = LicenseAssociationArgs(
grafanaToken = grafanaToken,
licenseType = licenseType,
workspaceId = workspaceId,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy