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

com.pulumi.gcp.certificatemanager.kotlin.CertificateMapEntryArgs.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.certificatemanager.kotlin

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.certificatemanager.CertificateMapEntryArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 * CertificateMapEntry is a list of certificate configurations,
 * that have been issued for a particular hostname
 * ## Example Usage
 * ### Certificate Manager Certificate Map Entry Full
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const certificateMap = new gcp.certificatemanager.CertificateMap("certificate_map", {
 *     name: "cert-map-entry",
 *     description: "My acceptance test certificate map",
 *     labels: {
 *         terraform: "true",
 *         "acc-test": "true",
 *     },
 * });
 * const instance = new gcp.certificatemanager.DnsAuthorization("instance", {
 *     name: "dns-auth",
 *     description: "The default dnss",
 *     domain: "subdomain.hashicorptest.com",
 * });
 * const instance2 = new gcp.certificatemanager.DnsAuthorization("instance2", {
 *     name: "dns-auth2",
 *     description: "The default dnss",
 *     domain: "subdomain2.hashicorptest.com",
 * });
 * const certificate = new gcp.certificatemanager.Certificate("certificate", {
 *     name: "cert-map-entry",
 *     description: "The default cert",
 *     scope: "DEFAULT",
 *     managed: {
 *         domains: [
 *             instance.domain,
 *             instance2.domain,
 *         ],
 *         dnsAuthorizations: [
 *             instance.id,
 *             instance2.id,
 *         ],
 *     },
 * });
 * const _default = new gcp.certificatemanager.CertificateMapEntry("default", {
 *     name: "cert-map-entry",
 *     description: "My acceptance test certificate map entry",
 *     map: certificateMap.name,
 *     labels: {
 *         terraform: "true",
 *         "acc-test": "true",
 *     },
 *     certificates: [certificate.id],
 *     matcher: "PRIMARY",
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * certificate_map = gcp.certificatemanager.CertificateMap("certificate_map",
 *     name="cert-map-entry",
 *     description="My acceptance test certificate map",
 *     labels={
 *         "terraform": "true",
 *         "acc-test": "true",
 *     })
 * instance = gcp.certificatemanager.DnsAuthorization("instance",
 *     name="dns-auth",
 *     description="The default dnss",
 *     domain="subdomain.hashicorptest.com")
 * instance2 = gcp.certificatemanager.DnsAuthorization("instance2",
 *     name="dns-auth2",
 *     description="The default dnss",
 *     domain="subdomain2.hashicorptest.com")
 * certificate = gcp.certificatemanager.Certificate("certificate",
 *     name="cert-map-entry",
 *     description="The default cert",
 *     scope="DEFAULT",
 *     managed=gcp.certificatemanager.CertificateManagedArgs(
 *         domains=[
 *             instance.domain,
 *             instance2.domain,
 *         ],
 *         dns_authorizations=[
 *             instance.id,
 *             instance2.id,
 *         ],
 *     ))
 * default = gcp.certificatemanager.CertificateMapEntry("default",
 *     name="cert-map-entry",
 *     description="My acceptance test certificate map entry",
 *     map=certificate_map.name,
 *     labels={
 *         "terraform": "true",
 *         "acc-test": "true",
 *     },
 *     certificates=[certificate.id],
 *     matcher="PRIMARY")
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var certificateMap = new Gcp.CertificateManager.CertificateMap("certificate_map", new()
 *     {
 *         Name = "cert-map-entry",
 *         Description = "My acceptance test certificate map",
 *         Labels =
 *         {
 *             { "terraform", "true" },
 *             { "acc-test", "true" },
 *         },
 *     });
 *     var instance = new Gcp.CertificateManager.DnsAuthorization("instance", new()
 *     {
 *         Name = "dns-auth",
 *         Description = "The default dnss",
 *         Domain = "subdomain.hashicorptest.com",
 *     });
 *     var instance2 = new Gcp.CertificateManager.DnsAuthorization("instance2", new()
 *     {
 *         Name = "dns-auth2",
 *         Description = "The default dnss",
 *         Domain = "subdomain2.hashicorptest.com",
 *     });
 *     var certificate = new Gcp.CertificateManager.Certificate("certificate", new()
 *     {
 *         Name = "cert-map-entry",
 *         Description = "The default cert",
 *         Scope = "DEFAULT",
 *         Managed = new Gcp.CertificateManager.Inputs.CertificateManagedArgs
 *         {
 *             Domains = new[]
 *             {
 *                 instance.Domain,
 *                 instance2.Domain,
 *             },
 *             DnsAuthorizations = new[]
 *             {
 *                 instance.Id,
 *                 instance2.Id,
 *             },
 *         },
 *     });
 *     var @default = new Gcp.CertificateManager.CertificateMapEntry("default", new()
 *     {
 *         Name = "cert-map-entry",
 *         Description = "My acceptance test certificate map entry",
 *         Map = certificateMap.Name,
 *         Labels =
 *         {
 *             { "terraform", "true" },
 *             { "acc-test", "true" },
 *         },
 *         Certificates = new[]
 *         {
 *             certificate.Id,
 *         },
 *         Matcher = "PRIMARY",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/certificatemanager"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		certificateMap, err := certificatemanager.NewCertificateMap(ctx, "certificate_map", &certificatemanager.CertificateMapArgs{
 * 			Name:        pulumi.String("cert-map-entry"),
 * 			Description: pulumi.String("My acceptance test certificate map"),
 * 			Labels: pulumi.StringMap{
 * 				"terraform": pulumi.String("true"),
 * 				"acc-test":  pulumi.String("true"),
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		instance, err := certificatemanager.NewDnsAuthorization(ctx, "instance", &certificatemanager.DnsAuthorizationArgs{
 * 			Name:        pulumi.String("dns-auth"),
 * 			Description: pulumi.String("The default dnss"),
 * 			Domain:      pulumi.String("subdomain.hashicorptest.com"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		instance2, err := certificatemanager.NewDnsAuthorization(ctx, "instance2", &certificatemanager.DnsAuthorizationArgs{
 * 			Name:        pulumi.String("dns-auth2"),
 * 			Description: pulumi.String("The default dnss"),
 * 			Domain:      pulumi.String("subdomain2.hashicorptest.com"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		certificate, err := certificatemanager.NewCertificate(ctx, "certificate", &certificatemanager.CertificateArgs{
 * 			Name:        pulumi.String("cert-map-entry"),
 * 			Description: pulumi.String("The default cert"),
 * 			Scope:       pulumi.String("DEFAULT"),
 * 			Managed: &certificatemanager.CertificateManagedArgs{
 * 				Domains: pulumi.StringArray{
 * 					instance.Domain,
 * 					instance2.Domain,
 * 				},
 * 				DnsAuthorizations: pulumi.StringArray{
 * 					instance.ID(),
 * 					instance2.ID(),
 * 				},
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = certificatemanager.NewCertificateMapEntry(ctx, "default", &certificatemanager.CertificateMapEntryArgs{
 * 			Name:        pulumi.String("cert-map-entry"),
 * 			Description: pulumi.String("My acceptance test certificate map entry"),
 * 			Map:         certificateMap.Name,
 * 			Labels: pulumi.StringMap{
 * 				"terraform": pulumi.String("true"),
 * 				"acc-test":  pulumi.String("true"),
 * 			},
 * 			Certificates: pulumi.StringArray{
 * 				certificate.ID(),
 * 			},
 * 			Matcher: pulumi.String("PRIMARY"),
 * 		})
 * 		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.gcp.certificatemanager.CertificateMap;
 * import com.pulumi.gcp.certificatemanager.CertificateMapArgs;
 * import com.pulumi.gcp.certificatemanager.DnsAuthorization;
 * import com.pulumi.gcp.certificatemanager.DnsAuthorizationArgs;
 * import com.pulumi.gcp.certificatemanager.Certificate;
 * import com.pulumi.gcp.certificatemanager.CertificateArgs;
 * import com.pulumi.gcp.certificatemanager.inputs.CertificateManagedArgs;
 * import com.pulumi.gcp.certificatemanager.CertificateMapEntry;
 * import com.pulumi.gcp.certificatemanager.CertificateMapEntryArgs;
 * 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 certificateMap = new CertificateMap("certificateMap", CertificateMapArgs.builder()
 *             .name("cert-map-entry")
 *             .description("My acceptance test certificate map")
 *             .labels(Map.ofEntries(
 *                 Map.entry("terraform", true),
 *                 Map.entry("acc-test", true)
 *             ))
 *             .build());
 *         var instance = new DnsAuthorization("instance", DnsAuthorizationArgs.builder()
 *             .name("dns-auth")
 *             .description("The default dnss")
 *             .domain("subdomain.hashicorptest.com")
 *             .build());
 *         var instance2 = new DnsAuthorization("instance2", DnsAuthorizationArgs.builder()
 *             .name("dns-auth2")
 *             .description("The default dnss")
 *             .domain("subdomain2.hashicorptest.com")
 *             .build());
 *         var certificate = new Certificate("certificate", CertificateArgs.builder()
 *             .name("cert-map-entry")
 *             .description("The default cert")
 *             .scope("DEFAULT")
 *             .managed(CertificateManagedArgs.builder()
 *                 .domains(
 *                     instance.domain(),
 *                     instance2.domain())
 *                 .dnsAuthorizations(
 *                     instance.id(),
 *                     instance2.id())
 *                 .build())
 *             .build());
 *         var default_ = new CertificateMapEntry("default", CertificateMapEntryArgs.builder()
 *             .name("cert-map-entry")
 *             .description("My acceptance test certificate map entry")
 *             .map(certificateMap.name())
 *             .labels(Map.ofEntries(
 *                 Map.entry("terraform", true),
 *                 Map.entry("acc-test", true)
 *             ))
 *             .certificates(certificate.id())
 *             .matcher("PRIMARY")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   certificateMap:
 *     type: gcp:certificatemanager:CertificateMap
 *     name: certificate_map
 *     properties:
 *       name: cert-map-entry
 *       description: My acceptance test certificate map
 *       labels:
 *         terraform: true
 *         acc-test: true
 *   default:
 *     type: gcp:certificatemanager:CertificateMapEntry
 *     properties:
 *       name: cert-map-entry
 *       description: My acceptance test certificate map entry
 *       map: ${certificateMap.name}
 *       labels:
 *         terraform: true
 *         acc-test: true
 *       certificates:
 *         - ${certificate.id}
 *       matcher: PRIMARY
 *   certificate:
 *     type: gcp:certificatemanager:Certificate
 *     properties:
 *       name: cert-map-entry
 *       description: The default cert
 *       scope: DEFAULT
 *       managed:
 *         domains:
 *           - ${instance.domain}
 *           - ${instance2.domain}
 *         dnsAuthorizations:
 *           - ${instance.id}
 *           - ${instance2.id}
 *   instance:
 *     type: gcp:certificatemanager:DnsAuthorization
 *     properties:
 *       name: dns-auth
 *       description: The default dnss
 *       domain: subdomain.hashicorptest.com
 *   instance2:
 *     type: gcp:certificatemanager:DnsAuthorization
 *     properties:
 *       name: dns-auth2
 *       description: The default dnss
 *       domain: subdomain2.hashicorptest.com
 * ```
 * 
 * ## Import
 * CertificateMapEntry can be imported using any of these accepted formats:
 * * `projects/{{project}}/locations/global/certificateMaps/{{map}}/certificateMapEntries/{{name}}`
 * * `{{project}}/{{map}}/{{name}}`
 * * `{{map}}/{{name}}`
 * When using the `pulumi import` command, CertificateMapEntry can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:certificatemanager/certificateMapEntry:CertificateMapEntry default projects/{{project}}/locations/global/certificateMaps/{{map}}/certificateMapEntries/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:certificatemanager/certificateMapEntry:CertificateMapEntry default {{project}}/{{map}}/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:certificatemanager/certificateMapEntry:CertificateMapEntry default {{map}}/{{name}}
 * ```
 * @property certificates A set of Certificates defines for the given hostname.
 * There can be defined up to fifteen certificates in each Certificate Map Entry.
 * Each certificate must match pattern projects/*/locations/*/certificates/*.
 * @property description A human-readable description of the resource.
 * @property hostname A Hostname (FQDN, e.g. example.com) or a wildcard hostname expression (*.example.com)
 * for a set of hostnames with common suffix. Used as Server Name Indication (SNI) for
 * selecting a proper certificate.
 * @property labels Set of labels associated with a Certificate Map Entry.
 * An object containing a list of "key": value pairs.
 * Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
 * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
 * Please refer to the field `effective_labels` for all of the labels present on the resource.
 * @property map A map entry that is inputted into the cetrificate map
 * - - -
 * @property matcher A predefined matcher for particular cases, other than SNI selection
 * @property name A user-defined name of the Certificate Map Entry. Certificate Map Entry
 * names must be unique globally and match pattern
 * 'projects/*/locations/*/certificateMaps/*/certificateMapEntries/*'
 * @property project The ID of the project in which the resource belongs.
 * If it is not provided, the provider project is used.
 * */*/*/*/*/*/*/
 */
public data class CertificateMapEntryArgs(
    public val certificates: Output>? = null,
    public val description: Output? = null,
    public val hostname: Output? = null,
    public val labels: Output>? = null,
    public val map: Output? = null,
    public val matcher: Output? = null,
    public val name: Output? = null,
    public val project: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.certificatemanager.CertificateMapEntryArgs =
        com.pulumi.gcp.certificatemanager.CertificateMapEntryArgs.builder()
            .certificates(certificates?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .description(description?.applyValue({ args0 -> args0 }))
            .hostname(hostname?.applyValue({ args0 -> args0 }))
            .labels(labels?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
            .map(map?.applyValue({ args0 -> args0 }))
            .matcher(matcher?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .project(project?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [CertificateMapEntryArgs].
 */
@PulumiTagMarker
public class CertificateMapEntryArgsBuilder internal constructor() {
    private var certificates: Output>? = null

    private var description: Output? = null

    private var hostname: Output? = null

    private var labels: Output>? = null

    private var map: Output? = null

    private var matcher: Output? = null

    private var name: Output? = null

    private var project: Output? = null

    /**
     * @param value A set of Certificates defines for the given hostname.
     * There can be defined up to fifteen certificates in each Certificate Map Entry.
     * Each certificate must match pattern projects/*/locations/*/certificates/*.
     * */*/*/
     */
    @JvmName("tlwrbibqltybmebv")
    public suspend fun certificates(`value`: Output>) {
        this.certificates = value
    }

    @JvmName("pxtigjlchtldsrse")
    public suspend fun certificates(vararg values: Output) {
        this.certificates = Output.all(values.asList())
    }

    /**
     * @param values A set of Certificates defines for the given hostname.
     * There can be defined up to fifteen certificates in each Certificate Map Entry.
     * Each certificate must match pattern projects/*/locations/*/certificates/*.
     * */*/*/
     */
    @JvmName("jnkvnposikumujas")
    public suspend fun certificates(values: List>) {
        this.certificates = Output.all(values)
    }

    /**
     * @param value A human-readable description of the resource.
     */
    @JvmName("yrunbyunqwedhuyx")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value A Hostname (FQDN, e.g. example.com) or a wildcard hostname expression (*.example.com)
     * for a set of hostnames with common suffix. Used as Server Name Indication (SNI) for
     * selecting a proper certificate.
     */
    @JvmName("rcibpbnuovkrpyik")
    public suspend fun hostname(`value`: Output) {
        this.hostname = value
    }

    /**
     * @param value Set of labels associated with a Certificate Map Entry.
     * An object containing a list of "key": value pairs.
     * Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("mxwoigslxdjfcmta")
    public suspend fun labels(`value`: Output>) {
        this.labels = value
    }

    /**
     * @param value A map entry that is inputted into the cetrificate map
     * - - -
     */
    @JvmName("oaksuqmuofrfmsjn")
    public suspend fun map(`value`: Output) {
        this.map = value
    }

    /**
     * @param value A predefined matcher for particular cases, other than SNI selection
     */
    @JvmName("gpjsrligtkvqribh")
    public suspend fun matcher(`value`: Output) {
        this.matcher = value
    }

    /**
     * @param value A user-defined name of the Certificate Map Entry. Certificate Map Entry
     * names must be unique globally and match pattern
     * 'projects/*/locations/*/certificateMaps/*/certificateMapEntries/*'
     * */*/*/*/
     */
    @JvmName("jnxfjvqlxkupwdfd")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("vwjswvhcqftcvrva")
    public suspend fun project(`value`: Output) {
        this.project = value
    }

    /**
     * @param value A set of Certificates defines for the given hostname.
     * There can be defined up to fifteen certificates in each Certificate Map Entry.
     * Each certificate must match pattern projects/*/locations/*/certificates/*.
     * */*/*/
     */
    @JvmName("msmjqicrmtagctsa")
    public suspend fun certificates(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.certificates = mapped
    }

    /**
     * @param values A set of Certificates defines for the given hostname.
     * There can be defined up to fifteen certificates in each Certificate Map Entry.
     * Each certificate must match pattern projects/*/locations/*/certificates/*.
     * */*/*/
     */
    @JvmName("qmoleavtejryskkk")
    public suspend fun certificates(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.certificates = mapped
    }

    /**
     * @param value A human-readable description of the resource.
     */
    @JvmName("rcqnlsbwfpdygvlm")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value A Hostname (FQDN, e.g. example.com) or a wildcard hostname expression (*.example.com)
     * for a set of hostnames with common suffix. Used as Server Name Indication (SNI) for
     * selecting a proper certificate.
     */
    @JvmName("lrxpodebcyylrkqs")
    public suspend fun hostname(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.hostname = mapped
    }

    /**
     * @param value Set of labels associated with a Certificate Map Entry.
     * An object containing a list of "key": value pairs.
     * Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("absaowliindfnvts")
    public suspend fun labels(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.labels = mapped
    }

    /**
     * @param values Set of labels associated with a Certificate Map Entry.
     * An object containing a list of "key": value pairs.
     * Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("sftetfwvbwjtpcsr")
    public fun labels(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.labels = mapped
    }

    /**
     * @param value A map entry that is inputted into the cetrificate map
     * - - -
     */
    @JvmName("qncuurukroeogglv")
    public suspend fun map(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.map = mapped
    }

    /**
     * @param value A predefined matcher for particular cases, other than SNI selection
     */
    @JvmName("bbnssvexdvtntxjm")
    public suspend fun matcher(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.matcher = mapped
    }

    /**
     * @param value A user-defined name of the Certificate Map Entry. Certificate Map Entry
     * names must be unique globally and match pattern
     * 'projects/*/locations/*/certificateMaps/*/certificateMapEntries/*'
     * */*/*/*/
     */
    @JvmName("gjqwubhhxtfvgpaa")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("cauxttvqgstghvsn")
    public suspend fun project(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.project = mapped
    }

    internal fun build(): CertificateMapEntryArgs = CertificateMapEntryArgs(
        certificates = certificates,
        description = description,
        hostname = hostname,
        labels = labels,
        map = map,
        matcher = matcher,
        name = name,
        project = project,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy