Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UserActionReference
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UserActionReference
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
References an API call. It contains more information about long running operation and Jobs that are triggered by the API call.
Instance Attribute Summary collapse
-
#data_labeling_job ⇒ String
For API calls that start a LabelingJob.
-
#method_prop ⇒ String
The method name of the API RPC call.
-
#operation ⇒ String
For API calls that return a long running operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1UserActionReference
constructor
A new instance of GoogleCloudAiplatformV1UserActionReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1UserActionReference
Returns a new instance of GoogleCloudAiplatformV1UserActionReference.
32984 32985 32986 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 32984 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_labeling_job ⇒ String
For API calls that start a LabelingJob. Resource name of the LabelingJob.
Format: projects/project/locations/location/dataLabelingJobs/
data_labeling_job`
Corresponds to the JSON propertydataLabelingJob`
32969 32970 32971 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 32969 def data_labeling_job @data_labeling_job end |
#method_prop ⇒ String
The method name of the API RPC call. For example, "/google.cloud.aiplatform.
apiVersion.DatasetService.CreateDataset"
Corresponds to the JSON property method
32975 32976 32977 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 32975 def method_prop @method_prop end |
#operation ⇒ String
For API calls that return a long running operation. Resource name of the long
running operation. Format: projects/project/locations/location/operations/
operation`
Corresponds to the JSON propertyoperation`
32982 32983 32984 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 32982 def operation @operation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
32989 32990 32991 32992 32993 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 32989 def update!(**args) @data_labeling_job = args[:data_labeling_job] if args.key?(:data_labeling_job) @method_prop = args[:method_prop] if args.key?(:method_prop) @operation = args[:operation] if args.key?(:operation) end |