
com.pulumi.azurenative.marketplace.inputs.GetPrivateStoreCollectionArgs 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.marketplace.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetPrivateStoreCollectionArgs extends com.pulumi.resources.InvokeArgs {
public static final GetPrivateStoreCollectionArgs Empty = new GetPrivateStoreCollectionArgs();
/**
* The collection ID
*
*/
@Import(name="collectionId", required=true)
private Output collectionId;
/**
* @return The collection ID
*
*/
public Output collectionId() {
return this.collectionId;
}
/**
* The store ID - must use the tenant ID
*
*/
@Import(name="privateStoreId", required=true)
private Output privateStoreId;
/**
* @return The store ID - must use the tenant ID
*
*/
public Output privateStoreId() {
return this.privateStoreId;
}
private GetPrivateStoreCollectionArgs() {}
private GetPrivateStoreCollectionArgs(GetPrivateStoreCollectionArgs $) {
this.collectionId = $.collectionId;
this.privateStoreId = $.privateStoreId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPrivateStoreCollectionArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetPrivateStoreCollectionArgs $;
public Builder() {
$ = new GetPrivateStoreCollectionArgs();
}
public Builder(GetPrivateStoreCollectionArgs defaults) {
$ = new GetPrivateStoreCollectionArgs(Objects.requireNonNull(defaults));
}
/**
* @param collectionId The collection ID
*
* @return builder
*
*/
public Builder collectionId(Output collectionId) {
$.collectionId = collectionId;
return this;
}
/**
* @param collectionId The collection ID
*
* @return builder
*
*/
public Builder collectionId(String collectionId) {
return collectionId(Output.of(collectionId));
}
/**
* @param privateStoreId The store ID - must use the tenant ID
*
* @return builder
*
*/
public Builder privateStoreId(Output privateStoreId) {
$.privateStoreId = privateStoreId;
return this;
}
/**
* @param privateStoreId The store ID - must use the tenant ID
*
* @return builder
*
*/
public Builder privateStoreId(String privateStoreId) {
return privateStoreId(Output.of(privateStoreId));
}
public GetPrivateStoreCollectionArgs build() {
if ($.collectionId == null) {
throw new MissingRequiredPropertyException("GetPrivateStoreCollectionArgs", "collectionId");
}
if ($.privateStoreId == null) {
throw new MissingRequiredPropertyException("GetPrivateStoreCollectionArgs", "privateStoreId");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy