
com.pulumi.azurenative.programmableconnectivity.outputs.SaasPropertiesResponse 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.programmableconnectivity.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 SaasPropertiesResponse {
/**
* @return Resource ID of the SaaS offer purchased from the marketplace.
*
*/
private @Nullable String saasResourceId;
/**
* @return Subscription ID of the SaaS offer purchased from the marketplace.
*
*/
private @Nullable String saasSubscriptionId;
private SaasPropertiesResponse() {}
/**
* @return Resource ID of the SaaS offer purchased from the marketplace.
*
*/
public Optional saasResourceId() {
return Optional.ofNullable(this.saasResourceId);
}
/**
* @return Subscription ID of the SaaS offer purchased from the marketplace.
*
*/
public Optional saasSubscriptionId() {
return Optional.ofNullable(this.saasSubscriptionId);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SaasPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String saasResourceId;
private @Nullable String saasSubscriptionId;
public Builder() {}
public Builder(SaasPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.saasResourceId = defaults.saasResourceId;
this.saasSubscriptionId = defaults.saasSubscriptionId;
}
@CustomType.Setter
public Builder saasResourceId(@Nullable String saasResourceId) {
this.saasResourceId = saasResourceId;
return this;
}
@CustomType.Setter
public Builder saasSubscriptionId(@Nullable String saasSubscriptionId) {
this.saasSubscriptionId = saasSubscriptionId;
return this;
}
public SaasPropertiesResponse build() {
final var _resultValue = new SaasPropertiesResponse();
_resultValue.saasResourceId = saasResourceId;
_resultValue.saasSubscriptionId = saasSubscriptionId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy