Skip to content

Commit 4cb2ba6

Browse files
1 parent e56af72 commit 4cb2ba6

6 files changed

Lines changed: 290 additions & 10 deletions

src/CloudDataplex/GoogleCloudDataplexV1DataDocumentationResult.php

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,25 +17,24 @@
1717

1818
namespace Google\Service\CloudDataplex;
1919

20-
class GoogleCloudDataplexV1DataDocumentationResult extends \Google\Collection
20+
class GoogleCloudDataplexV1DataDocumentationResult extends \Google\Model
2121
{
22-
protected $collection_key = 'queries';
23-
protected $queriesType = GoogleCloudDataplexV1DataDocumentationResultQuery::class;
24-
protected $queriesDataType = 'array';
22+
protected $tableResultType = GoogleCloudDataplexV1DataDocumentationResultTableResult::class;
23+
protected $tableResultDataType = '';
2524

2625
/**
27-
* @param GoogleCloudDataplexV1DataDocumentationResultQuery[]
26+
* @param GoogleCloudDataplexV1DataDocumentationResultTableResult
2827
*/
29-
public function setQueries($queries)
28+
public function setTableResult(GoogleCloudDataplexV1DataDocumentationResultTableResult $tableResult)
3029
{
31-
$this->queries = $queries;
30+
$this->tableResult = $tableResult;
3231
}
3332
/**
34-
* @return GoogleCloudDataplexV1DataDocumentationResultQuery[]
33+
* @return GoogleCloudDataplexV1DataDocumentationResultTableResult
3534
*/
36-
public function getQueries()
35+
public function getTableResult()
3736
{
38-
return $this->queries;
37+
return $this->tableResult;
3938
}
4039
}
4140

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
<?php
2+
/*
3+
* Copyright 2014 Google Inc.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
* use this file except in compliance with the License. You may obtain a copy of
7+
* the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
* License for the specific language governing permissions and limitations under
15+
* the License.
16+
*/
17+
18+
namespace Google\Service\CloudDataplex;
19+
20+
class GoogleCloudDataplexV1DataDocumentationResultField extends \Google\Collection
21+
{
22+
protected $collection_key = 'fields';
23+
/**
24+
* @var string
25+
*/
26+
public $description;
27+
protected $fieldsType = GoogleCloudDataplexV1DataDocumentationResultField::class;
28+
protected $fieldsDataType = 'array';
29+
/**
30+
* @var string
31+
*/
32+
public $name;
33+
34+
/**
35+
* @param string
36+
*/
37+
public function setDescription($description)
38+
{
39+
$this->description = $description;
40+
}
41+
/**
42+
* @return string
43+
*/
44+
public function getDescription()
45+
{
46+
return $this->description;
47+
}
48+
/**
49+
* @param GoogleCloudDataplexV1DataDocumentationResultField[]
50+
*/
51+
public function setFields($fields)
52+
{
53+
$this->fields = $fields;
54+
}
55+
/**
56+
* @return GoogleCloudDataplexV1DataDocumentationResultField[]
57+
*/
58+
public function getFields()
59+
{
60+
return $this->fields;
61+
}
62+
/**
63+
* @param string
64+
*/
65+
public function setName($name)
66+
{
67+
$this->name = $name;
68+
}
69+
/**
70+
* @return string
71+
*/
72+
public function getName()
73+
{
74+
return $this->name;
75+
}
76+
}
77+
78+
// Adding a class alias for backwards compatibility with the previous class name.
79+
class_alias(GoogleCloudDataplexV1DataDocumentationResultField::class, 'Google_Service_CloudDataplex_GoogleCloudDataplexV1DataDocumentationResultField');
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?php
2+
/*
3+
* Copyright 2014 Google Inc.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
* use this file except in compliance with the License. You may obtain a copy of
7+
* the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
* License for the specific language governing permissions and limitations under
15+
* the License.
16+
*/
17+
18+
namespace Google\Service\CloudDataplex;
19+
20+
class GoogleCloudDataplexV1DataDocumentationResultSchema extends \Google\Collection
21+
{
22+
protected $collection_key = 'fields';
23+
protected $fieldsType = GoogleCloudDataplexV1DataDocumentationResultField::class;
24+
protected $fieldsDataType = 'array';
25+
26+
/**
27+
* @param GoogleCloudDataplexV1DataDocumentationResultField[]
28+
*/
29+
public function setFields($fields)
30+
{
31+
$this->fields = $fields;
32+
}
33+
/**
34+
* @return GoogleCloudDataplexV1DataDocumentationResultField[]
35+
*/
36+
public function getFields()
37+
{
38+
return $this->fields;
39+
}
40+
}
41+
42+
// Adding a class alias for backwards compatibility with the previous class name.
43+
class_alias(GoogleCloudDataplexV1DataDocumentationResultSchema::class, 'Google_Service_CloudDataplex_GoogleCloudDataplexV1DataDocumentationResultSchema');
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
<?php
2+
/*
3+
* Copyright 2014 Google Inc.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
* use this file except in compliance with the License. You may obtain a copy of
7+
* the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
* License for the specific language governing permissions and limitations under
15+
* the License.
16+
*/
17+
18+
namespace Google\Service\CloudDataplex;
19+
20+
class GoogleCloudDataplexV1DataDocumentationResultTableResult extends \Google\Collection
21+
{
22+
protected $collection_key = 'queries';
23+
/**
24+
* @var string
25+
*/
26+
public $name;
27+
/**
28+
* @var string
29+
*/
30+
public $overview;
31+
protected $queriesType = GoogleCloudDataplexV1DataDocumentationResultQuery::class;
32+
protected $queriesDataType = 'array';
33+
protected $schemaType = GoogleCloudDataplexV1DataDocumentationResultSchema::class;
34+
protected $schemaDataType = '';
35+
36+
/**
37+
* @param string
38+
*/
39+
public function setName($name)
40+
{
41+
$this->name = $name;
42+
}
43+
/**
44+
* @return string
45+
*/
46+
public function getName()
47+
{
48+
return $this->name;
49+
}
50+
/**
51+
* @param string
52+
*/
53+
public function setOverview($overview)
54+
{
55+
$this->overview = $overview;
56+
}
57+
/**
58+
* @return string
59+
*/
60+
public function getOverview()
61+
{
62+
return $this->overview;
63+
}
64+
/**
65+
* @param GoogleCloudDataplexV1DataDocumentationResultQuery[]
66+
*/
67+
public function setQueries($queries)
68+
{
69+
$this->queries = $queries;
70+
}
71+
/**
72+
* @return GoogleCloudDataplexV1DataDocumentationResultQuery[]
73+
*/
74+
public function getQueries()
75+
{
76+
return $this->queries;
77+
}
78+
/**
79+
* @param GoogleCloudDataplexV1DataDocumentationResultSchema
80+
*/
81+
public function setSchema(GoogleCloudDataplexV1DataDocumentationResultSchema $schema)
82+
{
83+
$this->schema = $schema;
84+
}
85+
/**
86+
* @return GoogleCloudDataplexV1DataDocumentationResultSchema
87+
*/
88+
public function getSchema()
89+
{
90+
return $this->schema;
91+
}
92+
}
93+
94+
// Adding a class alias for backwards compatibility with the previous class name.
95+
class_alias(GoogleCloudDataplexV1DataDocumentationResultTableResult::class, 'Google_Service_CloudDataplex_GoogleCloudDataplexV1DataDocumentationResultTableResult');

src/CloudDataplex/GoogleCloudDataplexV1DataScan.php

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ class GoogleCloudDataplexV1DataScan extends \Google\Model
2929
protected $dataDiscoveryResultDataType = '';
3030
protected $dataDiscoverySpecType = GoogleCloudDataplexV1DataDiscoverySpec::class;
3131
protected $dataDiscoverySpecDataType = '';
32+
protected $dataDocumentationResultType = GoogleCloudDataplexV1DataDocumentationResult::class;
33+
protected $dataDocumentationResultDataType = '';
34+
protected $dataDocumentationSpecType = GoogleCloudDataplexV1DataDocumentationSpec::class;
35+
protected $dataDocumentationSpecDataType = '';
3236
protected $dataProfileResultType = GoogleCloudDataplexV1DataProfileResult::class;
3337
protected $dataProfileResultDataType = '';
3438
protected $dataProfileSpecType = GoogleCloudDataplexV1DataProfileSpec::class;
@@ -130,6 +134,34 @@ public function getDataDiscoverySpec()
130134
{
131135
return $this->dataDiscoverySpec;
132136
}
137+
/**
138+
* @param GoogleCloudDataplexV1DataDocumentationResult
139+
*/
140+
public function setDataDocumentationResult(GoogleCloudDataplexV1DataDocumentationResult $dataDocumentationResult)
141+
{
142+
$this->dataDocumentationResult = $dataDocumentationResult;
143+
}
144+
/**
145+
* @return GoogleCloudDataplexV1DataDocumentationResult
146+
*/
147+
public function getDataDocumentationResult()
148+
{
149+
return $this->dataDocumentationResult;
150+
}
151+
/**
152+
* @param GoogleCloudDataplexV1DataDocumentationSpec
153+
*/
154+
public function setDataDocumentationSpec(GoogleCloudDataplexV1DataDocumentationSpec $dataDocumentationSpec)
155+
{
156+
$this->dataDocumentationSpec = $dataDocumentationSpec;
157+
}
158+
/**
159+
* @return GoogleCloudDataplexV1DataDocumentationSpec
160+
*/
161+
public function getDataDocumentationSpec()
162+
{
163+
return $this->dataDocumentationSpec;
164+
}
133165
/**
134166
* @param GoogleCloudDataplexV1DataProfileResult
135167
*/

src/CloudDataplex/GoogleCloudDataplexV1DataScanJob.php

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ class GoogleCloudDataplexV1DataScanJob extends \Google\Model
2727
protected $dataDiscoveryResultDataType = '';
2828
protected $dataDiscoverySpecType = GoogleCloudDataplexV1DataDiscoverySpec::class;
2929
protected $dataDiscoverySpecDataType = '';
30+
protected $dataDocumentationResultType = GoogleCloudDataplexV1DataDocumentationResult::class;
31+
protected $dataDocumentationResultDataType = '';
32+
protected $dataDocumentationSpecType = GoogleCloudDataplexV1DataDocumentationSpec::class;
33+
protected $dataDocumentationSpecDataType = '';
3034
protected $dataProfileResultType = GoogleCloudDataplexV1DataProfileResult::class;
3135
protected $dataProfileResultDataType = '';
3236
protected $dataProfileSpecType = GoogleCloudDataplexV1DataProfileSpec::class;
@@ -106,6 +110,34 @@ public function getDataDiscoverySpec()
106110
{
107111
return $this->dataDiscoverySpec;
108112
}
113+
/**
114+
* @param GoogleCloudDataplexV1DataDocumentationResult
115+
*/
116+
public function setDataDocumentationResult(GoogleCloudDataplexV1DataDocumentationResult $dataDocumentationResult)
117+
{
118+
$this->dataDocumentationResult = $dataDocumentationResult;
119+
}
120+
/**
121+
* @return GoogleCloudDataplexV1DataDocumentationResult
122+
*/
123+
public function getDataDocumentationResult()
124+
{
125+
return $this->dataDocumentationResult;
126+
}
127+
/**
128+
* @param GoogleCloudDataplexV1DataDocumentationSpec
129+
*/
130+
public function setDataDocumentationSpec(GoogleCloudDataplexV1DataDocumentationSpec $dataDocumentationSpec)
131+
{
132+
$this->dataDocumentationSpec = $dataDocumentationSpec;
133+
}
134+
/**
135+
* @return GoogleCloudDataplexV1DataDocumentationSpec
136+
*/
137+
public function getDataDocumentationSpec()
138+
{
139+
return $this->dataDocumentationSpec;
140+
}
109141
/**
110142
* @param GoogleCloudDataplexV1DataProfileResult
111143
*/

0 commit comments

Comments
 (0)