Skip to content

Commit 66d978f

Browse files
1 parent 0f767c5 commit 66d978f

3 files changed

Lines changed: 125 additions & 1 deletion

src/CloudDataplex/GoogleCloudDataplexV1ImportItem.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ class GoogleCloudDataplexV1ImportItem extends \Google\Collection
2626
public $aspectKeys;
2727
protected $entryType = GoogleCloudDataplexV1Entry::class;
2828
protected $entryDataType = '';
29+
protected $entryLinkType = GoogleCloudDataplexV1EntryLink::class;
30+
protected $entryLinkDataType = '';
2931
/**
3032
* @var string
3133
*/
@@ -59,6 +61,20 @@ public function getEntry()
5961
{
6062
return $this->entry;
6163
}
64+
/**
65+
* @param GoogleCloudDataplexV1EntryLink
66+
*/
67+
public function setEntryLink(GoogleCloudDataplexV1EntryLink $entryLink)
68+
{
69+
$this->entryLink = $entryLink;
70+
}
71+
/**
72+
* @return GoogleCloudDataplexV1EntryLink
73+
*/
74+
public function getEntryLink()
75+
{
76+
return $this->entryLink;
77+
}
6278
/**
6379
* @param string
6480
*/

src/CloudDataplex/GoogleCloudDataplexV1MetadataJobImportJobResult.php

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,18 @@ class GoogleCloudDataplexV1MetadataJobImportJobResult extends \Google\Model
2323
* @var string
2424
*/
2525
public $createdEntries;
26+
/**
27+
* @var string
28+
*/
29+
public $createdEntryLinks;
2630
/**
2731
* @var string
2832
*/
2933
public $deletedEntries;
34+
/**
35+
* @var string
36+
*/
37+
public $deletedEntryLinks;
3038
/**
3139
* @var string
3240
*/
@@ -35,6 +43,10 @@ class GoogleCloudDataplexV1MetadataJobImportJobResult extends \Google\Model
3543
* @var string
3644
*/
3745
public $unchangedEntries;
46+
/**
47+
* @var string
48+
*/
49+
public $unchangedEntryLinks;
3850
/**
3951
* @var string
4052
*/
@@ -58,6 +70,20 @@ public function getCreatedEntries()
5870
{
5971
return $this->createdEntries;
6072
}
73+
/**
74+
* @param string
75+
*/
76+
public function setCreatedEntryLinks($createdEntryLinks)
77+
{
78+
$this->createdEntryLinks = $createdEntryLinks;
79+
}
80+
/**
81+
* @return string
82+
*/
83+
public function getCreatedEntryLinks()
84+
{
85+
return $this->createdEntryLinks;
86+
}
6187
/**
6288
* @param string
6389
*/
@@ -72,6 +98,20 @@ public function getDeletedEntries()
7298
{
7399
return $this->deletedEntries;
74100
}
101+
/**
102+
* @param string
103+
*/
104+
public function setDeletedEntryLinks($deletedEntryLinks)
105+
{
106+
$this->deletedEntryLinks = $deletedEntryLinks;
107+
}
108+
/**
109+
* @return string
110+
*/
111+
public function getDeletedEntryLinks()
112+
{
113+
return $this->deletedEntryLinks;
114+
}
75115
/**
76116
* @param string
77117
*/
@@ -100,6 +140,20 @@ public function getUnchangedEntries()
100140
{
101141
return $this->unchangedEntries;
102142
}
143+
/**
144+
* @param string
145+
*/
146+
public function setUnchangedEntryLinks($unchangedEntryLinks)
147+
{
148+
$this->unchangedEntryLinks = $unchangedEntryLinks;
149+
}
150+
/**
151+
* @return string
152+
*/
153+
public function getUnchangedEntryLinks()
154+
{
155+
return $this->unchangedEntryLinks;
156+
}
103157
/**
104158
* @param string
105159
*/

src/CloudDataplex/GoogleCloudDataplexV1MetadataJobImportJobSpecImportJobScope.php

Lines changed: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
class GoogleCloudDataplexV1MetadataJobImportJobSpecImportJobScope extends \Google\Collection
2121
{
22-
protected $collection_key = 'entryTypes';
22+
protected $collection_key = 'referencedEntryScopes';
2323
/**
2424
* @var string[]
2525
*/
@@ -28,10 +28,22 @@ class GoogleCloudDataplexV1MetadataJobImportJobSpecImportJobScope extends \Googl
2828
* @var string[]
2929
*/
3030
public $entryGroups;
31+
/**
32+
* @var string[]
33+
*/
34+
public $entryLinkTypes;
3135
/**
3236
* @var string[]
3337
*/
3438
public $entryTypes;
39+
/**
40+
* @var string[]
41+
*/
42+
public $glossaries;
43+
/**
44+
* @var string[]
45+
*/
46+
public $referencedEntryScopes;
3547

3648
/**
3749
* @param string[]
@@ -61,6 +73,20 @@ public function getEntryGroups()
6173
{
6274
return $this->entryGroups;
6375
}
76+
/**
77+
* @param string[]
78+
*/
79+
public function setEntryLinkTypes($entryLinkTypes)
80+
{
81+
$this->entryLinkTypes = $entryLinkTypes;
82+
}
83+
/**
84+
* @return string[]
85+
*/
86+
public function getEntryLinkTypes()
87+
{
88+
return $this->entryLinkTypes;
89+
}
6490
/**
6591
* @param string[]
6692
*/
@@ -75,6 +101,34 @@ public function getEntryTypes()
75101
{
76102
return $this->entryTypes;
77103
}
104+
/**
105+
* @param string[]
106+
*/
107+
public function setGlossaries($glossaries)
108+
{
109+
$this->glossaries = $glossaries;
110+
}
111+
/**
112+
* @return string[]
113+
*/
114+
public function getGlossaries()
115+
{
116+
return $this->glossaries;
117+
}
118+
/**
119+
* @param string[]
120+
*/
121+
public function setReferencedEntryScopes($referencedEntryScopes)
122+
{
123+
$this->referencedEntryScopes = $referencedEntryScopes;
124+
}
125+
/**
126+
* @return string[]
127+
*/
128+
public function getReferencedEntryScopes()
129+
{
130+
return $this->referencedEntryScopes;
131+
}
78132
}
79133

80134
// Adding a class alias for backwards compatibility with the previous class name.

0 commit comments

Comments
 (0)