com.pulumi.azurenative.devopsinfrastructure.outputs.OsProfileResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.devopsinfrastructure.outputs;
import com.pulumi.azurenative.devopsinfrastructure.outputs.SecretsManagementSettingsResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.Objects;
@CustomType
public final class OsProfileResponse {
/**
* @return The secret management settings of the machines in the pool.
*
*/
private SecretsManagementSettingsResponse secretsManagementSettings;
private OsProfileResponse() {}
/**
* @return The secret management settings of the machines in the pool.
*
*/
public SecretsManagementSettingsResponse secretsManagementSettings() {
return this.secretsManagementSettings;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(OsProfileResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private SecretsManagementSettingsResponse secretsManagementSettings;
public Builder() {}
public Builder(OsProfileResponse defaults) {
Objects.requireNonNull(defaults);
this.secretsManagementSettings = defaults.secretsManagementSettings;
}
@CustomType.Setter
public Builder secretsManagementSettings(SecretsManagementSettingsResponse secretsManagementSettings) {
if (secretsManagementSettings == null) {
throw new MissingRequiredPropertyException("OsProfileResponse", "secretsManagementSettings");
}
this.secretsManagementSettings = secretsManagementSettings;
return this;
}
public OsProfileResponse build() {
final var _resultValue = new OsProfileResponse();
_resultValue.secretsManagementSettings = secretsManagementSettings;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy