Class: Google::Apis::CloudtasksV2beta3::PathOverride
- Inherits:
-
Object
- Object
- Google::Apis::CloudtasksV2beta3::PathOverride
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudtasks_v2beta3/classes.rb,
lib/google/apis/cloudtasks_v2beta3/representations.rb,
lib/google/apis/cloudtasks_v2beta3/representations.rb
Overview
PathOverride. Path message defines path override for HTTP targets.
Instance Attribute Summary collapse
-
#path ⇒ String
The URI path (e.g., /users/1234).
Instance Method Summary collapse
-
#initialize(**args) ⇒ PathOverride
constructor
A new instance of PathOverride.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PathOverride
Returns a new instance of PathOverride.
1074 1075 1076 |
# File 'lib/google/apis/cloudtasks_v2beta3/classes.rb', line 1074 def initialize(**args) update!(**args) end |
Instance Attribute Details
#path ⇒ String
The URI path (e.g., /users/1234). Default is an empty string.
Corresponds to the JSON property path
1072 1073 1074 |
# File 'lib/google/apis/cloudtasks_v2beta3/classes.rb', line 1072 def path @path end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1079 1080 1081 |
# File 'lib/google/apis/cloudtasks_v2beta3/classes.rb', line 1079 def update!(**args) @path = args[:path] if args.key?(:path) end |