
com.pulumi.azurenative.containerservice.outputs.GetFleetUpdateStrategyResult Maven / Gradle / Ivy
// *** 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.outputs;
import com.pulumi.azurenative.containerservice.outputs.SystemDataResponse;
import com.pulumi.azurenative.containerservice.outputs.UpdateRunStrategyResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetFleetUpdateStrategyResult {
/**
* @return If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
*
*/
private String eTag;
/**
* @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
private String id;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @return The provisioning state of the UpdateStrategy resource.
*
*/
private String provisioningState;
/**
* @return Defines the update sequence of the clusters.
*
*/
private UpdateRunStrategyResponse strategy;
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
private SystemDataResponse systemData;
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
private String type;
private GetFleetUpdateStrategyResult() {}
/**
* @return If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
*
*/
public String eTag() {
return this.eTag;
}
/**
* @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
public String id() {
return this.id;
}
/**
* @return The name of the resource
*
*/
public String name() {
return this.name;
}
/**
* @return The provisioning state of the UpdateStrategy resource.
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return Defines the update sequence of the clusters.
*
*/
public UpdateRunStrategyResponse strategy() {
return this.strategy;
}
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
public SystemDataResponse systemData() {
return this.systemData;
}
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetFleetUpdateStrategyResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String eTag;
private String id;
private String name;
private String provisioningState;
private UpdateRunStrategyResponse strategy;
private SystemDataResponse systemData;
private String type;
public Builder() {}
public Builder(GetFleetUpdateStrategyResult defaults) {
Objects.requireNonNull(defaults);
this.eTag = defaults.eTag;
this.id = defaults.id;
this.name = defaults.name;
this.provisioningState = defaults.provisioningState;
this.strategy = defaults.strategy;
this.systemData = defaults.systemData;
this.type = defaults.type;
}
@CustomType.Setter
public Builder eTag(String eTag) {
if (eTag == null) {
throw new MissingRequiredPropertyException("GetFleetUpdateStrategyResult", "eTag");
}
this.eTag = eTag;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetFleetUpdateStrategyResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetFleetUpdateStrategyResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("GetFleetUpdateStrategyResult", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder strategy(UpdateRunStrategyResponse strategy) {
if (strategy == null) {
throw new MissingRequiredPropertyException("GetFleetUpdateStrategyResult", "strategy");
}
this.strategy = strategy;
return this;
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetFleetUpdateStrategyResult", "systemData");
}
this.systemData = systemData;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetFleetUpdateStrategyResult", "type");
}
this.type = type;
return this;
}
public GetFleetUpdateStrategyResult build() {
final var _resultValue = new GetFleetUpdateStrategyResult();
_resultValue.eTag = eTag;
_resultValue.id = id;
_resultValue.name = name;
_resultValue.provisioningState = provisioningState;
_resultValue.strategy = strategy;
_resultValue.systemData = systemData;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy