
com.pulumi.azurenative.hybridcompute.outputs.ServiceStatusesResponse 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.hybridcompute.outputs;
import com.pulumi.azurenative.hybridcompute.outputs.ServiceStatusResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ServiceStatusesResponse {
/**
* @return The state of the extension service on the Arc-enabled machine.
*
*/
private @Nullable ServiceStatusResponse extensionService;
/**
* @return The state of the guest configuration service on the Arc-enabled machine.
*
*/
private @Nullable ServiceStatusResponse guestConfigurationService;
private ServiceStatusesResponse() {}
/**
* @return The state of the extension service on the Arc-enabled machine.
*
*/
public Optional extensionService() {
return Optional.ofNullable(this.extensionService);
}
/**
* @return The state of the guest configuration service on the Arc-enabled machine.
*
*/
public Optional guestConfigurationService() {
return Optional.ofNullable(this.guestConfigurationService);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ServiceStatusesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable ServiceStatusResponse extensionService;
private @Nullable ServiceStatusResponse guestConfigurationService;
public Builder() {}
public Builder(ServiceStatusesResponse defaults) {
Objects.requireNonNull(defaults);
this.extensionService = defaults.extensionService;
this.guestConfigurationService = defaults.guestConfigurationService;
}
@CustomType.Setter
public Builder extensionService(@Nullable ServiceStatusResponse extensionService) {
this.extensionService = extensionService;
return this;
}
@CustomType.Setter
public Builder guestConfigurationService(@Nullable ServiceStatusResponse guestConfigurationService) {
this.guestConfigurationService = guestConfigurationService;
return this;
}
public ServiceStatusesResponse build() {
final var _resultValue = new ServiceStatusesResponse();
_resultValue.extensionService = extensionService;
_resultValue.guestConfigurationService = guestConfigurationService;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy