
com.pulumi.azurenative.security.outputs.GetAzureServersSettingResult 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.security.outputs;
import com.pulumi.azurenative.security.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetAzureServersSettingResult {
/**
* @return Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*
*/
private String id;
/**
* @return The kind of the server vulnerability assessments setting
* Expected value is 'AzureServersSetting'.
*
*/
private String kind;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @return The selected vulnerability assessments provider on Azure servers in the defined scope.
*
*/
private String selectedProvider;
/**
* @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 GetAzureServersSettingResult() {}
/**
* @return Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*
*/
public String id() {
return this.id;
}
/**
* @return The kind of the server vulnerability assessments setting
* Expected value is 'AzureServersSetting'.
*
*/
public String kind() {
return this.kind;
}
/**
* @return The name of the resource
*
*/
public String name() {
return this.name;
}
/**
* @return The selected vulnerability assessments provider on Azure servers in the defined scope.
*
*/
public String selectedProvider() {
return this.selectedProvider;
}
/**
* @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(GetAzureServersSettingResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String id;
private String kind;
private String name;
private String selectedProvider;
private SystemDataResponse systemData;
private String type;
public Builder() {}
public Builder(GetAzureServersSettingResult defaults) {
Objects.requireNonNull(defaults);
this.id = defaults.id;
this.kind = defaults.kind;
this.name = defaults.name;
this.selectedProvider = defaults.selectedProvider;
this.systemData = defaults.systemData;
this.type = defaults.type;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetAzureServersSettingResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder kind(String kind) {
if (kind == null) {
throw new MissingRequiredPropertyException("GetAzureServersSettingResult", "kind");
}
this.kind = kind;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetAzureServersSettingResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder selectedProvider(String selectedProvider) {
if (selectedProvider == null) {
throw new MissingRequiredPropertyException("GetAzureServersSettingResult", "selectedProvider");
}
this.selectedProvider = selectedProvider;
return this;
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetAzureServersSettingResult", "systemData");
}
this.systemData = systemData;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetAzureServersSettingResult", "type");
}
this.type = type;
return this;
}
public GetAzureServersSettingResult build() {
final var _resultValue = new GetAzureServersSettingResult();
_resultValue.id = id;
_resultValue.kind = kind;
_resultValue.name = name;
_resultValue.selectedProvider = selectedProvider;
_resultValue.systemData = systemData;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy