Package com.google.cloud.compute.v1
Interface HttpRedirectActionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
HttpRedirectAction
,HttpRedirectAction.Builder
public interface HttpRedirectActionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getHostRedirect()
The host that is used in the redirect response instead of the one that was supplied in the request.com.google.protobuf.ByteString
getHostRedirectBytes()
The host that is used in the redirect response instead of the one that was supplied in the request.boolean
getHttpsRedirect()
If set to true, the URL scheme in the redirected request is set to HTTPS.String
getPathRedirect()
The path that is used in the redirect response instead of the one that was supplied in the request.com.google.protobuf.ByteString
getPathRedirectBytes()
The path that is used in the redirect response instead of the one that was supplied in the request.String
getPrefixRedirect()
The prefix that replaces the prefixMatch specified in the HttpRouteRuleMatch, retaining the remaining portion of the URL before redirecting the request.com.google.protobuf.ByteString
getPrefixRedirectBytes()
The prefix that replaces the prefixMatch specified in the HttpRouteRuleMatch, retaining the remaining portion of the URL before redirecting the request.String
getRedirectResponseCode()
The HTTP Status code to use for this RedirectAction.com.google.protobuf.ByteString
getRedirectResponseCodeBytes()
The HTTP Status code to use for this RedirectAction.boolean
getStripQuery()
If set to true, any accompanying query portion of the original URL is removed before redirecting the request.boolean
hasHostRedirect()
The host that is used in the redirect response instead of the one that was supplied in the request.boolean
hasHttpsRedirect()
If set to true, the URL scheme in the redirected request is set to HTTPS.boolean
hasPathRedirect()
The path that is used in the redirect response instead of the one that was supplied in the request.boolean
hasPrefixRedirect()
The prefix that replaces the prefixMatch specified in the HttpRouteRuleMatch, retaining the remaining portion of the URL before redirecting the request.boolean
hasRedirectResponseCode()
The HTTP Status code to use for this RedirectAction.boolean
hasStripQuery()
If set to true, any accompanying query portion of the original URL is removed before redirecting the request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasHostRedirect
boolean hasHostRedirect()
The host that is used in the redirect response instead of the one that was supplied in the request. The value must be from 1 to 255 characters.
optional string host_redirect = 107417747;
- Returns:
- Whether the hostRedirect field is set.
-
getHostRedirect
String getHostRedirect()
The host that is used in the redirect response instead of the one that was supplied in the request. The value must be from 1 to 255 characters.
optional string host_redirect = 107417747;
- Returns:
- The hostRedirect.
-
getHostRedirectBytes
com.google.protobuf.ByteString getHostRedirectBytes()
The host that is used in the redirect response instead of the one that was supplied in the request. The value must be from 1 to 255 characters.
optional string host_redirect = 107417747;
- Returns:
- The bytes for hostRedirect.
-
hasHttpsRedirect
boolean hasHttpsRedirect()
If set to true, the URL scheme in the redirected request is set to HTTPS. If set to false, the URL scheme of the redirected request remains the same as that of the request. This must only be set for URL maps used in TargetHttpProxys. Setting this true for TargetHttpsProxy is not permitted. The default is set to false.
optional bool https_redirect = 170260656;
- Returns:
- Whether the httpsRedirect field is set.
-
getHttpsRedirect
boolean getHttpsRedirect()
If set to true, the URL scheme in the redirected request is set to HTTPS. If set to false, the URL scheme of the redirected request remains the same as that of the request. This must only be set for URL maps used in TargetHttpProxys. Setting this true for TargetHttpsProxy is not permitted. The default is set to false.
optional bool https_redirect = 170260656;
- Returns:
- The httpsRedirect.
-
hasPathRedirect
boolean hasPathRedirect()
The path that is used in the redirect response instead of the one that was supplied in the request. pathRedirect cannot be supplied together with prefixRedirect. Supply one alone or neither. If neither is supplied, the path of the original request is used for the redirect. The value must be from 1 to 1024 characters.
optional string path_redirect = 272342710;
- Returns:
- Whether the pathRedirect field is set.
-
getPathRedirect
String getPathRedirect()
The path that is used in the redirect response instead of the one that was supplied in the request. pathRedirect cannot be supplied together with prefixRedirect. Supply one alone or neither. If neither is supplied, the path of the original request is used for the redirect. The value must be from 1 to 1024 characters.
optional string path_redirect = 272342710;
- Returns:
- The pathRedirect.
-
getPathRedirectBytes
com.google.protobuf.ByteString getPathRedirectBytes()
The path that is used in the redirect response instead of the one that was supplied in the request. pathRedirect cannot be supplied together with prefixRedirect. Supply one alone or neither. If neither is supplied, the path of the original request is used for the redirect. The value must be from 1 to 1024 characters.
optional string path_redirect = 272342710;
- Returns:
- The bytes for pathRedirect.
-
hasPrefixRedirect
boolean hasPrefixRedirect()
The prefix that replaces the prefixMatch specified in the HttpRouteRuleMatch, retaining the remaining portion of the URL before redirecting the request. prefixRedirect cannot be supplied together with pathRedirect. Supply one alone or neither. If neither is supplied, the path of the original request is used for the redirect. The value must be from 1 to 1024 characters.
optional string prefix_redirect = 446184169;
- Returns:
- Whether the prefixRedirect field is set.
-
getPrefixRedirect
String getPrefixRedirect()
The prefix that replaces the prefixMatch specified in the HttpRouteRuleMatch, retaining the remaining portion of the URL before redirecting the request. prefixRedirect cannot be supplied together with pathRedirect. Supply one alone or neither. If neither is supplied, the path of the original request is used for the redirect. The value must be from 1 to 1024 characters.
optional string prefix_redirect = 446184169;
- Returns:
- The prefixRedirect.
-
getPrefixRedirectBytes
com.google.protobuf.ByteString getPrefixRedirectBytes()
The prefix that replaces the prefixMatch specified in the HttpRouteRuleMatch, retaining the remaining portion of the URL before redirecting the request. prefixRedirect cannot be supplied together with pathRedirect. Supply one alone or neither. If neither is supplied, the path of the original request is used for the redirect. The value must be from 1 to 1024 characters.
optional string prefix_redirect = 446184169;
- Returns:
- The bytes for prefixRedirect.
-
hasRedirectResponseCode
boolean hasRedirectResponseCode()
The HTTP Status code to use for this RedirectAction. Supported values are: - MOVED_PERMANENTLY_DEFAULT, which is the default value and corresponds to 301. - FOUND, which corresponds to 302. - SEE_OTHER which corresponds to 303. - TEMPORARY_REDIRECT, which corresponds to 307. In this case, the request method is retained. - PERMANENT_REDIRECT, which corresponds to 308. In this case, the request method is retained. Check the RedirectResponseCode enum for the list of possible values.
optional string redirect_response_code = 436710408;
- Returns:
- Whether the redirectResponseCode field is set.
-
getRedirectResponseCode
String getRedirectResponseCode()
The HTTP Status code to use for this RedirectAction. Supported values are: - MOVED_PERMANENTLY_DEFAULT, which is the default value and corresponds to 301. - FOUND, which corresponds to 302. - SEE_OTHER which corresponds to 303. - TEMPORARY_REDIRECT, which corresponds to 307. In this case, the request method is retained. - PERMANENT_REDIRECT, which corresponds to 308. In this case, the request method is retained. Check the RedirectResponseCode enum for the list of possible values.
optional string redirect_response_code = 436710408;
- Returns:
- The redirectResponseCode.
-
getRedirectResponseCodeBytes
com.google.protobuf.ByteString getRedirectResponseCodeBytes()
The HTTP Status code to use for this RedirectAction. Supported values are: - MOVED_PERMANENTLY_DEFAULT, which is the default value and corresponds to 301. - FOUND, which corresponds to 302. - SEE_OTHER which corresponds to 303. - TEMPORARY_REDIRECT, which corresponds to 307. In this case, the request method is retained. - PERMANENT_REDIRECT, which corresponds to 308. In this case, the request method is retained. Check the RedirectResponseCode enum for the list of possible values.
optional string redirect_response_code = 436710408;
- Returns:
- The bytes for redirectResponseCode.
-
hasStripQuery
boolean hasStripQuery()
If set to true, any accompanying query portion of the original URL is removed before redirecting the request. If set to false, the query portion of the original URL is retained. The default is set to false.
optional bool strip_query = 52284641;
- Returns:
- Whether the stripQuery field is set.
-
getStripQuery
boolean getStripQuery()
If set to true, any accompanying query portion of the original URL is removed before redirecting the request. If set to false, the query portion of the original URL is retained. The default is set to false.
optional bool strip_query = 52284641;
- Returns:
- The stripQuery.
-
-