
com.pulumi.azurenative.network.inputs.GetFlowLogPlainArgs 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.network.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetFlowLogPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetFlowLogPlainArgs Empty = new GetFlowLogPlainArgs();
/**
* The name of the flow log resource.
*
*/
@Import(name="flowLogName", required=true)
private String flowLogName;
/**
* @return The name of the flow log resource.
*
*/
public String flowLogName() {
return this.flowLogName;
}
/**
* The name of the network watcher.
*
*/
@Import(name="networkWatcherName", required=true)
private String networkWatcherName;
/**
* @return The name of the network watcher.
*
*/
public String networkWatcherName() {
return this.networkWatcherName;
}
/**
* The name of the resource group.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetFlowLogPlainArgs() {}
private GetFlowLogPlainArgs(GetFlowLogPlainArgs $) {
this.flowLogName = $.flowLogName;
this.networkWatcherName = $.networkWatcherName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetFlowLogPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetFlowLogPlainArgs $;
public Builder() {
$ = new GetFlowLogPlainArgs();
}
public Builder(GetFlowLogPlainArgs defaults) {
$ = new GetFlowLogPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param flowLogName The name of the flow log resource.
*
* @return builder
*
*/
public Builder flowLogName(String flowLogName) {
$.flowLogName = flowLogName;
return this;
}
/**
* @param networkWatcherName The name of the network watcher.
*
* @return builder
*
*/
public Builder networkWatcherName(String networkWatcherName) {
$.networkWatcherName = networkWatcherName;
return this;
}
/**
* @param resourceGroupName The name of the resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetFlowLogPlainArgs build() {
if ($.flowLogName == null) {
throw new MissingRequiredPropertyException("GetFlowLogPlainArgs", "flowLogName");
}
if ($.networkWatcherName == null) {
throw new MissingRequiredPropertyException("GetFlowLogPlainArgs", "networkWatcherName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetFlowLogPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy