Class: Google::Apis::CloudtasksV2beta3::PathOverride

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#pathString

The URI path (e.g., /users/1234). Default is an empty string. Corresponds to the JSON property path

Returns:

  • (String)


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