All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.ssm.kotlin.PatchGroupArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.ssm.kotlin

import com.pulumi.aws.ssm.PatchGroupArgs.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 SSM Patch Group resource
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as aws from "@pulumi/aws";
 * const production = new aws.ssm.PatchBaseline("production", {
 *     name: "patch-baseline",
 *     approvedPatches: ["KB123456"],
 * });
 * const patchgroup = new aws.ssm.PatchGroup("patchgroup", {
 *     baselineId: production.id,
 *     patchGroup: "patch-group-name",
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_aws as aws
 * production = aws.ssm.PatchBaseline("production",
 *     name="patch-baseline",
 *     approved_patches=["KB123456"])
 * patchgroup = aws.ssm.PatchGroup("patchgroup",
 *     baseline_id=production.id,
 *     patch_group="patch-group-name")
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Aws = Pulumi.Aws;
 * return await Deployment.RunAsync(() =>
 * {
 *     var production = new Aws.Ssm.PatchBaseline("production", new()
 *     {
 *         Name = "patch-baseline",
 *         ApprovedPatches = new[]
 *         {
 *             "KB123456",
 *         },
 *     });
 *     var patchgroup = new Aws.Ssm.PatchGroup("patchgroup", new()
 *     {
 *         BaselineId = production.Id,
 *         PatchGroupName = "patch-group-name",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssm"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		production, err := ssm.NewPatchBaseline(ctx, "production", &ssm.PatchBaselineArgs{
 * 			Name: pulumi.String("patch-baseline"),
 * 			ApprovedPatches: pulumi.StringArray{
 * 				pulumi.String("KB123456"),
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = ssm.NewPatchGroup(ctx, "patchgroup", &ssm.PatchGroupArgs{
 * 			BaselineId: production.ID(),
 * 			PatchGroup: pulumi.String("patch-group-name"),
 * 		})
 * 		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.ssm.PatchBaseline;
 * import com.pulumi.aws.ssm.PatchBaselineArgs;
 * import com.pulumi.aws.ssm.PatchGroup;
 * import com.pulumi.aws.ssm.PatchGroupArgs;
 * 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 production = new PatchBaseline("production", PatchBaselineArgs.builder()
 *             .name("patch-baseline")
 *             .approvedPatches("KB123456")
 *             .build());
 *         var patchgroup = new PatchGroup("patchgroup", PatchGroupArgs.builder()
 *             .baselineId(production.id())
 *             .patchGroup("patch-group-name")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   production:
 *     type: aws:ssm:PatchBaseline
 *     properties:
 *       name: patch-baseline
 *       approvedPatches:
 *         - KB123456
 *   patchgroup:
 *     type: aws:ssm:PatchGroup
 *     properties:
 *       baselineId: ${production.id}
 *       patchGroup: patch-group-name
 * ```
 * 
 * @property baselineId The ID of the patch baseline to register the patch group with.
 * @property patchGroup The name of the patch group that should be registered with the patch baseline.
 */
public data class PatchGroupArgs(
    public val baselineId: Output? = null,
    public val patchGroup: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.ssm.PatchGroupArgs =
        com.pulumi.aws.ssm.PatchGroupArgs.builder()
            .baselineId(baselineId?.applyValue({ args0 -> args0 }))
            .patchGroup(patchGroup?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [PatchGroupArgs].
 */
@PulumiTagMarker
public class PatchGroupArgsBuilder internal constructor() {
    private var baselineId: Output? = null

    private var patchGroup: Output? = null

    /**
     * @param value The ID of the patch baseline to register the patch group with.
     */
    @JvmName("nlobklrnoisvrrjm")
    public suspend fun baselineId(`value`: Output) {
        this.baselineId = value
    }

    /**
     * @param value The name of the patch group that should be registered with the patch baseline.
     */
    @JvmName("ehgsjwpimotrhdbo")
    public suspend fun patchGroup(`value`: Output) {
        this.patchGroup = value
    }

    /**
     * @param value The ID of the patch baseline to register the patch group with.
     */
    @JvmName("vbdrorrcfuvicame")
    public suspend fun baselineId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.baselineId = mapped
    }

    /**
     * @param value The name of the patch group that should be registered with the patch baseline.
     */
    @JvmName("vcorigeiawbwyeba")
    public suspend fun patchGroup(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.patchGroup = mapped
    }

    internal fun build(): PatchGroupArgs = PatchGroupArgs(
        baselineId = baselineId,
        patchGroup = patchGroup,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy