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

com.pulumi.azurenative.marketplace.inputs.GetPrivateStoreCollectionPlainArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.marketplace.inputs;

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


public final class GetPrivateStoreCollectionPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetPrivateStoreCollectionPlainArgs Empty = new GetPrivateStoreCollectionPlainArgs();

    /**
     * The collection ID
     * 
     */
    @Import(name="collectionId", required=true)
    private String collectionId;

    /**
     * @return The collection ID
     * 
     */
    public String collectionId() {
        return this.collectionId;
    }

    /**
     * The store ID - must use the tenant ID
     * 
     */
    @Import(name="privateStoreId", required=true)
    private String privateStoreId;

    /**
     * @return The store ID - must use the tenant ID
     * 
     */
    public String privateStoreId() {
        return this.privateStoreId;
    }

    private GetPrivateStoreCollectionPlainArgs() {}

    private GetPrivateStoreCollectionPlainArgs(GetPrivateStoreCollectionPlainArgs $) {
        this.collectionId = $.collectionId;
        this.privateStoreId = $.privateStoreId;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(GetPrivateStoreCollectionPlainArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private GetPrivateStoreCollectionPlainArgs $;

        public Builder() {
            $ = new GetPrivateStoreCollectionPlainArgs();
        }

        public Builder(GetPrivateStoreCollectionPlainArgs defaults) {
            $ = new GetPrivateStoreCollectionPlainArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param collectionId The collection ID
         * 
         * @return builder
         * 
         */
        public Builder collectionId(String collectionId) {
            $.collectionId = collectionId;
            return this;
        }

        /**
         * @param privateStoreId The store ID - must use the tenant ID
         * 
         * @return builder
         * 
         */
        public Builder privateStoreId(String privateStoreId) {
            $.privateStoreId = privateStoreId;
            return this;
        }

        public GetPrivateStoreCollectionPlainArgs build() {
            if ($.collectionId == null) {
                throw new MissingRequiredPropertyException("GetPrivateStoreCollectionPlainArgs", "collectionId");
            }
            if ($.privateStoreId == null) {
                throw new MissingRequiredPropertyException("GetPrivateStoreCollectionPlainArgs", "privateStoreId");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy