
com.pulumi.azurenative.securityinsights.outputs.RfcConnectorResponse 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.securityinsights.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class RfcConnectorResponse {
/**
* @return FQDN, hostname, or IP address of the ABAP server.
*
*/
private @Nullable String abapServerHost;
/**
* @return The authentication type to SAP.
*
*/
private @Nullable String authenticationType;
/**
* @return Client number of the ABAP server.
* Example - 001
*
*/
private String client;
/**
* @return The SAP code page used for character encoding.
* Example - 1100
*
*/
private @Nullable String codePage;
/**
* @return Logon group of the message server.
*
*/
private @Nullable String group;
/**
* @return FQDN, hostname, or IP address of the Message server.
*
*/
private @Nullable String messageServerHost;
/**
* @return Port number, or service name (from /etc/services) of the message server.
*
*/
private @Nullable String messageServerService;
/**
* @return SNC QOP.
* Options are 1, 2, 3, 8, 9.
*
*/
private @Nullable String sncQop;
/**
* @return System ID of the ABAP server.
* Example - A4H
*
*/
private String systemId;
/**
* @return System number of the ABAP server.
*
*/
private String systemNumber;
/**
* @return Represents the types of SAP systems.
* Expected value is 'Rfc'.
*
*/
private String type;
private RfcConnectorResponse() {}
/**
* @return FQDN, hostname, or IP address of the ABAP server.
*
*/
public Optional abapServerHost() {
return Optional.ofNullable(this.abapServerHost);
}
/**
* @return The authentication type to SAP.
*
*/
public Optional authenticationType() {
return Optional.ofNullable(this.authenticationType);
}
/**
* @return Client number of the ABAP server.
* Example - 001
*
*/
public String client() {
return this.client;
}
/**
* @return The SAP code page used for character encoding.
* Example - 1100
*
*/
public Optional codePage() {
return Optional.ofNullable(this.codePage);
}
/**
* @return Logon group of the message server.
*
*/
public Optional group() {
return Optional.ofNullable(this.group);
}
/**
* @return FQDN, hostname, or IP address of the Message server.
*
*/
public Optional messageServerHost() {
return Optional.ofNullable(this.messageServerHost);
}
/**
* @return Port number, or service name (from /etc/services) of the message server.
*
*/
public Optional messageServerService() {
return Optional.ofNullable(this.messageServerService);
}
/**
* @return SNC QOP.
* Options are 1, 2, 3, 8, 9.
*
*/
public Optional sncQop() {
return Optional.ofNullable(this.sncQop);
}
/**
* @return System ID of the ABAP server.
* Example - A4H
*
*/
public String systemId() {
return this.systemId;
}
/**
* @return System number of the ABAP server.
*
*/
public String systemNumber() {
return this.systemNumber;
}
/**
* @return Represents the types of SAP systems.
* Expected value is 'Rfc'.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(RfcConnectorResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String abapServerHost;
private @Nullable String authenticationType;
private String client;
private @Nullable String codePage;
private @Nullable String group;
private @Nullable String messageServerHost;
private @Nullable String messageServerService;
private @Nullable String sncQop;
private String systemId;
private String systemNumber;
private String type;
public Builder() {}
public Builder(RfcConnectorResponse defaults) {
Objects.requireNonNull(defaults);
this.abapServerHost = defaults.abapServerHost;
this.authenticationType = defaults.authenticationType;
this.client = defaults.client;
this.codePage = defaults.codePage;
this.group = defaults.group;
this.messageServerHost = defaults.messageServerHost;
this.messageServerService = defaults.messageServerService;
this.sncQop = defaults.sncQop;
this.systemId = defaults.systemId;
this.systemNumber = defaults.systemNumber;
this.type = defaults.type;
}
@CustomType.Setter
public Builder abapServerHost(@Nullable String abapServerHost) {
this.abapServerHost = abapServerHost;
return this;
}
@CustomType.Setter
public Builder authenticationType(@Nullable String authenticationType) {
this.authenticationType = authenticationType;
return this;
}
@CustomType.Setter
public Builder client(String client) {
if (client == null) {
throw new MissingRequiredPropertyException("RfcConnectorResponse", "client");
}
this.client = client;
return this;
}
@CustomType.Setter
public Builder codePage(@Nullable String codePage) {
this.codePage = codePage;
return this;
}
@CustomType.Setter
public Builder group(@Nullable String group) {
this.group = group;
return this;
}
@CustomType.Setter
public Builder messageServerHost(@Nullable String messageServerHost) {
this.messageServerHost = messageServerHost;
return this;
}
@CustomType.Setter
public Builder messageServerService(@Nullable String messageServerService) {
this.messageServerService = messageServerService;
return this;
}
@CustomType.Setter
public Builder sncQop(@Nullable String sncQop) {
this.sncQop = sncQop;
return this;
}
@CustomType.Setter
public Builder systemId(String systemId) {
if (systemId == null) {
throw new MissingRequiredPropertyException("RfcConnectorResponse", "systemId");
}
this.systemId = systemId;
return this;
}
@CustomType.Setter
public Builder systemNumber(String systemNumber) {
if (systemNumber == null) {
throw new MissingRequiredPropertyException("RfcConnectorResponse", "systemNumber");
}
this.systemNumber = systemNumber;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("RfcConnectorResponse", "type");
}
this.type = type;
return this;
}
public RfcConnectorResponse build() {
final var _resultValue = new RfcConnectorResponse();
_resultValue.abapServerHost = abapServerHost;
_resultValue.authenticationType = authenticationType;
_resultValue.client = client;
_resultValue.codePage = codePage;
_resultValue.group = group;
_resultValue.messageServerHost = messageServerHost;
_resultValue.messageServerService = messageServerService;
_resultValue.sncQop = sncQop;
_resultValue.systemId = systemId;
_resultValue.systemNumber = systemNumber;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy