Skip to content

Commit bb1b66d

Browse files
1 parent fbb7007 commit bb1b66d

30 files changed

Lines changed: 74 additions & 74 deletions

src/Datastream/ConnectionProfile.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class ConnectionProfile extends \Google\Model
8787
public $updateTime;
8888

8989
/**
90-
* BigQuery Connection Profile configuration.
90+
* Profile for connecting to a BigQuery destination.
9191
*
9292
* @param BigQueryProfile $bigqueryProfile
9393
*/
@@ -151,7 +151,7 @@ public function getForwardSshConnectivity()
151151
return $this->forwardSshConnectivity;
152152
}
153153
/**
154-
* Cloud Storage ConnectionProfile configuration.
154+
* Profile for connecting to a Cloud Storage destination.
155155
*
156156
* @param GcsProfile $gcsProfile
157157
*/
@@ -183,7 +183,7 @@ public function getLabels()
183183
return $this->labels;
184184
}
185185
/**
186-
* MongoDB Connection Profile configuration.
186+
* Profile for connecting to a MongoDB source.
187187
*
188188
* @param MongodbProfile $mongodbProfile
189189
*/
@@ -199,7 +199,7 @@ public function getMongodbProfile()
199199
return $this->mongodbProfile;
200200
}
201201
/**
202-
* MySQL ConnectionProfile configuration.
202+
* Profile for connecting to a MySQL source.
203203
*
204204
* @param MysqlProfile $mysqlProfile
205205
*/
@@ -231,7 +231,7 @@ public function getName()
231231
return $this->name;
232232
}
233233
/**
234-
* Oracle ConnectionProfile configuration.
234+
* Profile for connecting to an Oracle source.
235235
*
236236
* @param OracleProfile $oracleProfile
237237
*/
@@ -247,7 +247,7 @@ public function getOracleProfile()
247247
return $this->oracleProfile;
248248
}
249249
/**
250-
* PostgreSQL Connection Profile configuration.
250+
* Profile for connecting to a PostgreSQL source.
251251
*
252252
* @param PostgresqlProfile $postgresqlProfile
253253
*/
@@ -279,7 +279,7 @@ public function getPrivateConnectivity()
279279
return $this->privateConnectivity;
280280
}
281281
/**
282-
* Salesforce Connection Profile configuration.
282+
* Profile for connecting to a Salesforce source.
283283
*
284284
* @param SalesforceProfile $salesforceProfile
285285
*/
@@ -327,7 +327,7 @@ public function getSatisfiesPzs()
327327
return $this->satisfiesPzs;
328328
}
329329
/**
330-
* Spanner Connection Profile configuration.
330+
* Profile for connecting to a Spanner source.
331331
*
332332
* @param SpannerProfile $spannerProfile
333333
*/
@@ -343,7 +343,7 @@ public function getSpannerProfile()
343343
return $this->spannerProfile;
344344
}
345345
/**
346-
* SQLServer Connection Profile configuration.
346+
* Profile for connecting to a SQLServer source.
347347
*
348348
* @param SqlServerProfile $sqlServerProfile
349349
*/

src/Datastream/EventFilter.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ class EventFilter extends \Google\Model
2121
{
2222
/**
2323
* An SQL-query Where clause selecting which data should be included, not
24-
* including the "WHERE" keyword. E.g., "t.key1 = 'value1' AND t.key2 =
25-
* 'value2'".
24+
* including the "WHERE" keyword. e.g., `t.key1 = 'value1' AND t.key2 =
25+
* 'value2'`
2626
*
2727
* @var string
2828
*/
2929
public $sqlWhereClause;
3030

3131
/**
3232
* An SQL-query Where clause selecting which data should be included, not
33-
* including the "WHERE" keyword. E.g., "t.key1 = 'value1' AND t.key2 =
34-
* 'value2'".
33+
* including the "WHERE" keyword. e.g., `t.key1 = 'value1' AND t.key2 =
34+
* 'value2'`
3535
*
3636
* @param string $sqlWhereClause
3737
*/

src/Datastream/GcsProfile.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class GcsProfile extends \Google\Model
2626
*/
2727
public $bucket;
2828
/**
29-
* The root path inside the Cloud Storage bucket.
29+
* Optional. The root path inside the Cloud Storage bucket.
3030
*
3131
* @var string
3232
*/
@@ -49,7 +49,7 @@ public function getBucket()
4949
return $this->bucket;
5050
}
5151
/**
52-
* The root path inside the Cloud Storage bucket.
52+
* Optional. The root path inside the Cloud Storage bucket.
5353
*
5454
* @param string $rootPath
5555
*/

src/Datastream/MongodbCollection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class MongodbCollection extends \Google\Collection
2121
{
2222
protected $collection_key = 'fields';
2323
/**
24-
* Collection name.
24+
* The collection name.
2525
*
2626
* @var string
2727
*/
@@ -30,7 +30,7 @@ class MongodbCollection extends \Google\Collection
3030
protected $fieldsDataType = 'array';
3131

3232
/**
33-
* Collection name.
33+
* The collection name.
3434
*
3535
* @param string $collection
3636
*/

src/Datastream/MongodbDatabase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class MongodbDatabase extends \Google\Collection
2323
protected $collectionsType = MongodbCollection::class;
2424
protected $collectionsDataType = 'array';
2525
/**
26-
* Database name.
26+
* The database name.
2727
*
2828
* @var string
2929
*/
@@ -46,7 +46,7 @@ public function getCollections()
4646
return $this->collections;
4747
}
4848
/**
49-
* Database name.
49+
* The database name.
5050
*
5151
* @param string $database
5252
*/

src/Datastream/MongodbField.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
class MongodbField extends \Google\Model
2121
{
2222
/**
23-
* Field name.
23+
* The field name.
2424
*
2525
* @var string
2626
*/
2727
public $field;
2828

2929
/**
30-
* Field name.
30+
* The field name.
3131
*
3232
* @param string $field
3333
*/

src/Datastream/MongodbSourceConfig.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class MongodbSourceConfig extends \Google\Model
5151
public $maxConcurrentBackfillTasks;
5252

5353
/**
54-
* MongoDB collections to exclude from the stream.
54+
* The MongoDB collections to exclude from the stream.
5555
*
5656
* @param MongodbCluster $excludeObjects
5757
*/
@@ -67,7 +67,7 @@ public function getExcludeObjects()
6767
return $this->excludeObjects;
6868
}
6969
/**
70-
* MongoDB collections to include in the stream.
70+
* The MongoDB collections to include in the stream.
7171
*
7272
* @param MongodbCluster $includeObjects
7373
*/

src/Datastream/MysqlColumn.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class MysqlColumn extends \Google\Model
2626
*/
2727
public $collation;
2828
/**
29-
* Column name.
29+
* The column name.
3030
*
3131
* @var string
3232
*/
@@ -92,7 +92,7 @@ public function getCollation()
9292
return $this->collation;
9393
}
9494
/**
95-
* Column name.
95+
* The column name.
9696
*
9797
* @param string $column
9898
*/

src/Datastream/MysqlDatabase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class MysqlDatabase extends \Google\Collection
2121
{
2222
protected $collection_key = 'mysqlTables';
2323
/**
24-
* Database name.
24+
* The database name.
2525
*
2626
* @var string
2727
*/
@@ -30,7 +30,7 @@ class MysqlDatabase extends \Google\Collection
3030
protected $mysqlTablesDataType = 'array';
3131

3232
/**
33-
* Database name.
33+
* The database name.
3434
*
3535
* @param string $database
3636
*/

src/Datastream/MysqlSourceConfig.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function getBinaryLogPosition()
6060
return $this->binaryLogPosition;
6161
}
6262
/**
63-
* MySQL objects to exclude from the stream.
63+
* The MySQL objects to exclude from the stream.
6464
*
6565
* @param MysqlRdbms $excludeObjects
6666
*/
@@ -92,7 +92,7 @@ public function getGtid()
9292
return $this->gtid;
9393
}
9494
/**
95-
* MySQL objects to retrieve from the source.
95+
* The MySQL objects to retrieve from the source.
9696
*
9797
* @param MysqlRdbms $includeObjects
9898
*/

0 commit comments

Comments
 (0)