com.pulumi.azurenative.insights.inputs.GetAnalyticsItemPlainArgs 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.insights.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetAnalyticsItemPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetAnalyticsItemPlainArgs Empty = new GetAnalyticsItemPlainArgs();
/**
* The Id of a specific item defined in the Application Insights component
*
*/
@Import(name="id")
private @Nullable String id;
/**
* @return The Id of a specific item defined in the Application Insights component
*
*/
public Optional id() {
return Optional.ofNullable(this.id);
}
/**
* The name of a specific item defined in the Application Insights component
*
*/
@Import(name="name")
private @Nullable String name;
/**
* @return The name of a specific item defined in the Application Insights component
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* The name of the Application Insights component resource.
*
*/
@Import(name="resourceName", required=true)
private String resourceName;
/**
* @return The name of the Application Insights component resource.
*
*/
public String resourceName() {
return this.resourceName;
}
/**
* Enum indicating if this item definition is owned by a specific user or is shared between all users with access to the Application Insights component.
*
*/
@Import(name="scopePath", required=true)
private String scopePath;
/**
* @return Enum indicating if this item definition is owned by a specific user or is shared between all users with access to the Application Insights component.
*
*/
public String scopePath() {
return this.scopePath;
}
private GetAnalyticsItemPlainArgs() {}
private GetAnalyticsItemPlainArgs(GetAnalyticsItemPlainArgs $) {
this.id = $.id;
this.name = $.name;
this.resourceGroupName = $.resourceGroupName;
this.resourceName = $.resourceName;
this.scopePath = $.scopePath;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetAnalyticsItemPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetAnalyticsItemPlainArgs $;
public Builder() {
$ = new GetAnalyticsItemPlainArgs();
}
public Builder(GetAnalyticsItemPlainArgs defaults) {
$ = new GetAnalyticsItemPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param id The Id of a specific item defined in the Application Insights component
*
* @return builder
*
*/
public Builder id(@Nullable String id) {
$.id = id;
return this;
}
/**
* @param name The name of a specific item defined in the Application Insights component
*
* @return builder
*
*/
public Builder name(@Nullable String name) {
$.name = name;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceName The name of the Application Insights component resource.
*
* @return builder
*
*/
public Builder resourceName(String resourceName) {
$.resourceName = resourceName;
return this;
}
/**
* @param scopePath Enum indicating if this item definition is owned by a specific user or is shared between all users with access to the Application Insights component.
*
* @return builder
*
*/
public Builder scopePath(String scopePath) {
$.scopePath = scopePath;
return this;
}
public GetAnalyticsItemPlainArgs build() {
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetAnalyticsItemPlainArgs", "resourceGroupName");
}
if ($.resourceName == null) {
throw new MissingRequiredPropertyException("GetAnalyticsItemPlainArgs", "resourceName");
}
if ($.scopePath == null) {
throw new MissingRequiredPropertyException("GetAnalyticsItemPlainArgs", "scopePath");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy