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

com.pulumi.azure.inputs.ProviderFeaturesPostgresqlFlexibleServerArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
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.azure.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class ProviderFeaturesPostgresqlFlexibleServerArgs extends com.pulumi.resources.ResourceArgs {

    public static final ProviderFeaturesPostgresqlFlexibleServerArgs Empty = new ProviderFeaturesPostgresqlFlexibleServerArgs();

    @Import(name="restartServerOnConfigurationValueChange")
    private @Nullable Output restartServerOnConfigurationValueChange;

    public Optional> restartServerOnConfigurationValueChange() {
        return Optional.ofNullable(this.restartServerOnConfigurationValueChange);
    }

    private ProviderFeaturesPostgresqlFlexibleServerArgs() {}

    private ProviderFeaturesPostgresqlFlexibleServerArgs(ProviderFeaturesPostgresqlFlexibleServerArgs $) {
        this.restartServerOnConfigurationValueChange = $.restartServerOnConfigurationValueChange;
    }

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

    public static final class Builder {
        private ProviderFeaturesPostgresqlFlexibleServerArgs $;

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

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

        public Builder restartServerOnConfigurationValueChange(@Nullable Output restartServerOnConfigurationValueChange) {
            $.restartServerOnConfigurationValueChange = restartServerOnConfigurationValueChange;
            return this;
        }

        public Builder restartServerOnConfigurationValueChange(Boolean restartServerOnConfigurationValueChange) {
            return restartServerOnConfigurationValueChange(Output.of(restartServerOnConfigurationValueChange));
        }

        public ProviderFeaturesPostgresqlFlexibleServerArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy