Skip to content

Commit

Permalink
fix(redis): update the API
Browse files Browse the repository at this point in the history
#### redis:v1beta1

The following keys were changed:
- schemas.Instance.properties.reservedIpRange.description

#### redis:v1

The following keys were changed:
- schemas.Instance.properties.reservedIpRange.description
  • Loading branch information
yoshi-automation authored and bcoe committed Mar 26, 2021
1 parent 6e1f3be commit afc680a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions discovery/redis-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@
}
}
},
"revision": "20210318",
"revision": "20210311",
"rootUrl": "https://redis.googleapis.com/",
"schemas": {
"Empty": {
Expand Down Expand Up @@ -832,7 +832,7 @@
"type": "string"
},
"reservedIpRange": {
"description": "Optional. For DIRECT_PEERING mode, the CIDR range of internal addresses that are reserved for this instance. Range must be unique and non-overlapping with existing subnets in an authorized network. For PRIVATE_SERVICE_ACCESS mode, the name of one allocated IP address ranges associated with this private service access connection. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29.",
"description": "Optional. The CIDR range of internal addresses that are reserved for this instance. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29. Ranges must be unique and non-overlapping with existing subnets in an authorized network.",
"type": "string"
},
"serverCaCerts": {
Expand Down
4 changes: 2 additions & 2 deletions discovery/redis-v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@
}
}
},
"revision": "20210311",
"revision": "20210318",
"rootUrl": "https://redis.googleapis.com/",
"schemas": {
"Empty": {
Expand Down Expand Up @@ -832,7 +832,7 @@
"type": "string"
},
"reservedIpRange": {
"description": "Optional. The CIDR range of internal addresses that are reserved for this instance. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29. Ranges must be unique and non-overlapping with existing subnets in an authorized network.",
"description": "Optional. For DIRECT_PEERING mode, the CIDR range of internal addresses that are reserved for this instance. Range must be unique and non-overlapping with existing subnets in an authorized network. For PRIVATE_SERVICE_ACCESS mode, the name of one allocated IP address ranges associated with this private service access connection. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29.",
"type": "string"
},
"serverCaCerts": {
Expand Down
2 changes: 1 addition & 1 deletion src/apis/redis/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ export namespace redis_v1 {
*/
redisVersion?: string | null;
/**
* Optional. For DIRECT_PEERING mode, the CIDR range of internal addresses that are reserved for this instance. Range must be unique and non-overlapping with existing subnets in an authorized network. For PRIVATE_SERVICE_ACCESS mode, the name of one allocated IP address ranges associated with this private service access connection. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29.
* Optional. The CIDR range of internal addresses that are reserved for this instance. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29. Ranges must be unique and non-overlapping with existing subnets in an authorized network.
*/
reservedIpRange?: string | null;
/**
Expand Down
2 changes: 1 addition & 1 deletion src/apis/redis/v1beta1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ export namespace redis_v1beta1 {
*/
redisVersion?: string | null;
/**
* Optional. The CIDR range of internal addresses that are reserved for this instance. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29. Ranges must be unique and non-overlapping with existing subnets in an authorized network.
* Optional. For DIRECT_PEERING mode, the CIDR range of internal addresses that are reserved for this instance. Range must be unique and non-overlapping with existing subnets in an authorized network. For PRIVATE_SERVICE_ACCESS mode, the name of one allocated IP address ranges associated with this private service access connection. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29.
*/
reservedIpRange?: string | null;
/**
Expand Down

0 comments on commit afc680a

Please sign in to comment.