
com.pulumi.azurenative.migrate.outputs.CollectorBodyAgentSpnPropertiesResponse 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.migrate.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 CollectorBodyAgentSpnPropertiesResponse {
/**
* @return Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
*
*/
private @Nullable String applicationId;
/**
* @return Intended audience for the service principal.
*
*/
private @Nullable String audience;
/**
* @return AAD Authority URL which was used to request the token for the service principal.
*
*/
private @Nullable String authority;
/**
* @return Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
*
*/
private @Nullable String objectId;
/**
* @return Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
*
*/
private @Nullable String tenantId;
private CollectorBodyAgentSpnPropertiesResponse() {}
/**
* @return Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
*
*/
public Optional applicationId() {
return Optional.ofNullable(this.applicationId);
}
/**
* @return Intended audience for the service principal.
*
*/
public Optional audience() {
return Optional.ofNullable(this.audience);
}
/**
* @return AAD Authority URL which was used to request the token for the service principal.
*
*/
public Optional authority() {
return Optional.ofNullable(this.authority);
}
/**
* @return Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
*
*/
public Optional objectId() {
return Optional.ofNullable(this.objectId);
}
/**
* @return Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
*
*/
public Optional tenantId() {
return Optional.ofNullable(this.tenantId);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CollectorBodyAgentSpnPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String applicationId;
private @Nullable String audience;
private @Nullable String authority;
private @Nullable String objectId;
private @Nullable String tenantId;
public Builder() {}
public Builder(CollectorBodyAgentSpnPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.applicationId = defaults.applicationId;
this.audience = defaults.audience;
this.authority = defaults.authority;
this.objectId = defaults.objectId;
this.tenantId = defaults.tenantId;
}
@CustomType.Setter
public Builder applicationId(@Nullable String applicationId) {
this.applicationId = applicationId;
return this;
}
@CustomType.Setter
public Builder audience(@Nullable String audience) {
this.audience = audience;
return this;
}
@CustomType.Setter
public Builder authority(@Nullable String authority) {
this.authority = authority;
return this;
}
@CustomType.Setter
public Builder objectId(@Nullable String objectId) {
this.objectId = objectId;
return this;
}
@CustomType.Setter
public Builder tenantId(@Nullable String tenantId) {
this.tenantId = tenantId;
return this;
}
public CollectorBodyAgentSpnPropertiesResponse build() {
final var _resultValue = new CollectorBodyAgentSpnPropertiesResponse();
_resultValue.applicationId = applicationId;
_resultValue.audience = audience;
_resultValue.authority = authority;
_resultValue.objectId = objectId;
_resultValue.tenantId = tenantId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy