@@ -21,22 +21,34 @@ class GoogleCloudRunV2CloudSqlInstance extends \Google\Collection
2121{
2222 protected $ collection_key = 'instances ' ;
2323 /**
24- * The Cloud SQL instance connection names, as can be found in
25- * https://console.cloud.google.com/sql/instances. Visit
24+ * A list of Cloud SQL instance connection names. Cloud Run uses these to
25+ * establish connections to the specified Cloud SQL instances. While the SQL
26+ * instance name itself is unique within a project, the full connection name
27+ * requires the location for proper routing. Format:
28+ * `{project}:{location}:{instance}` Example: `my-project:us-central1:my-
29+ * instance` You can find this value on the instance's **Overview** page in
30+ * the Google Cloud console or by using the following `gcloud` command: ```sh
31+ * gcloud sql instances describe INSTANCE_NAME \
32+ * --format='value(connectionName)' ``` Visit
2633 * https://cloud.google.com/sql/docs/mysql/connect-run for more information on
27- * how to connect Cloud SQL and Cloud Run. Format:
28- * {project}:{location}:{instance}
34+ * how to connect Cloud SQL and Cloud Run.
2935 *
3036 * @var string[]
3137 */
3238 public $ instances ;
3339
3440 /**
35- * The Cloud SQL instance connection names, as can be found in
36- * https://console.cloud.google.com/sql/instances. Visit
41+ * A list of Cloud SQL instance connection names. Cloud Run uses these to
42+ * establish connections to the specified Cloud SQL instances. While the SQL
43+ * instance name itself is unique within a project, the full connection name
44+ * requires the location for proper routing. Format:
45+ * `{project}:{location}:{instance}` Example: `my-project:us-central1:my-
46+ * instance` You can find this value on the instance's **Overview** page in
47+ * the Google Cloud console or by using the following `gcloud` command: ```sh
48+ * gcloud sql instances describe INSTANCE_NAME \
49+ * --format='value(connectionName)' ``` Visit
3750 * https://cloud.google.com/sql/docs/mysql/connect-run for more information on
38- * how to connect Cloud SQL and Cloud Run. Format:
39- * {project}:{location}:{instance}
51+ * how to connect Cloud SQL and Cloud Run.
4052 *
4153 * @param string[] $instances
4254 */
0 commit comments