Class: Google::Apis::DataflowV1b3::DatastoreIoDetails
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::DatastoreIoDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/google/apis/dataflow_v1b3/representations.rb
Overview
Metadata for a Datastore connector used by the job.
Instance Attribute Summary collapse
-
#namespace ⇒ String
Namespace used in the connection.
-
#project_id ⇒ String
ProjectId accessed in the connection.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DatastoreIoDetails
constructor
A new instance of DatastoreIoDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DatastoreIoDetails
Returns a new instance of DatastoreIoDetails.
1056 1057 1058 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1056 def initialize(**args) update!(**args) end |
Instance Attribute Details
#namespace ⇒ String
Namespace used in the connection.
Corresponds to the JSON property namespace
1049 1050 1051 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1049 def namespace @namespace end |
#project_id ⇒ String
ProjectId accessed in the connection.
Corresponds to the JSON property projectId
1054 1055 1056 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1054 def project_id @project_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1061 1062 1063 1064 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1061 def update!(**args) @namespace = args[:namespace] if args.key?(:namespace) @project_id = args[:project_id] if args.key?(:project_id) end |