1<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_v2beta.html">Google Cloud Deployment Manager API V2Beta Methods</a> . <a href="deploymentmanager_v2beta.types.html">types</a></h1> 76<h2>Instance Methods</h2> 77<p class="toc_element"> 78 <code><a href="#list">list(project, orderBy=None, maxResults=None, pageToken=None, filter=None)</a></code></p> 79<p class="firstline">Lists all resource types for Deployment Manager.</p> 80<p class="toc_element"> 81 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p> 82<p class="firstline">Retrieves the next page of results.</p> 83<h3>Method Details</h3> 84<div class="method"> 85 <code class="details" id="list">list(project, orderBy=None, maxResults=None, pageToken=None, filter=None)</code> 86 <pre>Lists all resource types for Deployment Manager. 87 88Args: 89 project: string, The project ID for this request. (required) 90 orderBy: string, Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name. 91 92You can also sort results in descending order based on the creation timestamp using orderBy="creationTimestamp desc". 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. 93 94Currently, only sorting by name or creationTimestamp desc is supported. 95 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) 96 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. 97 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 =, !=, >, or <. 98 99For example, if you are filtering Compute Engine instances, you can exclude instances named example-instance by specifying name != example-instance. 100 101You 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. 102 103To filter on multiple expressions, provide each separate expression within parentheses. For example, (scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake"). By default, each expression is an AND expression. However, you can include AND and OR expressions explicitly. For example, (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.automaticRestart = true). 104 105Returns: 106 An object of the form: 107 108 { # A response that returns all Types supported by Deployment Manager 109 "nextPageToken": "A String", # A token used to continue a truncated list request. 110 "types": [ # Output only. A list of resource types supported by Deployment Manager. 111 { # A resource type supported by Deployment Manager. 112 "name": "A String", # Name of the type. 113 "labels": [ # Map of labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression: [a-z]([-a-z0-9]*[a-z0-9])? Label values must be between 0 and 63 characters long and must conform to the regular expression ([a-z]([-a-z0-9]*[a-z0-9])?)? 114 { 115 "value": "A String", 116 "key": "A String", 117 }, 118 ], 119 "base": { # BaseType that describes a service-backed Type. # Base Type (configurable service) that backs this Type. 120 "credential": { # The credential used by Deployment Manager and TypeProvider. Only one of the options is permitted. # Credential used when interacting with this type. 121 "serviceAccount": { # Service Account used as a credential. # Service Account Credential, only used by Deployment. 122 "email": "A String", # The IAM service account email address like test@myproject.iam.gserviceaccount.com 123 }, 124 "basicAuth": { # Basic Auth used as a credential. # Basic Auth Credential, only used by TypeProvider. 125 "password": "A String", 126 "user": "A String", 127 }, 128 "useProjectDefault": True or False, # Specify to use the project default credential, only supported by Deployment. 129 }, 130 "descriptorUrl": "A String", # Descriptor Url for the this type. 131 "collectionOverrides": [ # Allows resource handling overrides for specific collections 132 { # CollectionOverride allows resource handling overrides for specific resources within a BaseType 133 "options": { # Options allows customized resource handling by Deployment Manager. # The options to apply to this resource-level override 134 "validationOptions": { # Options for how to validate and process properties on a resource. # Options for how to validate and process properties on a resource. 135 "undeclaredProperties": "A String", # Specify what to do with extra properties when executing a request. 136 "schemaValidation": "A String", # Customize how deployment manager will validate the resource against schema errors. 137 }, 138 "asyncOptions": [ # Options regarding how to thread async requests. 139 { # Async options that determine when a resource should finish. 140 "pollingOptions": { # Deployment manager will poll instances for this API resource setting a RUNNING state, and blocking until polling conditions tell whether the resource is completed or failed. 141 "targetLink": "A String", # JsonPath expression, after polling is completed, indicates where to fetch the resource. 142 "finishCondition": "A String", # JsonPath expression that determines if the request is completed. 143 "pollingLink": "A String", # JsonPath expression that evaluates to string, it indicates where to poll. 144 "failCondition": "A String", # JsonPath expression that determines if the request failed. 145 "diagnostics": [ # An array of diagnostics to be collected by Deployment Manager, these diagnostics will be displayed to the user. 146 { 147 "field": "A String", # JsonPath expression on the resource that if non empty, indicates that this field needs to be extracted as a diagnostic. 148 "level": "A String", # Level to record this diagnostic. 149 }, 150 ], 151 }, 152 "methodMatch": "A String", # Method regex where this policy will apply. 153 }, 154 ], 155 "inputMappings": [ # The mappings that apply for requests. 156 { # InputMapping creates a 'virtual' property that will be injected into the properties before sending the request to the underlying API. 157 "fieldName": "A String", # The name of the field that is going to be injected. 158 "location": "A String", # The location where this mapping applies. 159 "value": "A String", # A jsonPath expression to select an element. 160 "methodMatch": "A String", # Regex to evaluate on method to decide if input applies. 161 }, 162 ], 163 "virtualProperties": "A String", # Additional properties block described as a jsonSchema, these properties will never be part of the json payload, but they can be consumed by InputMappings, this must be a valid json schema draft-04. The properties specified here will be decouple in a different section. This schema will be merged to the schema validation, and properties here will be extracted From the payload and consumed explicitly by InputMappings. ex: field1: type: string field2: type: number 164 }, 165 "collection": "A String", # The collection that identifies this resource within its service. 166 }, 167 ], 168 "options": { # Options allows customized resource handling by Deployment Manager. # Options to apply when handling any resources in this service. 169 "validationOptions": { # Options for how to validate and process properties on a resource. # Options for how to validate and process properties on a resource. 170 "undeclaredProperties": "A String", # Specify what to do with extra properties when executing a request. 171 "schemaValidation": "A String", # Customize how deployment manager will validate the resource against schema errors. 172 }, 173 "asyncOptions": [ # Options regarding how to thread async requests. 174 { # Async options that determine when a resource should finish. 175 "pollingOptions": { # Deployment manager will poll instances for this API resource setting a RUNNING state, and blocking until polling conditions tell whether the resource is completed or failed. 176 "targetLink": "A String", # JsonPath expression, after polling is completed, indicates where to fetch the resource. 177 "finishCondition": "A String", # JsonPath expression that determines if the request is completed. 178 "pollingLink": "A String", # JsonPath expression that evaluates to string, it indicates where to poll. 179 "failCondition": "A String", # JsonPath expression that determines if the request failed. 180 "diagnostics": [ # An array of diagnostics to be collected by Deployment Manager, these diagnostics will be displayed to the user. 181 { 182 "field": "A String", # JsonPath expression on the resource that if non empty, indicates that this field needs to be extracted as a diagnostic. 183 "level": "A String", # Level to record this diagnostic. 184 }, 185 ], 186 }, 187 "methodMatch": "A String", # Method regex where this policy will apply. 188 }, 189 ], 190 "inputMappings": [ # The mappings that apply for requests. 191 { # InputMapping creates a 'virtual' property that will be injected into the properties before sending the request to the underlying API. 192 "fieldName": "A String", # The name of the field that is going to be injected. 193 "location": "A String", # The location where this mapping applies. 194 "value": "A String", # A jsonPath expression to select an element. 195 "methodMatch": "A String", # Regex to evaluate on method to decide if input applies. 196 }, 197 ], 198 "virtualProperties": "A String", # Additional properties block described as a jsonSchema, these properties will never be part of the json payload, but they can be consumed by InputMappings, this must be a valid json schema draft-04. The properties specified here will be decouple in a different section. This schema will be merged to the schema validation, and properties here will be extracted From the payload and consumed explicitly by InputMappings. ex: field1: type: string field2: type: number 199 }, 200 }, 201 "insertTime": "A String", # Output only. Creation timestamp in RFC3339 text format. 202 "operation": { # An Operation resource, used to manage asynchronous API requests. (== resource_for v1.globalOperations ==) (== resource_for beta.globalOperations ==) (== resource_for v1.regionOperations ==) (== resource_for beta.regionOperations ==) (== resource_for v1.zoneOperations ==) (== resource_for beta.zoneOperations ==) # Output only. The Operation that most recently ran, or is currently running, on this type. 203 "targetId": "A String", # [Output Only] The unique target ID, which identifies a specific incarnation of the target resource. 204 "clientOperationId": "A String", # [Output Only] The value of `requestId` if you provided it in the request. Not present otherwise. 205 "creationTimestamp": "A String", # [Deprecated] This field is deprecated. 206 "id": "A String", # [Output Only] The unique identifier for the resource. This identifier is defined by the server. 207 "zone": "A String", # [Output Only] The URL of the zone where the operation resides. Only available when performing per-zone operations. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body. 208 "insertTime": "A String", # [Output Only] The time that this operation was requested. This value is in RFC3339 text format. 209 "operationType": "A String", # [Output Only] The type of operation, such as insert, update, or delete, and so on. 210 "httpErrorMessage": "A String", # [Output Only] If the operation fails, this field contains the HTTP error message that was returned, such as NOT FOUND. 211 "progress": 42, # [Output Only] An optional progress indicator that ranges from 0 to 100. There is no requirement that this be linear or support any granularity of operations. This should not be used to guess when the operation will be complete. This number should monotonically increase as the operation progresses. 212 "httpErrorStatusCode": 42, # [Output Only] If the operation fails, this field contains the HTTP error status code that was returned. For example, a 404 means the resource was not found. 213 "statusMessage": "A String", # [Output Only] An optional textual description of the current status of the operation. 214 "status": "A String", # [Output Only] The status of the operation, which can be one of the following: PENDING, RUNNING, or DONE. 215 "description": "A String", # [Output Only] A textual description of the operation, which is set when the operation is created. 216 "warnings": [ # [Output Only] If warning messages are generated during processing of the operation, this field will be populated. 217 { 218 "message": "A String", # [Output Only] A human-readable description of the warning code. 219 "code": "A String", # [Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response. 220 "data": [ # [Output Only] Metadata about this warning in key: value format. For example: 221 # "data": [ { "key": "scope", "value": "zones/us-east1-d" } 222 { 223 "value": "A String", # [Output Only] A warning data value corresponding to the key. 224 "key": "A String", # [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). 225 }, 226 ], 227 }, 228 ], 229 "user": "A String", # [Output Only] User who requested the operation, for example: user@example.com. 230 "startTime": "A String", # [Output Only] The time that this operation was started by the server. This value is in RFC3339 text format. 231 "kind": "deploymentmanager#operation", # [Output Only] Type of the resource. Always compute#operation for Operation resources. 232 "name": "A String", # [Output Only] Name of the resource. 233 "region": "A String", # [Output Only] The URL of the region where the operation resides. Only available when performing regional operations. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body. 234 "error": { # [Output Only] If errors are generated during processing of the operation, this field will be populated. 235 "errors": [ # [Output Only] The array of errors encountered while processing this operation. 236 { 237 "message": "A String", # [Output Only] An optional, human-readable error message. 238 "code": "A String", # [Output Only] The error type identifier for this error. 239 "location": "A String", # [Output Only] Indicates the field in the request that caused the error. This property is optional. 240 }, 241 ], 242 }, 243 "endTime": "A String", # [Output Only] The time that this operation was completed. This value is in RFC3339 text format. 244 "selfLink": "A String", # [Output Only] Server-defined URL for the resource. 245 "targetLink": "A String", # [Output Only] The URL of the resource that the operation modifies. For operations related to creating a snapshot, this points to the persistent disk that the snapshot was created from. 246 }, 247 "id": "A String", 248 "selfLink": "A String", # Output only. Server defined URL for the resource. 249 "description": "A String", # An optional textual description of the resource; provided by the client when the resource is created. 250 }, 251 ], 252 }</pre> 253</div> 254 255<div class="method"> 256 <code class="details" id="list_next">list_next(previous_request, previous_response)</code> 257 <pre>Retrieves the next page of results. 258 259Args: 260 previous_request: The request for the previous page. (required) 261 previous_response: The response from the request for the previous page. (required) 262 263Returns: 264 A request object that you can call 'execute()' on to request the next 265 page. Returns None if there are no more items in the collection. 266 </pre> 267</div> 268 269</body></html>