
com.pulumi.azurenative.security.outputs.DefenderForServersGcpOfferingResponseDefenderForServers 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.security.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class DefenderForServersGcpOfferingResponseDefenderForServers {
/**
* @return The service account email address in GCP for this feature
*
*/
private @Nullable String serviceAccountEmailAddress;
/**
* @return The workload identity provider id in GCP for this feature
*
*/
private @Nullable String workloadIdentityProviderId;
private DefenderForServersGcpOfferingResponseDefenderForServers() {}
/**
* @return The service account email address in GCP for this feature
*
*/
public Optional serviceAccountEmailAddress() {
return Optional.ofNullable(this.serviceAccountEmailAddress);
}
/**
* @return The workload identity provider id in GCP for this feature
*
*/
public Optional workloadIdentityProviderId() {
return Optional.ofNullable(this.workloadIdentityProviderId);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DefenderForServersGcpOfferingResponseDefenderForServers defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String serviceAccountEmailAddress;
private @Nullable String workloadIdentityProviderId;
public Builder() {}
public Builder(DefenderForServersGcpOfferingResponseDefenderForServers defaults) {
Objects.requireNonNull(defaults);
this.serviceAccountEmailAddress = defaults.serviceAccountEmailAddress;
this.workloadIdentityProviderId = defaults.workloadIdentityProviderId;
}
@CustomType.Setter
public Builder serviceAccountEmailAddress(@Nullable String serviceAccountEmailAddress) {
this.serviceAccountEmailAddress = serviceAccountEmailAddress;
return this;
}
@CustomType.Setter
public Builder workloadIdentityProviderId(@Nullable String workloadIdentityProviderId) {
this.workloadIdentityProviderId = workloadIdentityProviderId;
return this;
}
public DefenderForServersGcpOfferingResponseDefenderForServers build() {
final var _resultValue = new DefenderForServersGcpOfferingResponseDefenderForServers();
_resultValue.serviceAccountEmailAddress = serviceAccountEmailAddress;
_resultValue.workloadIdentityProviderId = workloadIdentityProviderId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy