All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.meraki.networks.inputs.GetPoliciesByClientArgs Maven / Gradle / Ivy
Go to download
A Pulumi package for creating and managing Cisco Meraki 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.meraki.networks.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Double;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetPoliciesByClientArgs extends com.pulumi.resources.InvokeArgs {
public static final GetPoliciesByClientArgs Empty = new GetPoliciesByClientArgs();
/**
* endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
*
*/
@Import(name="endingBefore")
private @Nullable Output endingBefore;
/**
* @return endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
*
*/
public Optional> endingBefore() {
return Optional.ofNullable(this.endingBefore);
}
/**
* networkId path parameter. Network ID
*
*/
@Import(name="networkId", required=true)
private Output networkId;
/**
* @return networkId path parameter. Network ID
*
*/
public Output networkId() {
return this.networkId;
}
/**
* perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
*
*/
@Import(name="perPage")
private @Nullable Output perPage;
/**
* @return perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
*
*/
public Optional> perPage() {
return Optional.ofNullable(this.perPage);
}
/**
* startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
*
*/
@Import(name="startingAfter")
private @Nullable Output startingAfter;
/**
* @return startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
*
*/
public Optional> startingAfter() {
return Optional.ofNullable(this.startingAfter);
}
/**
* t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
*
*/
@Import(name="t0")
private @Nullable Output t0;
/**
* @return t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
*
*/
public Optional> t0() {
return Optional.ofNullable(this.t0);
}
/**
* timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
*
*/
@Import(name="timespan")
private @Nullable Output timespan;
/**
* @return timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
*
*/
public Optional> timespan() {
return Optional.ofNullable(this.timespan);
}
private GetPoliciesByClientArgs() {}
private GetPoliciesByClientArgs(GetPoliciesByClientArgs $) {
this.endingBefore = $.endingBefore;
this.networkId = $.networkId;
this.perPage = $.perPage;
this.startingAfter = $.startingAfter;
this.t0 = $.t0;
this.timespan = $.timespan;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPoliciesByClientArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetPoliciesByClientArgs $;
public Builder() {
$ = new GetPoliciesByClientArgs();
}
public Builder(GetPoliciesByClientArgs defaults) {
$ = new GetPoliciesByClientArgs(Objects.requireNonNull(defaults));
}
/**
* @param endingBefore endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
*
* @return builder
*
*/
public Builder endingBefore(@Nullable Output endingBefore) {
$.endingBefore = endingBefore;
return this;
}
/**
* @param endingBefore endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
*
* @return builder
*
*/
public Builder endingBefore(String endingBefore) {
return endingBefore(Output.of(endingBefore));
}
/**
* @param networkId networkId path parameter. Network ID
*
* @return builder
*
*/
public Builder networkId(Output networkId) {
$.networkId = networkId;
return this;
}
/**
* @param networkId networkId path parameter. Network ID
*
* @return builder
*
*/
public Builder networkId(String networkId) {
return networkId(Output.of(networkId));
}
/**
* @param perPage perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
*
* @return builder
*
*/
public Builder perPage(@Nullable Output perPage) {
$.perPage = perPage;
return this;
}
/**
* @param perPage perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
*
* @return builder
*
*/
public Builder perPage(Integer perPage) {
return perPage(Output.of(perPage));
}
/**
* @param startingAfter startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
*
* @return builder
*
*/
public Builder startingAfter(@Nullable Output startingAfter) {
$.startingAfter = startingAfter;
return this;
}
/**
* @param startingAfter startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
*
* @return builder
*
*/
public Builder startingAfter(String startingAfter) {
return startingAfter(Output.of(startingAfter));
}
/**
* @param t0 t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
*
* @return builder
*
*/
public Builder t0(@Nullable Output t0) {
$.t0 = t0;
return this;
}
/**
* @param t0 t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
*
* @return builder
*
*/
public Builder t0(String t0) {
return t0(Output.of(t0));
}
/**
* @param timespan timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
*
* @return builder
*
*/
public Builder timespan(@Nullable Output timespan) {
$.timespan = timespan;
return this;
}
/**
* @param timespan timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
*
* @return builder
*
*/
public Builder timespan(Double timespan) {
return timespan(Output.of(timespan));
}
public GetPoliciesByClientArgs build() {
if ($.networkId == null) {
throw new MissingRequiredPropertyException("GetPoliciesByClientArgs", "networkId");
}
return $;
}
}
}