You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "AppHubService represents the App Hub Service.",
1664
+
"id": "AppHubService",
1665
+
"properties": {
1666
+
"apphubService": {
1667
+
"description": "Required. Output only. Immutable. The name of the App Hub Service. Format: `projects/{project}/locations/{location}/applications/{application}/services/{service}`.",
1668
+
"readOnly": true,
1669
+
"type": "string"
1670
+
},
1671
+
"criticality": {
1672
+
"description": "Output only. The criticality of the App Hub Service.",
1673
+
"readOnly": true,
1674
+
"type": "string"
1675
+
},
1676
+
"environment": {
1677
+
"description": "Output only. The environment of the App Hub Service.",
1678
+
"readOnly": true,
1679
+
"type": "string"
1680
+
}
1681
+
},
1682
+
"type": "object"
1683
+
},
1662
1684
"AppHubWorkload": {
1663
1685
"description": "AppHubWorkload represents the App Hub Workload.",
1664
1686
"id": "AppHubWorkload",
@@ -2298,6 +2320,17 @@
2298
2320
},
2299
2321
"type": "object"
2300
2322
},
2323
+
"GoogleCloudRun": {
2324
+
"description": "GoogleCloudRun represents the Cloud Run runtime.",
2325
+
"id": "GoogleCloudRun",
2326
+
"properties": {
2327
+
"serviceUri": {
2328
+
"description": "Required. Immutable. The name of the Cloud Run service. Format: `projects/{project}/locations/{location}/services/{service}`.",
2329
+
"type": "string"
2330
+
}
2331
+
},
2332
+
"type": "object"
2333
+
},
2301
2334
"HttpBody": {
2302
2335
"description": "Message that represents an arbitrary HTTP body. It should only be used for payload formats that can't be represented as JSON, such as raw binary or an HTML page. This message can be used both in streaming and non-streaming API methods in the request as well as the response. It can be used as a top-level request field, which is convenient if one wants to extract parameters from either the URL or HTTP template into the request fields and also want access to the raw HTTP body. Example: message GetResourceRequest { // A unique request id. string request_id = 1; // The raw HTTP body is bound to this field. google.api.HttpBody http_body = 2; } service ResourceService { rpc GetResource(GetResourceRequest) returns (google.api.HttpBody); rpc UpdateResource(google.api.HttpBody) returns (google.protobuf.Empty); } Example with streaming methods: service CaldavService { rpc GetCalendar(stream google.api.HttpBody) returns (stream google.api.HttpBody); rpc UpdateCalendar(stream google.api.HttpBody) returns (stream google.api.HttpBody); } Use of this type only changes how the request and response bodies are handled, all other features will continue to work unchanged.",
2303
2336
"id": "HttpBody",
@@ -2873,6 +2906,11 @@
2873
2906
"description": "RuntimeConfig represents the runtimes where the application is deployed.",
2874
2907
"id": "RuntimeConfig",
2875
2908
"properties": {
2909
+
"appHubService": {
2910
+
"$ref": "AppHubService",
2911
+
"description": "Output only. App Hub Service.",
2912
+
"readOnly": true
2913
+
},
2876
2914
"appHubWorkload": {
2877
2915
"$ref": "AppHubWorkload",
2878
2916
"description": "Output only. App Hub Workload.",
@@ -2883,6 +2921,11 @@
2883
2921
"description": "Output only. Google Kubernetes Engine runtime.",
2884
2922
"readOnly": true
2885
2923
},
2924
+
"googleCloudRun": {
2925
+
"$ref": "GoogleCloudRun",
2926
+
"description": "Output only. Cloud Run runtime.",
2927
+
"readOnly": true
2928
+
},
2886
2929
"state": {
2887
2930
"description": "Output only. The state of the Runtime.",
* Required. Output only. Immutable. The name of the App Hub Service. Format: `projects/{project\}/locations/{location\}/applications/{application\}/services/{service\}`.
170
+
*/
171
+
apphubService?: string|null;
172
+
/**
173
+
* Output only. The criticality of the App Hub Service.
174
+
*/
175
+
criticality?: string|null;
176
+
/**
177
+
* Output only. The environment of the App Hub Service.
* GoogleCloudRun represents the Cloud Run runtime.
697
+
*/
698
+
exportinterfaceSchema$GoogleCloudRun{
699
+
/**
700
+
* Required. Immutable. The name of the Cloud Run service. Format: `projects/{project\}/locations/{location\}/services/{service\}`.
701
+
*/
702
+
serviceUri?: string|null;
703
+
}
678
704
/**
679
705
* Message that represents an arbitrary HTTP body. It should only be used for payload formats that can't be represented as JSON, such as raw binary or an HTML page. This message can be used both in streaming and non-streaming API methods in the request as well as the response. It can be used as a top-level request field, which is convenient if one wants to extract parameters from either the URL or HTTP template into the request fields and also want access to the raw HTTP body. Example: message GetResourceRequest { // A unique request id. string request_id = 1; // The raw HTTP body is bound to this field. google.api.HttpBody http_body = 2; \} service ResourceService { rpc GetResource(GetResourceRequest) returns (google.api.HttpBody); rpc UpdateResource(google.api.HttpBody) returns (google.protobuf.Empty); \} Example with streaming methods: service CaldavService { rpc GetCalendar(stream google.api.HttpBody) returns (stream google.api.HttpBody); rpc UpdateCalendar(stream google.api.HttpBody) returns (stream google.api.HttpBody); \} Use of this type only changes how the request and response bodies are handled, all other features will continue to work unchanged.
0 commit comments