All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.programmableconnectivity.outputs.SaasPropertiesResponse Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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