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

com.pulumi.azurenative.recoveryservices.inputs.VMwareCbtSecurityProfilePropertiesArgs Maven / Gradle / Ivy

// *** 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.azurenative.recoveryservices.inputs;

import com.pulumi.azurenative.recoveryservices.enums.SecurityType;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * VMwareCbt security profile input.
 * 
 */
public final class VMwareCbtSecurityProfilePropertiesArgs extends com.pulumi.resources.ResourceArgs {

    public static final VMwareCbtSecurityProfilePropertiesArgs Empty = new VMwareCbtSecurityProfilePropertiesArgs();

    /**
     * A value indicating whether confidential compute encryption to be enabled.
     * 
     */
    @Import(name="isTargetVmConfidentialEncryptionEnabled")
    private @Nullable Output isTargetVmConfidentialEncryptionEnabled;

    /**
     * @return A value indicating whether confidential compute encryption to be enabled.
     * 
     */
    public Optional> isTargetVmConfidentialEncryptionEnabled() {
        return Optional.ofNullable(this.isTargetVmConfidentialEncryptionEnabled);
    }

    /**
     * A value indicating whether integrity monitoring to be enabled.
     * 
     */
    @Import(name="isTargetVmIntegrityMonitoringEnabled")
    private @Nullable Output isTargetVmIntegrityMonitoringEnabled;

    /**
     * @return A value indicating whether integrity monitoring to be enabled.
     * 
     */
    public Optional> isTargetVmIntegrityMonitoringEnabled() {
        return Optional.ofNullable(this.isTargetVmIntegrityMonitoringEnabled);
    }

    /**
     * A value indicating whether secure boot to be enabled.
     * 
     */
    @Import(name="isTargetVmSecureBootEnabled")
    private @Nullable Output isTargetVmSecureBootEnabled;

    /**
     * @return A value indicating whether secure boot to be enabled.
     * 
     */
    public Optional> isTargetVmSecureBootEnabled() {
        return Optional.ofNullable(this.isTargetVmSecureBootEnabled);
    }

    /**
     * A value indicating whether trusted platform module to be enabled.
     * 
     */
    @Import(name="isTargetVmTpmEnabled")
    private @Nullable Output isTargetVmTpmEnabled;

    /**
     * @return A value indicating whether trusted platform module to be enabled.
     * 
     */
    public Optional> isTargetVmTpmEnabled() {
        return Optional.ofNullable(this.isTargetVmTpmEnabled);
    }

    /**
     * The target VM security type.
     * 
     */
    @Import(name="targetVmSecurityType")
    private @Nullable Output> targetVmSecurityType;

    /**
     * @return The target VM security type.
     * 
     */
    public Optional>> targetVmSecurityType() {
        return Optional.ofNullable(this.targetVmSecurityType);
    }

    private VMwareCbtSecurityProfilePropertiesArgs() {}

    private VMwareCbtSecurityProfilePropertiesArgs(VMwareCbtSecurityProfilePropertiesArgs $) {
        this.isTargetVmConfidentialEncryptionEnabled = $.isTargetVmConfidentialEncryptionEnabled;
        this.isTargetVmIntegrityMonitoringEnabled = $.isTargetVmIntegrityMonitoringEnabled;
        this.isTargetVmSecureBootEnabled = $.isTargetVmSecureBootEnabled;
        this.isTargetVmTpmEnabled = $.isTargetVmTpmEnabled;
        this.targetVmSecurityType = $.targetVmSecurityType;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(VMwareCbtSecurityProfilePropertiesArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private VMwareCbtSecurityProfilePropertiesArgs $;

        public Builder() {
            $ = new VMwareCbtSecurityProfilePropertiesArgs();
        }

        public Builder(VMwareCbtSecurityProfilePropertiesArgs defaults) {
            $ = new VMwareCbtSecurityProfilePropertiesArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param isTargetVmConfidentialEncryptionEnabled A value indicating whether confidential compute encryption to be enabled.
         * 
         * @return builder
         * 
         */
        public Builder isTargetVmConfidentialEncryptionEnabled(@Nullable Output isTargetVmConfidentialEncryptionEnabled) {
            $.isTargetVmConfidentialEncryptionEnabled = isTargetVmConfidentialEncryptionEnabled;
            return this;
        }

        /**
         * @param isTargetVmConfidentialEncryptionEnabled A value indicating whether confidential compute encryption to be enabled.
         * 
         * @return builder
         * 
         */
        public Builder isTargetVmConfidentialEncryptionEnabled(String isTargetVmConfidentialEncryptionEnabled) {
            return isTargetVmConfidentialEncryptionEnabled(Output.of(isTargetVmConfidentialEncryptionEnabled));
        }

        /**
         * @param isTargetVmIntegrityMonitoringEnabled A value indicating whether integrity monitoring to be enabled.
         * 
         * @return builder
         * 
         */
        public Builder isTargetVmIntegrityMonitoringEnabled(@Nullable Output isTargetVmIntegrityMonitoringEnabled) {
            $.isTargetVmIntegrityMonitoringEnabled = isTargetVmIntegrityMonitoringEnabled;
            return this;
        }

        /**
         * @param isTargetVmIntegrityMonitoringEnabled A value indicating whether integrity monitoring to be enabled.
         * 
         * @return builder
         * 
         */
        public Builder isTargetVmIntegrityMonitoringEnabled(String isTargetVmIntegrityMonitoringEnabled) {
            return isTargetVmIntegrityMonitoringEnabled(Output.of(isTargetVmIntegrityMonitoringEnabled));
        }

        /**
         * @param isTargetVmSecureBootEnabled A value indicating whether secure boot to be enabled.
         * 
         * @return builder
         * 
         */
        public Builder isTargetVmSecureBootEnabled(@Nullable Output isTargetVmSecureBootEnabled) {
            $.isTargetVmSecureBootEnabled = isTargetVmSecureBootEnabled;
            return this;
        }

        /**
         * @param isTargetVmSecureBootEnabled A value indicating whether secure boot to be enabled.
         * 
         * @return builder
         * 
         */
        public Builder isTargetVmSecureBootEnabled(String isTargetVmSecureBootEnabled) {
            return isTargetVmSecureBootEnabled(Output.of(isTargetVmSecureBootEnabled));
        }

        /**
         * @param isTargetVmTpmEnabled A value indicating whether trusted platform module to be enabled.
         * 
         * @return builder
         * 
         */
        public Builder isTargetVmTpmEnabled(@Nullable Output isTargetVmTpmEnabled) {
            $.isTargetVmTpmEnabled = isTargetVmTpmEnabled;
            return this;
        }

        /**
         * @param isTargetVmTpmEnabled A value indicating whether trusted platform module to be enabled.
         * 
         * @return builder
         * 
         */
        public Builder isTargetVmTpmEnabled(String isTargetVmTpmEnabled) {
            return isTargetVmTpmEnabled(Output.of(isTargetVmTpmEnabled));
        }

        /**
         * @param targetVmSecurityType The target VM security type.
         * 
         * @return builder
         * 
         */
        public Builder targetVmSecurityType(@Nullable Output> targetVmSecurityType) {
            $.targetVmSecurityType = targetVmSecurityType;
            return this;
        }

        /**
         * @param targetVmSecurityType The target VM security type.
         * 
         * @return builder
         * 
         */
        public Builder targetVmSecurityType(Either targetVmSecurityType) {
            return targetVmSecurityType(Output.of(targetVmSecurityType));
        }

        /**
         * @param targetVmSecurityType The target VM security type.
         * 
         * @return builder
         * 
         */
        public Builder targetVmSecurityType(String targetVmSecurityType) {
            return targetVmSecurityType(Either.ofLeft(targetVmSecurityType));
        }

        /**
         * @param targetVmSecurityType The target VM security type.
         * 
         * @return builder
         * 
         */
        public Builder targetVmSecurityType(SecurityType targetVmSecurityType) {
            return targetVmSecurityType(Either.ofRight(targetVmSecurityType));
        }

        public VMwareCbtSecurityProfilePropertiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy