Record Class SandboxConfigUserPolicyNetworkProxy
java.lang.Object
java.lang.Record
com.github.copilot.generated.rpc.SandboxConfigUserPolicyNetworkProxy
@Generated("copilot-sdk-codegen")
public record SandboxConfigUserPolicyNetworkProxy(String url, String username, String password)
extends Record
HTTP proxy configuration for sandboxed traffic.
- Since:
- 1.0.0
-
Constructor Summary
ConstructorsConstructorDescriptionSandboxConfigUserPolicyNetworkProxy(String url, String username, String password) Creates an instance of aSandboxConfigUserPolicyNetworkProxyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.password()Returns the value of thepasswordrecord component.final StringtoString()Returns a string representation of this record class.url()Returns the value of theurlrecord component.username()Returns the value of theusernamerecord component.
-
Constructor Details
-
SandboxConfigUserPolicyNetworkProxy
Creates an instance of aSandboxConfigUserPolicyNetworkProxyrecord class.- Parameters:
url- the value for theurlrecord componentusername- the value for theusernamerecord componentpassword- the value for thepasswordrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
url
Returns the value of theurlrecord component.- Returns:
- the value of the
urlrecord component
-
username
Returns the value of theusernamerecord component.- Returns:
- the value of the
usernamerecord component
-
password
Returns the value of thepasswordrecord component.- Returns:
- the value of the
passwordrecord component
-