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

com.pulumi.azurenative.machinelearningservices.inputs.ServiceManagedResourcesSettingsArgs Maven / Gradle / Ivy

There is a newer version: 2.89.2
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.azurenative.machinelearningservices.inputs;

import com.pulumi.azurenative.machinelearningservices.inputs.CosmosDbSettingsArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final ServiceManagedResourcesSettingsArgs Empty = new ServiceManagedResourcesSettingsArgs();

    /**
     * The settings for the service managed cosmosdb account.
     * 
     */
    @Import(name="cosmosDb")
    private @Nullable Output cosmosDb;

    /**
     * @return The settings for the service managed cosmosdb account.
     * 
     */
    public Optional> cosmosDb() {
        return Optional.ofNullable(this.cosmosDb);
    }

    private ServiceManagedResourcesSettingsArgs() {}

    private ServiceManagedResourcesSettingsArgs(ServiceManagedResourcesSettingsArgs $) {
        this.cosmosDb = $.cosmosDb;
    }

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

    public static final class Builder {
        private ServiceManagedResourcesSettingsArgs $;

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

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

        /**
         * @param cosmosDb The settings for the service managed cosmosdb account.
         * 
         * @return builder
         * 
         */
        public Builder cosmosDb(@Nullable Output cosmosDb) {
            $.cosmosDb = cosmosDb;
            return this;
        }

        /**
         * @param cosmosDb The settings for the service managed cosmosdb account.
         * 
         * @return builder
         * 
         */
        public Builder cosmosDb(CosmosDbSettingsArgs cosmosDb) {
            return cosmosDb(Output.of(cosmosDb));
        }

        public ServiceManagedResourcesSettingsArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy