com.pulumi.azurenative.devices.inputs.ListIotDpsResourceKeysPlainArgs 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.devices.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class ListIotDpsResourceKeysPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final ListIotDpsResourceKeysPlainArgs Empty = new ListIotDpsResourceKeysPlainArgs();
/**
* The provisioning service name to get the shared access keys for.
*
*/
@Import(name="provisioningServiceName", required=true)
private String provisioningServiceName;
/**
* @return The provisioning service name to get the shared access keys for.
*
*/
public String provisioningServiceName() {
return this.provisioningServiceName;
}
/**
* resource group name
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return resource group name
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private ListIotDpsResourceKeysPlainArgs() {}
private ListIotDpsResourceKeysPlainArgs(ListIotDpsResourceKeysPlainArgs $) {
this.provisioningServiceName = $.provisioningServiceName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListIotDpsResourceKeysPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ListIotDpsResourceKeysPlainArgs $;
public Builder() {
$ = new ListIotDpsResourceKeysPlainArgs();
}
public Builder(ListIotDpsResourceKeysPlainArgs defaults) {
$ = new ListIotDpsResourceKeysPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param provisioningServiceName The provisioning service name to get the shared access keys for.
*
* @return builder
*
*/
public Builder provisioningServiceName(String provisioningServiceName) {
$.provisioningServiceName = provisioningServiceName;
return this;
}
/**
* @param resourceGroupName resource group name
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public ListIotDpsResourceKeysPlainArgs build() {
if ($.provisioningServiceName == null) {
throw new MissingRequiredPropertyException("ListIotDpsResourceKeysPlainArgs", "provisioningServiceName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("ListIotDpsResourceKeysPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy