blob: 9620cdd62d168be1a600d8124b998cf5cadf0a08 [file] [log] [blame]
Bu Sun Kim65020912020-05-20 12:08:20 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="apigee_v1.html">Apigee API</a> . <a href="apigee_v1.organizations.html">organizations</a> . <a href="apigee_v1.organizations.apis.html">apis</a> . <a href="apigee_v1.organizations.apis.deployments.html">deployments</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070081 <code><a href="#list">list(parent, x__xgafv=None)</a></code></p>
82<p class="firstline">Lists all deployments of an API proxy.</p>
83<h3>Method Details</h3>
84<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070085 <code class="details" id="close">close()</code>
86 <pre>Close httplib2 connections.</pre>
87</div>
88
89<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -070090 <code class="details" id="list">list(parent, x__xgafv=None)</code>
91 <pre>Lists all deployments of an API proxy.
92
93Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070094 parent: string, Required. Name of the API proxy for which to return deployment information in the following format: `organizations/{org}/apis/{api}` (required)
Bu Sun Kim65020912020-05-20 12:08:20 -070095 x__xgafv: string, V1 error format.
96 Allowed values
97 1 - v1 error format
98 2 - v2 error format
99
100Returns:
101 An object of the form:
102
103 {
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800104 &quot;deployments&quot;: [ # List of deployments.
105 {
106 &quot;apiProxy&quot;: &quot;A String&quot;, # API proxy.
107 &quot;deployStartTime&quot;: &quot;A String&quot;, # Time the API proxy was marked `deployed` in the control plane in millisconds since epoch.
108 &quot;environment&quot;: &quot;A String&quot;, # Environment.
109 &quot;errors&quot;: [ # Errors reported for this deployment. Populated only when state == ERROR. This field is not populated in List APIs.
110 { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
111 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
112 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
113 {
114 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800115 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800116 ],
117 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
118 },
119 ],
120 &quot;instances&quot;: [ # Status reported by each runtime instance. This field is not populated in List APIs.
121 { # The status of a deployment as reported by a single instance.
122 &quot;deployedRevisions&quot;: [ # Revisions currently deployed in MPs.
123 { # Revisions deployed in the MPs.
yoshi-code-botb6dc1b92021-03-02 11:49:08 -0800124 &quot;percentage&quot;: 42, # Percentage of MP replicas reporting this revision.
125 &quot;revision&quot;: &quot;A String&quot;, # API proxy revision reported as deployed.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800126 },
127 ],
yoshi-code-botb6dc1b92021-03-02 11:49:08 -0800128 &quot;deployedRoutes&quot;: [ # Current routes deployed in the ingress routing table. A route which is missing will appear in `missing_routes`.
129 { # Route deployed in the ingress routing table.
130 &quot;basepath&quot;: &quot;A String&quot;, # Base path in the routing table.
131 &quot;envgroup&quot;: &quot;A String&quot;, # Environment group where this route is installed.
132 &quot;environment&quot;: &quot;A String&quot;, # Destination environment. This will be empty if the route is not yet reported.
133 &quot;percentage&quot;: 42, # Percentage of ingress replicas reporting this route.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800134 },
135 ],
136 &quot;instance&quot;: &quot;A String&quot;, # ID of the instance reporting the status.
137 },
138 ],
yoshi-code-botb6dc1b92021-03-02 11:49:08 -0800139 &quot;pods&quot;: [ # Status reported by runtime pods. This field is not populated for List APIs. **Note**: **This field is deprecated**. Runtime versions 1.3 and above report instance level status rather than pod status.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800140 {
141 &quot;appVersion&quot;: &quot;A String&quot;, # Version of the application running in the pod.
142 &quot;deploymentStatus&quot;: &quot;A String&quot;, # Status of the deployment. Valid values include: - `deployed`: Successful. - `error` : Failed. - `pending` : Pod has not yet reported on the deployment.
143 &quot;deploymentStatusTime&quot;: &quot;A String&quot;, # Time the deployment status was reported in milliseconds since epoch.
144 &quot;deploymentTime&quot;: &quot;A String&quot;, # Time the proxy was deployed in milliseconds since epoch.
145 &quot;podName&quot;: &quot;A String&quot;, # Name of the pod which is reporting the status.
146 &quot;podStatus&quot;: &quot;A String&quot;, # Overall status of the pod (not this specific deployment). Valid values include: - `active`: Up to date. - `stale` : Recently out of date. Pods that have not reported status in a long time are excluded from the output.
147 &quot;podStatusTime&quot;: &quot;A String&quot;, # Time the pod status was reported in milliseconds since epoch.
148 &quot;statusCode&quot;: &quot;A String&quot;, # Code associated with the deployment status.
149 &quot;statusCodeDetails&quot;: &quot;A String&quot;, # Human-readable message associated with the status code.
150 },
151 ],
152 &quot;revision&quot;: &quot;A String&quot;, # API proxy revision.
yoshi-code-botb6dc1b92021-03-02 11:49:08 -0800153 &quot;routeConflicts&quot;: [ # Conflicts in the desired state routing configuration. The presence of conflicts does not cause the state to be `ERROR`, but it will mean that some of the deployment&#x27;s base paths are not routed to its environment. If the conflicts change, the state will transition to `PROGRESSING` until the latest configuration is rolled out to all instances. This field is not populated in List APIs.
154 { # Describes a routing conflict that may cause a deployment not to receive traffic at some base path.
155 &quot;conflictingDeployment&quot;: { # Tuple representing a base path and the deployment containing it. # Existing base path/deployment causing the conflict.
156 &quot;apiProxy&quot;: &quot;A String&quot;, # Name of the deployed API proxy revision containing the base path.
157 &quot;basepath&quot;: &quot;A String&quot;, # Base path receiving traffic.
158 &quot;environment&quot;: &quot;A String&quot;, # Name of the environment in which the proxy is deployed.
159 &quot;revision&quot;: &quot;A String&quot;, # Name of the deployed API proxy revision containing the base path.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800160 },
yoshi-code-botb6dc1b92021-03-02 11:49:08 -0800161 &quot;description&quot;: &quot;A String&quot;, # Human-readable description of this conflict.
162 &quot;environmentGroup&quot;: &quot;A String&quot;, # Name of the environment group in which this conflict exists.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800163 },
164 ],
yoshi-code-bot4c9ccb02021-05-27 00:38:02 -0700165 &quot;serviceAccount&quot;: &quot;A String&quot;, # The full resource name of Cloud IAM Service Account that this deployment is using, eg, `projects/-/serviceAccounts/{email}`.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800166 &quot;state&quot;: &quot;A String&quot;, # Current state of the deployment. This field is not populated in List APIs.
167 },
168 ],
169}</pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700170</div>
171
172</body></html>