Skip to content

Commit ffab1d8

Browse files
1 parent 67c531c commit ffab1d8

3 files changed

Lines changed: 18 additions & 15 deletions

File tree

src/DatabaseMigrationService/EntityIssue.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,10 @@ class EntityIssue extends \Google\Model
115115
* Issue originated during the convert process
116116
*/
117117
public const TYPE_ISSUE_TYPE_CONVERT = 'ISSUE_TYPE_CONVERT';
118+
/**
119+
* Issue originated during the pull schema process
120+
*/
121+
public const TYPE_ISSUE_TYPE_PULL_SCHEMA = 'ISSUE_TYPE_PULL_SCHEMA';
118122
/**
119123
* Error/Warning code
120124
*
@@ -289,7 +293,7 @@ public function getSeverity()
289293
* The type of the issue.
290294
*
291295
* Accepted values: ISSUE_TYPE_UNSPECIFIED, ISSUE_TYPE_DDL, ISSUE_TYPE_APPLY,
292-
* ISSUE_TYPE_CONVERT
296+
* ISSUE_TYPE_CONVERT, ISSUE_TYPE_PULL_SCHEMA
293297
*
294298
* @param self::TYPE_* $type
295299
*/

src/DatabaseMigrationService/QuotaFailureViolation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class QuotaFailureViolation extends \Google\Model
2121
{
2222
/**
23-
* The API Service from which the `QuotaFailure.Violation` orginates. In some
23+
* The API Service from which the `QuotaFailure.Violation` originates. In some
2424
* cases, Quota issues originate from an API Service other than the one that
2525
* was called. In other words, a dependency of the called API Service could be
2626
* the cause of the `QuotaFailure`, and this field would have the dependency
@@ -104,7 +104,7 @@ class QuotaFailureViolation extends \Google\Model
104104
public $subject;
105105

106106
/**
107-
* The API Service from which the `QuotaFailure.Violation` orginates. In some
107+
* The API Service from which the `QuotaFailure.Violation` originates. In some
108108
* cases, Quota issues originate from an API Service other than the one that
109109
* was called. In other words, a dependency of the called API Service could be
110110
* the cause of the `QuotaFailure`, and this field would have the dependency

src/DatabaseMigrationService/Resource/ProjectsLocations.php

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -69,23 +69,22 @@ public function get($name, $optParams = [])
6969
/**
7070
* Lists information about the supported locations for this service. This method
7171
* lists locations based on the resource scope provided in the
72-
* [ListLocationsRequest.name] field: * **Global locations**: If `name` is
73-
* empty, the method lists the public locations available to all projects. *
74-
* **Project-specific locations**: If `name` follows the format
75-
* `projects/{project}`, the method lists locations visible to that specific
76-
* project. This includes public, private, or other project-specific locations
77-
* enabled for the project. For gRPC and client library implementations, the
78-
* resource name is passed as the `name` field. For direct service calls, the
79-
* resource name is incorporated into the request path based on the specific
80-
* service implementation and version. (locations.listProjectsLocations)
72+
* ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
73+
* the method lists the public locations available to all projects. * **Project-
74+
* specific locations**: If `name` follows the format `projects/{project}`, the
75+
* method lists locations visible to that specific project. This includes
76+
* public, private, or other project-specific locations enabled for the project.
77+
* For gRPC and client library implementations, the resource name is passed as
78+
* the `name` field. For direct service calls, the resource name is incorporated
79+
* into the request path based on the specific service implementation and
80+
* version. (locations.listProjectsLocations)
8181
*
8282
* @param string $name The resource that owns the locations collection, if
8383
* applicable.
8484
* @param array $optParams Optional parameters.
8585
*
86-
* @opt_param string extraLocationTypes Optional. Do not use this field. It is
87-
* unsupported and is ignored unless explicitly documented otherwise. This is
88-
* primarily for internal usage.
86+
* @opt_param string extraLocationTypes Optional. Do not use this field unless
87+
* explicitly documented otherwise. This is primarily for internal usage.
8988
* @opt_param string filter A filter to narrow down results to a preferred
9089
* subset. The filtering language accepts strings like `"displayName=tokyo"`,
9190
* and is documented in more detail in [AIP-160](https://google.aip.dev/160).

0 commit comments

Comments
 (0)