
com.pulumi.azurenative.cloudngfw.outputs.AppSeenDataResponse 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.cloudngfw.outputs;
import com.pulumi.azurenative.cloudngfw.outputs.AppSeenInfoResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.util.List;
import java.util.Objects;
@CustomType
public final class AppSeenDataResponse {
/**
* @return array of appSeen
*
*/
private List appSeenList;
/**
* @return number of rows
*
*/
private Integer count;
private AppSeenDataResponse() {}
/**
* @return array of appSeen
*
*/
public List appSeenList() {
return this.appSeenList;
}
/**
* @return number of rows
*
*/
public Integer count() {
return this.count;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AppSeenDataResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List appSeenList;
private Integer count;
public Builder() {}
public Builder(AppSeenDataResponse defaults) {
Objects.requireNonNull(defaults);
this.appSeenList = defaults.appSeenList;
this.count = defaults.count;
}
@CustomType.Setter
public Builder appSeenList(List appSeenList) {
if (appSeenList == null) {
throw new MissingRequiredPropertyException("AppSeenDataResponse", "appSeenList");
}
this.appSeenList = appSeenList;
return this;
}
public Builder appSeenList(AppSeenInfoResponse... appSeenList) {
return appSeenList(List.of(appSeenList));
}
@CustomType.Setter
public Builder count(Integer count) {
if (count == null) {
throw new MissingRequiredPropertyException("AppSeenDataResponse", "count");
}
this.count = count;
return this;
}
public AppSeenDataResponse build() {
final var _resultValue = new AppSeenDataResponse();
_resultValue.appSeenList = appSeenList;
_resultValue.count = count;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy