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

com.pulumi.scm.ScepProfile Maven / Gradle / Ivy

There is a newer version: 0.2.0-alpha.1732774506
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.scm;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import com.pulumi.scm.ScepProfileArgs;
import com.pulumi.scm.Utilities;
import com.pulumi.scm.inputs.ScepProfileState;
import com.pulumi.scm.outputs.ScepProfileAlgorithm;
import com.pulumi.scm.outputs.ScepProfileCertificateAttributes;
import com.pulumi.scm.outputs.ScepProfileScepChallenge;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * Retrieves a config item.
 * 
 * ## Example Usage
 * 
 * <!--Start PulumiCodeChooser -->
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.scm.ScepProfile;
 * 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 ScepProfile("example");
 * 
 *     }
 * }
 * }
 * 
* <!--End PulumiCodeChooser --> * */ @ResourceType(type="scm:index/scepProfile:ScepProfile") public class ScepProfile extends com.pulumi.resources.CustomResource { /** * The Algorithm param. * */ @Export(name="algorithm", refs={ScepProfileAlgorithm.class}, tree="[0]") private Output algorithm; /** * @return The Algorithm param. * */ public Output> algorithm() { return Codegen.optional(this.algorithm); } /** * The CaIdentityName param. * */ @Export(name="caIdentityName", refs={String.class}, tree="[0]") private Output caIdentityName; /** * @return The CaIdentityName param. * */ public Output caIdentityName() { return this.caIdentityName; } /** * The CertificateAttributes param. * */ @Export(name="certificateAttributes", refs={ScepProfileCertificateAttributes.class}, tree="[0]") private Output certificateAttributes; /** * @return The CertificateAttributes param. * */ public Output> certificateAttributes() { return Codegen.optional(this.certificateAttributes); } /** * The Device param. * */ @Export(name="device", refs={String.class}, tree="[0]") private Output device; /** * @return The Device param. * */ public Output> device() { return Codegen.optional(this.device); } /** * The Digest param. * */ @Export(name="digest", refs={String.class}, tree="[0]") private Output digest; /** * @return The Digest param. * */ public Output digest() { return this.digest; } /** * (Internal use) Encrypted values returned from the API. * */ @Export(name="encryptedValues", refs={Map.class,String.class}, tree="[0,1,1]") private Output> encryptedValues; /** * @return (Internal use) Encrypted values returned from the API. * */ public Output> encryptedValues() { return this.encryptedValues; } /** * The Fingerprint param. * */ @Export(name="fingerprint", refs={String.class}, tree="[0]") private Output fingerprint; /** * @return The Fingerprint param. * */ public Output> fingerprint() { return Codegen.optional(this.fingerprint); } /** * The Folder param. * */ @Export(name="folder", refs={String.class}, tree="[0]") private Output folder; /** * @return The Folder param. * */ public Output> folder() { return Codegen.optional(this.folder); } /** * alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters. * */ public Output name() { return this.name; } /** * The ScepCaCert param. * */ @Export(name="scepCaCert", refs={String.class}, tree="[0]") private Output scepCaCert; /** * @return The ScepCaCert param. * */ public Output> scepCaCert() { return Codegen.optional(this.scepCaCert); } /** * The ScepChallenge param. * */ @Export(name="scepChallenge", refs={ScepProfileScepChallenge.class}, tree="[0]") private Output scepChallenge; /** * @return The ScepChallenge param. * */ public Output> scepChallenge() { return Codegen.optional(this.scepChallenge); } /** * The ScepClientCert param. * */ @Export(name="scepClientCert", refs={String.class}, tree="[0]") private Output scepClientCert; /** * @return The ScepClientCert param. * */ public Output> scepClientCert() { return Codegen.optional(this.scepClientCert); } /** * The ScepUrl param. * */ @Export(name="scepUrl", refs={String.class}, tree="[0]") private Output scepUrl; /** * @return The ScepUrl param. * */ public Output scepUrl() { return this.scepUrl; } /** * The Snippet param. * */ @Export(name="snippet", refs={String.class}, tree="[0]") private Output snippet; /** * @return The Snippet param. * */ public Output> snippet() { return Codegen.optional(this.snippet); } /** * The Subject param. * */ @Export(name="subject", refs={String.class}, tree="[0]") private Output subject; /** * @return The Subject param. * */ public Output> subject() { return Codegen.optional(this.subject); } @Export(name="tfid", refs={String.class}, tree="[0]") private Output tfid; public Output tfid() { return this.tfid; } /** * The UseAsDigitalSignature param. * */ @Export(name="useAsDigitalSignature", refs={Boolean.class}, tree="[0]") private Output useAsDigitalSignature; /** * @return The UseAsDigitalSignature param. * */ public Output> useAsDigitalSignature() { return Codegen.optional(this.useAsDigitalSignature); } /** * The UseForKeyEncipherment param. * */ @Export(name="useForKeyEncipherment", refs={Boolean.class}, tree="[0]") private Output useForKeyEncipherment; /** * @return The UseForKeyEncipherment param. * */ public Output> useForKeyEncipherment() { return Codegen.optional(this.useForKeyEncipherment); } /** * * @param name The _unique_ name of the resulting resource. */ public ScepProfile(String name) { this(name, ScepProfileArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public ScepProfile(String name, ScepProfileArgs args) { this(name, args, null); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. * @param options A bag of options that control this resource's behavior. */ public ScepProfile(String name, ScepProfileArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("scm:index/scepProfile:ScepProfile", name, args == null ? ScepProfileArgs.Empty : args, makeResourceOptions(options, Codegen.empty())); } private ScepProfile(String name, Output id, @Nullable ScepProfileState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("scm:index/scepProfile:ScepProfile", name, state, makeResourceOptions(options, id)); } private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) { var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder() .version(Utilities.getVersion()) .additionalSecretOutputs(List.of( "encryptedValues" )) .build(); return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id); } /** * Get an existing Host resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state * @param options Optional settings to control the behavior of the CustomResource. */ public static ScepProfile get(String name, Output id, @Nullable ScepProfileState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new ScepProfile(name, id, state, options); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy