
com.pulumi.azurenative.quantum.outputs.ProviderResponse 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.quantum.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 ProviderResponse {
/**
* @return The provider's marketplace application display name.
*
*/
private @Nullable String applicationName;
/**
* @return A Uri identifying the specific instance of this provider.
*
*/
private @Nullable String instanceUri;
/**
* @return Unique id of this provider.
*
*/
private @Nullable String providerId;
/**
* @return The sku associated with pricing information for this provider.
*
*/
private @Nullable String providerSku;
/**
* @return Provisioning status field
*
*/
private @Nullable String provisioningState;
/**
* @return Id to track resource usage for the provider.
*
*/
private @Nullable String resourceUsageId;
private ProviderResponse() {}
/**
* @return The provider's marketplace application display name.
*
*/
public Optional applicationName() {
return Optional.ofNullable(this.applicationName);
}
/**
* @return A Uri identifying the specific instance of this provider.
*
*/
public Optional instanceUri() {
return Optional.ofNullable(this.instanceUri);
}
/**
* @return Unique id of this provider.
*
*/
public Optional providerId() {
return Optional.ofNullable(this.providerId);
}
/**
* @return The sku associated with pricing information for this provider.
*
*/
public Optional providerSku() {
return Optional.ofNullable(this.providerSku);
}
/**
* @return Provisioning status field
*
*/
public Optional provisioningState() {
return Optional.ofNullable(this.provisioningState);
}
/**
* @return Id to track resource usage for the provider.
*
*/
public Optional resourceUsageId() {
return Optional.ofNullable(this.resourceUsageId);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ProviderResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String applicationName;
private @Nullable String instanceUri;
private @Nullable String providerId;
private @Nullable String providerSku;
private @Nullable String provisioningState;
private @Nullable String resourceUsageId;
public Builder() {}
public Builder(ProviderResponse defaults) {
Objects.requireNonNull(defaults);
this.applicationName = defaults.applicationName;
this.instanceUri = defaults.instanceUri;
this.providerId = defaults.providerId;
this.providerSku = defaults.providerSku;
this.provisioningState = defaults.provisioningState;
this.resourceUsageId = defaults.resourceUsageId;
}
@CustomType.Setter
public Builder applicationName(@Nullable String applicationName) {
this.applicationName = applicationName;
return this;
}
@CustomType.Setter
public Builder instanceUri(@Nullable String instanceUri) {
this.instanceUri = instanceUri;
return this;
}
@CustomType.Setter
public Builder providerId(@Nullable String providerId) {
this.providerId = providerId;
return this;
}
@CustomType.Setter
public Builder providerSku(@Nullable String providerSku) {
this.providerSku = providerSku;
return this;
}
@CustomType.Setter
public Builder provisioningState(@Nullable String provisioningState) {
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder resourceUsageId(@Nullable String resourceUsageId) {
this.resourceUsageId = resourceUsageId;
return this;
}
public ProviderResponse build() {
final var _resultValue = new ProviderResponse();
_resultValue.applicationName = applicationName;
_resultValue.instanceUri = instanceUri;
_resultValue.providerId = providerId;
_resultValue.providerSku = providerSku;
_resultValue.provisioningState = provisioningState;
_resultValue.resourceUsageId = resourceUsageId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy