Skip to content

Commit

Permalink
feat(run): update the API
Browse files Browse the repository at this point in the history
#### run:v1alpha1
The following keys were added:
- schemas.DomainMappingStatus.properties.url.description
- schemas.DomainMappingStatus.properties.url.type

#### run:v1
The following keys were added:
- schemas.DomainMappingStatus.properties.url.description
- schemas.DomainMappingStatus.properties.url.type
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Jun 5, 2020
1 parent 98a816a commit 5e55acf
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
6 changes: 5 additions & 1 deletion discovery/run-v1.json
Expand Up @@ -1942,7 +1942,7 @@
}
}
},
"revision": "20200505",
"revision": "20200603",
"rootUrl": "https://run.googleapis.com/",
"schemas": {
"Addressable": {
Expand Down Expand Up @@ -2364,6 +2364,10 @@
"$ref": "ResourceRecord"
},
"type": "array"
},
"url": {
"description": "Cloud Run fully managed: not supported\n\nCloud Run on GKE: supported\n\nHolds the URL that will serve the traffic of the DomainMapping.\n+optional",
"type": "string"
}
},
"type": "object"
Expand Down
6 changes: 5 additions & 1 deletion discovery/run-v1alpha1.json
Expand Up @@ -3358,7 +3358,7 @@
}
}
},
"revision": "20200505",
"revision": "20200603",
"rootUrl": "https://run.googleapis.com/",
"schemas": {
"Addressable": {
Expand Down Expand Up @@ -4332,6 +4332,10 @@
"$ref": "ResourceRecord"
},
"type": "array"
},
"url": {
"description": "Cloud Run fully managed: not supported\n\nCloud Run on GKE: supported\n\nHolds the URL that will serve the traffic of the DomainMapping.\n+optional",
"type": "string"
}
},
"type": "object"
Expand Down
4 changes: 4 additions & 0 deletions src/apis/run/v1.ts
Expand Up @@ -452,6 +452,10 @@ export namespace run_v1 {
* The resource records required to configure this domain mapping. These records must be added to the domain's DNS configuration in order to serve the application via this domain mapping.
*/
resourceRecords?: Schema$ResourceRecord[];
/**
* Cloud Run fully managed: not supported Cloud Run on GKE: supported Holds the URL that will serve the traffic of the DomainMapping. +optional
*/
url?: string | null;
}
/**
* Cloud Run fully managed: not supported Cloud Run for Anthos: supported EnvFromSource represents the source of a set of ConfigMaps
Expand Down
4 changes: 4 additions & 0 deletions src/apis/run/v1alpha1.ts
Expand Up @@ -926,6 +926,10 @@ export namespace run_v1alpha1 {
* The resource records required to configure this domain mapping. These records must be added to the domain's DNS configuration in order to serve the application via this domain mapping.
*/
resourceRecords?: Schema$ResourceRecord[];
/**
* Cloud Run fully managed: not supported Cloud Run on GKE: supported Holds the URL that will serve the traffic of the DomainMapping. +optional
*/
url?: string | null;
}
/**
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.
Expand Down

0 comments on commit 5e55acf

Please sign in to comment.