blob: ec08b1ccf234b1e85d72bf0ac7d0042b07903a81 [file] [log] [blame]
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -04001<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="deploymentmanager_alpha.html">Google Cloud Deployment Manager Alpha API</a> . <a href="deploymentmanager_alpha.resources.html">resources</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">
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -040081 <code><a href="#get">get(project, deployment, resource)</a></code></p>
82<p class="firstline">Gets information about a single resource.</p>
83<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070084 <code><a href="#list">list(project, deployment, filter=None, maxResults=None, orderBy=None, returnPartialSuccess=None, pageToken=None)</a></code></p>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -040085<p class="firstline">Lists all resources in a given deployment.</p>
86<p class="toc_element">
87 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
88<p class="firstline">Retrieves the next page of results.</p>
89<h3>Method Details</h3>
90<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070091 <code class="details" id="close">close()</code>
92 <pre>Close httplib2 connections.</pre>
93</div>
94
95<div class="method">
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -040096 <code class="details" id="get">get(project, deployment, resource)</code>
97 <pre>Gets information about a single resource.
98
99Args:
100 project: string, The project ID for this request. (required)
101 deployment: string, The name of the deployment for this request. (required)
102 resource: string, The name of the resource for this request. (required)
103
104Returns:
105 An object of the form:
106
107 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700108 &quot;url&quot;: &quot;A String&quot;, # Output only. The URL of the actual resource.
109 &quot;warnings&quot;: [ # Output only. If warning messages are generated during processing of this resource, this field will be populated.
110 {
111 &quot;data&quot;: [ # [Output Only] Metadata about this warning in key: value format. For example:
112 # &quot;data&quot;: [ { &quot;key&quot;: &quot;scope&quot;, &quot;value&quot;: &quot;zones/us-east1-d&quot; }
113 {
114 &quot;value&quot;: &quot;A String&quot;, # [Output Only] A warning data value corresponding to the key.
115 &quot;key&quot;: &quot;A String&quot;, # [Output Only] A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
116 },
117 ],
118 &quot;code&quot;: &quot;A String&quot;, # [Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
119 &quot;message&quot;: &quot;A String&quot;, # [Output Only] A human-readable description of the warning code.
Bu Sun Kim65020912020-05-20 12:08:20 -0700120 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700121 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700122 &quot;runtimePolicies&quot;: [ # Output only. In case this is an action, it will show the runtimePolicies on which this action will run in the deployment
123 &quot;A String&quot;,
124 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700125 &quot;id&quot;: &quot;A String&quot;,
126 &quot;manifest&quot;: &quot;A String&quot;, # Output only. URL of the manifest representing the current configuration of this resource.
127 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. Update timestamp in RFC3339 text format.
128 &quot;insertTime&quot;: &quot;A String&quot;, # Output only. Creation timestamp in RFC3339 text format.
129 &quot;name&quot;: &quot;A String&quot;, # Output only. The name of the resource as it appears in the YAML config.
Bu Sun Kim65020912020-05-20 12:08:20 -0700130 &quot;update&quot;: { # Output only. If Deployment Manager is currently updating or previewing an update to this resource, the updated configuration appears here.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700131 &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the resource.
132 &quot;runtimePolicies&quot;: [ # Output only. In case this is an action, it will show the runtimePolicies that this action will have after updating the deployment.
133 &quot;A String&quot;,
134 ],
135 &quot;manifest&quot;: &quot;A String&quot;, # Output only. URL of the manifest representing the update configuration of this resource.
136 &quot;properties&quot;: &quot;A String&quot;, # Output only. The set of updated properties for this resource, before references are expanded. Returned as serialized YAML.
137 &quot;intent&quot;: &quot;A String&quot;, # Output only. The intent of the resource: `PREVIEW`, `UPDATE`, or `CANCEL`.
138 &quot;finalProperties&quot;: &quot;A String&quot;, # Output only. The expanded properties of the resource with reference values expanded. Returned as serialized YAML.
Bu Sun Kim65020912020-05-20 12:08:20 -0700139 &quot;accessControl&quot;: { # The access controls set on the resource. # The Access Control Policy to set on this resource after updating the resource itself.
140 &quot;gcpIamPolicy&quot;: &quot;A String&quot;, # The GCP IAM Policy to set on the resource.
141 },
142 &quot;credential&quot;: { # The credential used by Deployment Manager and TypeProvider. Only one of the options is permitted. # Output only. The credential that will be used creating/updating this resource.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700143 &quot;useProjectDefault&quot;: True or False, # Specify to use the project default credential, only supported by Deployment.
Bu Sun Kim65020912020-05-20 12:08:20 -0700144 &quot;basicAuth&quot;: { # Basic Auth used as a credential. # Basic Auth Credential, only used by TypeProvider.
145 &quot;password&quot;: &quot;A String&quot;,
146 &quot;user&quot;: &quot;A String&quot;,
147 },
148 &quot;serviceAccount&quot;: { # Service Account used as a credential. # Service Account Credential, only used by Deployment.
149 &quot;email&quot;: &quot;A String&quot;, # The IAM service account email address like test@myproject.iam.gserviceaccount.com
150 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700151 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700152 &quot;warnings&quot;: [ # Output only. If warning messages are generated during processing of this resource, this field will be populated.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400153 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700154 &quot;message&quot;: &quot;A String&quot;, # [Output Only] A human-readable description of the warning code.
Bu Sun Kim65020912020-05-20 12:08:20 -0700155 &quot;data&quot;: [ # [Output Only] Metadata about this warning in key: value format. For example:
156 # &quot;data&quot;: [ { &quot;key&quot;: &quot;scope&quot;, &quot;value&quot;: &quot;zones/us-east1-d&quot; }
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400157 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700158 &quot;key&quot;: &quot;A String&quot;, # [Output Only] A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
159 &quot;value&quot;: &quot;A String&quot;, # [Output Only] A warning data value corresponding to the key.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400160 },
161 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700162 &quot;code&quot;: &quot;A String&quot;, # [Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400163 },
164 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700165 &quot;error&quot;: { # Output only. If errors are generated during update of the resource, this field will be populated.
166 &quot;errors&quot;: [ # [Output Only] The array of errors encountered while processing this operation.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400167 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700168 &quot;location&quot;: &quot;A String&quot;, # [Output Only] Indicates the field in the request that caused the error. This property is optional.
169 &quot;code&quot;: &quot;A String&quot;, # [Output Only] The error type identifier for this error.
170 &quot;message&quot;: &quot;A String&quot;, # [Output Only] An optional, human-readable error message.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400171 },
172 ],
173 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700174 },
175 &quot;properties&quot;: &quot;A String&quot;, # Output only. The current properties of the resource before any references have been filled in. Returned as serialized YAML.
176 &quot;type&quot;: &quot;A String&quot;, # Output only. The type of the resource, for example `compute.v1.instance`, or `cloudfunctions.v1beta1.function`.
177 &quot;finalProperties&quot;: &quot;A String&quot;, # Output only. The evaluated properties of the resource with references expanded. Returned as serialized YAML.
178 &quot;accessControl&quot;: { # The access controls set on the resource. # The Access Control Policy set on this resource.
179 &quot;gcpIamPolicy&quot;: &quot;A String&quot;, # The GCP IAM Policy to set on the resource.
180 },
181 &quot;lastUsedCredential&quot;: { # The credential used by Deployment Manager and TypeProvider. Only one of the options is permitted. # Output only. The last used credential that successfully created/updated the resource.
182 &quot;useProjectDefault&quot;: True or False, # Specify to use the project default credential, only supported by Deployment.
183 &quot;basicAuth&quot;: { # Basic Auth used as a credential. # Basic Auth Credential, only used by TypeProvider.
184 &quot;password&quot;: &quot;A String&quot;,
185 &quot;user&quot;: &quot;A String&quot;,
186 },
187 &quot;serviceAccount&quot;: { # Service Account used as a credential. # Service Account Credential, only used by Deployment.
188 &quot;email&quot;: &quot;A String&quot;, # The IAM service account email address like test@myproject.iam.gserviceaccount.com
189 },
190 },
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400191 }</pre>
192</div>
193
194<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700195 <code class="details" id="list">list(project, deployment, filter=None, maxResults=None, orderBy=None, returnPartialSuccess=None, pageToken=None)</code>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400196 <pre>Lists all resources in a given deployment.
197
198Args:
199 project: string, The project ID for this request. (required)
200 deployment: string, The name of the deployment for this request. (required)
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700201 filter: string, A filter expression that filters resources listed in the response. The expression must specify the field name, a comparison operator, and the value that you want to use for filtering. The value must be a string, a number, or a boolean. The comparison operator must be either `=`, `!=`, `&gt;`, or `&lt;`.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400202
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700203For example, if you are filtering Compute Engine instances, you can exclude instances named `example-instance` by specifying `name != example-instance`.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400204
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700205You can also filter nested fields. For example, you could specify `scheduling.automaticRestart = false` to include instances only if they are not scheduled for automatic restarts. You can use filtering on nested fields to filter based on resource labels.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400206
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700207To filter on multiple expressions, provide each separate expression within parentheses. For example: ``` (scheduling.automaticRestart = true) (cpuPlatform = &quot;Intel Skylake&quot;) ``` By default, each expression is an `AND` expression. However, you can include `AND` and `OR` expressions explicitly. For example: ``` (cpuPlatform = &quot;Intel Skylake&quot;) OR (cpuPlatform = &quot;Intel Broadwell&quot;) AND (scheduling.automaticRestart = true) ```
208 maxResults: integer, The maximum number of results per page that should be returned. If the number of available results is larger than `maxResults`, Compute Engine returns a `nextPageToken` that can be used to get the next page of results in subsequent list requests. Acceptable values are `0` to `500`, inclusive. (Default: `500`)
Bu Sun Kim65020912020-05-20 12:08:20 -0700209 orderBy: string, Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name.
210
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700211You can also sort results in descending order based on the creation timestamp using `orderBy=&quot;creationTimestamp desc&quot;`. This sorts results based on the `creationTimestamp` field in reverse chronological order (newest result first). Use this to sort resources like operations so that the newest operation is returned first.
Bu Sun Kim65020912020-05-20 12:08:20 -0700212
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700213Currently, only sorting by `name` or `creationTimestamp desc` is supported.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700214 returnPartialSuccess: boolean, Opt-in for partial success behavior which provides partial results in case of failure. The default value is false and the logic is the same as today.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700215 pageToken: string, Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400216
217Returns:
218 An object of the form:
219
220 { # A response containing a partial list of resources and a page token used to build the next request if the request has been truncated.
Bu Sun Kim65020912020-05-20 12:08:20 -0700221 &quot;nextPageToken&quot;: &quot;A String&quot;, # A token used to continue a truncated list request.
222 &quot;resources&quot;: [ # Resources contained in this list response.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400223 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700224 &quot;url&quot;: &quot;A String&quot;, # Output only. The URL of the actual resource.
225 &quot;warnings&quot;: [ # Output only. If warning messages are generated during processing of this resource, this field will be populated.
226 {
227 &quot;data&quot;: [ # [Output Only] Metadata about this warning in key: value format. For example:
228 # &quot;data&quot;: [ { &quot;key&quot;: &quot;scope&quot;, &quot;value&quot;: &quot;zones/us-east1-d&quot; }
229 {
230 &quot;value&quot;: &quot;A String&quot;, # [Output Only] A warning data value corresponding to the key.
231 &quot;key&quot;: &quot;A String&quot;, # [Output Only] A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
232 },
233 ],
234 &quot;code&quot;: &quot;A String&quot;, # [Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
235 &quot;message&quot;: &quot;A String&quot;, # [Output Only] A human-readable description of the warning code.
Bu Sun Kim65020912020-05-20 12:08:20 -0700236 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700237 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700238 &quot;runtimePolicies&quot;: [ # Output only. In case this is an action, it will show the runtimePolicies on which this action will run in the deployment
239 &quot;A String&quot;,
240 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700241 &quot;id&quot;: &quot;A String&quot;,
242 &quot;manifest&quot;: &quot;A String&quot;, # Output only. URL of the manifest representing the current configuration of this resource.
243 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. Update timestamp in RFC3339 text format.
244 &quot;insertTime&quot;: &quot;A String&quot;, # Output only. Creation timestamp in RFC3339 text format.
245 &quot;name&quot;: &quot;A String&quot;, # Output only. The name of the resource as it appears in the YAML config.
Bu Sun Kim65020912020-05-20 12:08:20 -0700246 &quot;update&quot;: { # Output only. If Deployment Manager is currently updating or previewing an update to this resource, the updated configuration appears here.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700247 &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the resource.
248 &quot;runtimePolicies&quot;: [ # Output only. In case this is an action, it will show the runtimePolicies that this action will have after updating the deployment.
249 &quot;A String&quot;,
250 ],
251 &quot;manifest&quot;: &quot;A String&quot;, # Output only. URL of the manifest representing the update configuration of this resource.
252 &quot;properties&quot;: &quot;A String&quot;, # Output only. The set of updated properties for this resource, before references are expanded. Returned as serialized YAML.
253 &quot;intent&quot;: &quot;A String&quot;, # Output only. The intent of the resource: `PREVIEW`, `UPDATE`, or `CANCEL`.
254 &quot;finalProperties&quot;: &quot;A String&quot;, # Output only. The expanded properties of the resource with reference values expanded. Returned as serialized YAML.
Bu Sun Kim65020912020-05-20 12:08:20 -0700255 &quot;accessControl&quot;: { # The access controls set on the resource. # The Access Control Policy to set on this resource after updating the resource itself.
256 &quot;gcpIamPolicy&quot;: &quot;A String&quot;, # The GCP IAM Policy to set on the resource.
257 },
258 &quot;credential&quot;: { # The credential used by Deployment Manager and TypeProvider. Only one of the options is permitted. # Output only. The credential that will be used creating/updating this resource.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700259 &quot;useProjectDefault&quot;: True or False, # Specify to use the project default credential, only supported by Deployment.
Bu Sun Kim65020912020-05-20 12:08:20 -0700260 &quot;basicAuth&quot;: { # Basic Auth used as a credential. # Basic Auth Credential, only used by TypeProvider.
261 &quot;password&quot;: &quot;A String&quot;,
262 &quot;user&quot;: &quot;A String&quot;,
263 },
264 &quot;serviceAccount&quot;: { # Service Account used as a credential. # Service Account Credential, only used by Deployment.
265 &quot;email&quot;: &quot;A String&quot;, # The IAM service account email address like test@myproject.iam.gserviceaccount.com
266 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700267 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700268 &quot;warnings&quot;: [ # Output only. If warning messages are generated during processing of this resource, this field will be populated.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400269 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700270 &quot;message&quot;: &quot;A String&quot;, # [Output Only] A human-readable description of the warning code.
Bu Sun Kim65020912020-05-20 12:08:20 -0700271 &quot;data&quot;: [ # [Output Only] Metadata about this warning in key: value format. For example:
272 # &quot;data&quot;: [ { &quot;key&quot;: &quot;scope&quot;, &quot;value&quot;: &quot;zones/us-east1-d&quot; }
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400273 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700274 &quot;key&quot;: &quot;A String&quot;, # [Output Only] A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
275 &quot;value&quot;: &quot;A String&quot;, # [Output Only] A warning data value corresponding to the key.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400276 },
277 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700278 &quot;code&quot;: &quot;A String&quot;, # [Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400279 },
280 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700281 &quot;error&quot;: { # Output only. If errors are generated during update of the resource, this field will be populated.
282 &quot;errors&quot;: [ # [Output Only] The array of errors encountered while processing this operation.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400283 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700284 &quot;location&quot;: &quot;A String&quot;, # [Output Only] Indicates the field in the request that caused the error. This property is optional.
285 &quot;code&quot;: &quot;A String&quot;, # [Output Only] The error type identifier for this error.
286 &quot;message&quot;: &quot;A String&quot;, # [Output Only] An optional, human-readable error message.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400287 },
288 ],
289 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700290 },
291 &quot;properties&quot;: &quot;A String&quot;, # Output only. The current properties of the resource before any references have been filled in. Returned as serialized YAML.
292 &quot;type&quot;: &quot;A String&quot;, # Output only. The type of the resource, for example `compute.v1.instance`, or `cloudfunctions.v1beta1.function`.
293 &quot;finalProperties&quot;: &quot;A String&quot;, # Output only. The evaluated properties of the resource with references expanded. Returned as serialized YAML.
294 &quot;accessControl&quot;: { # The access controls set on the resource. # The Access Control Policy set on this resource.
295 &quot;gcpIamPolicy&quot;: &quot;A String&quot;, # The GCP IAM Policy to set on the resource.
296 },
297 &quot;lastUsedCredential&quot;: { # The credential used by Deployment Manager and TypeProvider. Only one of the options is permitted. # Output only. The last used credential that successfully created/updated the resource.
298 &quot;useProjectDefault&quot;: True or False, # Specify to use the project default credential, only supported by Deployment.
299 &quot;basicAuth&quot;: { # Basic Auth used as a credential. # Basic Auth Credential, only used by TypeProvider.
300 &quot;password&quot;: &quot;A String&quot;,
301 &quot;user&quot;: &quot;A String&quot;,
302 },
303 &quot;serviceAccount&quot;: { # Service Account used as a credential. # Service Account Credential, only used by Deployment.
304 &quot;email&quot;: &quot;A String&quot;, # The IAM service account email address like test@myproject.iam.gserviceaccount.com
305 },
306 },
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400307 },
308 ],
309 }</pre>
310</div>
311
312<div class="method">
313 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
314 <pre>Retrieves the next page of results.
315
316Args:
317 previous_request: The request for the previous page. (required)
318 previous_response: The response from the request for the previous page. (required)
319
320Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700321 A request object that you can call &#x27;execute()&#x27; on to request the next
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400322 page. Returns None if there are no more items in the collection.
323 </pre>
324</div>
325
326</body></html>