Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1CreateEntryLinkRequest
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1CreateEntryLinkRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb
Overview
Request message for CreateEntryLink.
Instance Attribute Summary collapse
-
#entry_link ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1EntryLink
EntryLink represents a link between two Entries.
-
#entry_link_id ⇒ String
Required.
-
#parent ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1CreateEntryLinkRequest
constructor
A new instance of GoogleCloudDataplexV1CreateEntryLinkRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1CreateEntryLinkRequest
Returns a new instance of GoogleCloudDataplexV1CreateEntryLinkRequest.
1560 1561 1562 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1560 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entry_link ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1EntryLink
EntryLink represents a link between two Entries.
Corresponds to the JSON property entryLink
1545 1546 1547 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1545 def entry_link @entry_link end |
#entry_link_id ⇒ String
Required. Entry Link identifier * Must contain only lowercase letters, numbers
and hyphens. * Must start with a letter. * Must be between 1-63 characters. *
Must end with a number or a letter. * Must be unique within the EntryGroup.
Corresponds to the JSON property entryLinkId
1552 1553 1554 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1552 def entry_link_id @entry_link_id end |
#parent ⇒ String
Required. The resource name of the parent Entry Group: projects/
project_id_or_number/locations/location_id/entryGroups/entry_group_id.
Corresponds to the JSON property parent
1558 1559 1560 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1558 def parent @parent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1565 1566 1567 1568 1569 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1565 def update!(**args) @entry_link = args[:entry_link] if args.key?(:entry_link) @entry_link_id = args[:entry_link_id] if args.key?(:entry_link_id) @parent = args[:parent] if args.key?(:parent) end |