
com.pulumi.azurenative.appcomplianceautomation.inputs.ListProviderActionInUseStorageAccountsPlainArgs 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.appcomplianceautomation.inputs;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class ListProviderActionInUseStorageAccountsPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final ListProviderActionInUseStorageAccountsPlainArgs Empty = new ListProviderActionInUseStorageAccountsPlainArgs();
/**
* List of subscription ids to be query. If the list is null or empty, the API will query all the subscriptions of the user.
*
*/
@Import(name="subscriptionIds")
private @Nullable List subscriptionIds;
/**
* @return List of subscription ids to be query. If the list is null or empty, the API will query all the subscriptions of the user.
*
*/
public Optional> subscriptionIds() {
return Optional.ofNullable(this.subscriptionIds);
}
private ListProviderActionInUseStorageAccountsPlainArgs() {}
private ListProviderActionInUseStorageAccountsPlainArgs(ListProviderActionInUseStorageAccountsPlainArgs $) {
this.subscriptionIds = $.subscriptionIds;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListProviderActionInUseStorageAccountsPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ListProviderActionInUseStorageAccountsPlainArgs $;
public Builder() {
$ = new ListProviderActionInUseStorageAccountsPlainArgs();
}
public Builder(ListProviderActionInUseStorageAccountsPlainArgs defaults) {
$ = new ListProviderActionInUseStorageAccountsPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param subscriptionIds List of subscription ids to be query. If the list is null or empty, the API will query all the subscriptions of the user.
*
* @return builder
*
*/
public Builder subscriptionIds(@Nullable List subscriptionIds) {
$.subscriptionIds = subscriptionIds;
return this;
}
/**
* @param subscriptionIds List of subscription ids to be query. If the list is null or empty, the API will query all the subscriptions of the user.
*
* @return builder
*
*/
public Builder subscriptionIds(String... subscriptionIds) {
return subscriptionIds(List.of(subscriptionIds));
}
public ListProviderActionInUseStorageAccountsPlainArgs build() {
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy