com.pulumi.azurenative.containerservice.FleetMemberArgs 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.containerservice;
import com.pulumi.core.Output;
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 FleetMemberArgs extends com.pulumi.resources.ResourceArgs {
public static final FleetMemberArgs Empty = new FleetMemberArgs();
/**
* The ARM resource id of the cluster that joins the Fleet. Must be a valid Azure resource id. e.g.: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{clusterName}'.
*
*/
@Import(name="clusterResourceId", required=true)
private Output clusterResourceId;
/**
* @return The ARM resource id of the cluster that joins the Fleet. Must be a valid Azure resource id. e.g.: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{clusterName}'.
*
*/
public Output clusterResourceId() {
return this.clusterResourceId;
}
/**
* The name of the Fleet member resource.
*
*/
@Import(name="fleetMemberName")
private @Nullable Output fleetMemberName;
/**
* @return The name of the Fleet member resource.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy