All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.akamai.inputs.GetPropertyRulesBuilderRulesV20230530BehaviorForwardRewriteCloudletPolicy Maven / Gradle / Ivy

The newest version!
// *** 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.akamai.inputs;

import com.pulumi.core.annotations.Import;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class GetPropertyRulesBuilderRulesV20230530BehaviorForwardRewriteCloudletPolicy extends com.pulumi.resources.InvokeArgs {

    public static final GetPropertyRulesBuilderRulesV20230530BehaviorForwardRewriteCloudletPolicy Empty = new GetPropertyRulesBuilderRulesV20230530BehaviorForwardRewriteCloudletPolicy();

    @Import(name="id")
    private @Nullable Integer id;

    public Optional id() {
        return Optional.ofNullable(this.id);
    }

    @Import(name="name")
    private @Nullable String name;

    public Optional name() {
        return Optional.ofNullable(this.name);
    }

    private GetPropertyRulesBuilderRulesV20230530BehaviorForwardRewriteCloudletPolicy() {}

    private GetPropertyRulesBuilderRulesV20230530BehaviorForwardRewriteCloudletPolicy(GetPropertyRulesBuilderRulesV20230530BehaviorForwardRewriteCloudletPolicy $) {
        this.id = $.id;
        this.name = $.name;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(GetPropertyRulesBuilderRulesV20230530BehaviorForwardRewriteCloudletPolicy defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private GetPropertyRulesBuilderRulesV20230530BehaviorForwardRewriteCloudletPolicy $;

        public Builder() {
            $ = new GetPropertyRulesBuilderRulesV20230530BehaviorForwardRewriteCloudletPolicy();
        }

        public Builder(GetPropertyRulesBuilderRulesV20230530BehaviorForwardRewriteCloudletPolicy defaults) {
            $ = new GetPropertyRulesBuilderRulesV20230530BehaviorForwardRewriteCloudletPolicy(Objects.requireNonNull(defaults));
        }

        public Builder id(@Nullable Integer id) {
            $.id = id;
            return this;
        }

        public Builder name(@Nullable String name) {
            $.name = name;
            return this;
        }

        public GetPropertyRulesBuilderRulesV20230530BehaviorForwardRewriteCloudletPolicy build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy