Skip to content

Commit dbc1e52

Browse files
1 parent 3af2749 commit dbc1e52

6 files changed

Lines changed: 42 additions & 5 deletions

src/OracleDatabase.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,14 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
411411
'type' => 'string',
412412
'required' => true,
413413
],
414+
'filter' => [
415+
'location' => 'query',
416+
'type' => 'string',
417+
],
418+
'orderBy' => [
419+
'location' => 'query',
420+
'type' => 'string',
421+
],
414422
'pageSize' => [
415423
'location' => 'query',
416424
'type' => 'integer',
@@ -573,6 +581,10 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
573581
'type' => 'string',
574582
'required' => true,
575583
],
584+
'filter' => [
585+
'location' => 'query',
586+
'type' => 'string',
587+
],
576588
'pageSize' => [
577589
'location' => 'query',
578590
'type' => 'integer',

src/OracleDatabase/OdbNetwork.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ class OdbNetwork extends \Google\Model
2727
* @var string
2828
*/
2929
public $entitlementId;
30+
/**
31+
* @var string
32+
*/
33+
public $gcpOracleZone;
3034
/**
3135
* @var string[]
3236
*/
@@ -72,6 +76,20 @@ public function getEntitlementId()
7276
{
7377
return $this->entitlementId;
7478
}
79+
/**
80+
* @param string
81+
*/
82+
public function setGcpOracleZone($gcpOracleZone)
83+
{
84+
$this->gcpOracleZone = $gcpOracleZone;
85+
}
86+
/**
87+
* @return string
88+
*/
89+
public function getGcpOracleZone()
90+
{
91+
return $this->gcpOracleZone;
92+
}
7593
/**
7694
* @param string[]
7795
*/

src/OracleDatabase/Resource/ProjectsLocations.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ public function get($name, $optParams = [])
5252
* applicable.
5353
* @param array $optParams Optional parameters.
5454
*
55-
* @opt_param string extraLocationTypes Optional. Do not use this field. It is
56-
* unsupported and is ignored unless explicitly documented otherwise. This is
57-
* primarily for internal usage.
55+
* @opt_param string extraLocationTypes Optional. Unless explicitly documented
56+
* otherwise, don't use this unsupported field which is primarily intended for
57+
* internal usage.
5858
* @opt_param string filter A filter to narrow down results to a preferred
5959
* subset. The filtering language accepts strings like `"displayName=tokyo"`,
6060
* and is documented in more detail in [AIP-160](https://google.aip.dev/160).

src/OracleDatabase/Resource/ProjectsLocationsCloudExadataInfrastructures.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,10 @@ public function get($name, $optParams = [])
114114
* projects/{project}/locations/{location}.
115115
* @param array $optParams Optional parameters.
116116
*
117+
* @opt_param string filter Optional. An expression for filtering the results of
118+
* the request.
119+
* @opt_param string orderBy Optional. An expression for ordering the results of
120+
* the request.
117121
* @opt_param int pageSize Optional. The maximum number of items to return. If
118122
* unspecified, at most 50 Exadata infrastructures will be returned. The maximum
119123
* value is 1000; values above 1000 will be coerced to 1000.

src/OracleDatabase/Resource/ProjectsLocationsDbSystemShapes.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ class ProjectsLocationsDbSystemShapes extends \Google\Service\Resource
3737
* in the following format: projects/{project}/locations/{location}.
3838
* @param array $optParams Optional parameters.
3939
*
40+
* @opt_param string filter Optional. An expression for filtering the results of
41+
* the request. Only the gcp_oracle_zone_id field is supported in this format:
42+
* `gcp_oracle_zone_id="{gcp_oracle_zone_id}"`.
4043
* @opt_param int pageSize Optional. The maximum number of items to return. If
4144
* unspecified, at most 50 database system shapes will be returned. The maximum
4245
* value is 1000; values above 1000 will be coerced to 1000.

src/OracleDatabase/Resource/ProjectsLocationsGiVersions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ class ProjectsLocationsGiVersions extends \Google\Service\Resource
3939
* @param array $optParams Optional parameters.
4040
*
4141
* @opt_param string filter Optional. An expression for filtering the results of
42-
* the request. Only the shape and gi_version fields are supported in this
43-
* format: `shape="{shape}"`.
42+
* the request. Only the shape, gcp_oracle_zone and gi_version fields are
43+
* supported in this format: `shape="{shape}"`.
4444
* @opt_param int pageSize Optional. The maximum number of items to return. If
4545
* unspecified, a maximum of 50 Oracle Grid Infrastructure (GI) versions will be
4646
* returned. The maximum value is 1000; values above 1000 will be reset to 1000.

0 commit comments

Comments
 (0)