Class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1UrlMetadata
- Inherits:
-
Object
- Object
- Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1UrlMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseml_v2beta/classes.rb,
lib/google/apis/firebaseml_v2beta/representations.rb,
lib/google/apis/firebaseml_v2beta/representations.rb
Overview
The metadata for a single URL retrieval.
Instance Attribute Summary collapse
-
#retrieved_url ⇒ String
The URL retrieved by the tool.
-
#url_retrieval_status ⇒ String
The status of the URL retrieval.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1UrlMetadata
constructor
A new instance of GoogleCloudAiplatformV1beta1UrlMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1UrlMetadata
Returns a new instance of GoogleCloudAiplatformV1beta1UrlMetadata.
3903 3904 3905 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 3903 def initialize(**args) update!(**args) end |
Instance Attribute Details
#retrieved_url ⇒ String
The URL retrieved by the tool.
Corresponds to the JSON property retrievedUrl
3896 3897 3898 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 3896 def retrieved_url @retrieved_url end |
#url_retrieval_status ⇒ String
The status of the URL retrieval.
Corresponds to the JSON property urlRetrievalStatus
3901 3902 3903 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 3901 def url_retrieval_status @url_retrieval_status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3908 3909 3910 3911 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 3908 def update!(**args) @retrieved_url = args[:retrieved_url] if args.key?(:retrieved_url) @url_retrieval_status = args[:url_retrieval_status] if args.key?(:url_retrieval_status) end |