
com.pulumi.azurenative.machinelearningservices.outputs.ServiceManagedResourcesSettingsResponse 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.machinelearningservices.outputs;
import com.pulumi.azurenative.machinelearningservices.outputs.CosmosDbSettingsResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ServiceManagedResourcesSettingsResponse {
/**
* @return The settings for the service managed cosmosdb account.
*
*/
private @Nullable CosmosDbSettingsResponse cosmosDb;
private ServiceManagedResourcesSettingsResponse() {}
/**
* @return The settings for the service managed cosmosdb account.
*
*/
public Optional cosmosDb() {
return Optional.ofNullable(this.cosmosDb);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ServiceManagedResourcesSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable CosmosDbSettingsResponse cosmosDb;
public Builder() {}
public Builder(ServiceManagedResourcesSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.cosmosDb = defaults.cosmosDb;
}
@CustomType.Setter
public Builder cosmosDb(@Nullable CosmosDbSettingsResponse cosmosDb) {
this.cosmosDb = cosmosDb;
return this;
}
public ServiceManagedResourcesSettingsResponse build() {
final var _resultValue = new ServiceManagedResourcesSettingsResponse();
_resultValue.cosmosDb = cosmosDb;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy