Class: Google::Cloud::Scheduler::V1beta1::HttpTarget
- Inherits:
-
Object
- Object
- Google::Cloud::Scheduler::V1beta1::HttpTarget
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/scheduler/v1beta1/target.rb
Overview
Http target. The job will be pushed to the job handler by means of an HTTP request via an http_method such as HTTP POST, HTTP GET, etc. The job is acknowledged by means of an HTTP response code in the range [200 - 299]. A failure to receive a response constitutes a failed execution. For a redirected request, the response returned by the redirected request is considered.
Defined Under Namespace
Classes: HeadersEntry
Instance Attribute Summary collapse
-
#body ⇒ ::String
HTTP request body.
-
#headers ⇒ ::Google::Protobuf::Map{::String => ::String}
The user can specify HTTP request headers to send with the job's HTTP request.
-
#http_method ⇒ ::Google::Cloud::Scheduler::V1beta1::HttpMethod
Which HTTP method to use for the request.
-
#oauth_token ⇒ ::Google::Cloud::Scheduler::V1beta1::OAuthToken
If specified, an OAuth token will be generated and attached as an
Authorization
header in the HTTP request. -
#oidc_token ⇒ ::Google::Cloud::Scheduler::V1beta1::OidcToken
If specified, an OIDC token will be generated and attached as an
Authorization
header in the HTTP request. -
#uri ⇒ ::String
Required.
Instance Attribute Details
#body ⇒ ::String
Returns HTTP request body. A request body is allowed only if the HTTP method is POST, PUT, or PATCH. It is an error to set body on a job with an incompatible HttpMethod.
88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'proto_docs/google/cloud/scheduler/v1beta1/target.rb', line 88 class HttpTarget include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class HeadersEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#headers ⇒ ::Google::Protobuf::Map{::String => ::String}
Returns The user can specify HTTP request headers to send with the job's HTTP request. This map contains the header field names and values. Repeated headers are not supported, but a header value can contain commas. These headers represent a subset of the headers that will accompany the job's HTTP request. Some HTTP request headers will be ignored or replaced. A partial list of headers that will be ignored or replaced is below:
- Host: This will be computed by Cloud Scheduler and derived from uri.
Content-Length
: This will be computed by Cloud Scheduler.User-Agent
: This will be set to"Google-Cloud-Scheduler"
.X-Google-*
: Google internal use only.X-AppEngine-*
: Google internal use only.X-CloudScheduler
: This header will be set to true.X-CloudScheduler-JobName
: This header will contain the job name.X-CloudScheduler-ScheduleTime
: For Cloud Scheduler jobs specified in the unix-cron format, this header will contain the job schedule as an offset of UTC parsed according to RFC3339.
The total size of headers must be less than 80KB.
88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'proto_docs/google/cloud/scheduler/v1beta1/target.rb', line 88 class HttpTarget include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class HeadersEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#http_method ⇒ ::Google::Cloud::Scheduler::V1beta1::HttpMethod
Returns Which HTTP method to use for the request.
88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'proto_docs/google/cloud/scheduler/v1beta1/target.rb', line 88 class HttpTarget include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class HeadersEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#oauth_token ⇒ ::Google::Cloud::Scheduler::V1beta1::OAuthToken
Returns If specified, an
OAuth token
will be generated and attached as an Authorization
header in the HTTP
request.
This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'proto_docs/google/cloud/scheduler/v1beta1/target.rb', line 88 class HttpTarget include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class HeadersEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#oidc_token ⇒ ::Google::Cloud::Scheduler::V1beta1::OidcToken
Returns If specified, an
OIDC
token will be generated and attached as an Authorization
header in the
HTTP request.
This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'proto_docs/google/cloud/scheduler/v1beta1/target.rb', line 88 class HttpTarget include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class HeadersEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#uri ⇒ ::String
Returns Required. The full URI path that the request will be sent to. This string
must begin with either "http://" or "https://". Some examples of
valid values for uri are:
http://acme.com
and https://acme.com/sales:8080
. Cloud Scheduler will
encode some characters for safety and compatibility. The maximum allowed
URL length is 2083 characters after encoding.
88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'proto_docs/google/cloud/scheduler/v1beta1/target.rb', line 88 class HttpTarget include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class HeadersEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |