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="compute_alpha.html">Compute Engine API</a> . <a href="compute_alpha.nodeTemplates.html">nodeTemplates</a></h1> 76<h2>Instance Methods</h2> 77<p class="toc_element"> 78 <code><a href="#aggregatedList">aggregatedList(project, orderBy=None, maxResults=None, pageToken=None, filter=None)</a></code></p> 79<p class="firstline">Retrieves an aggregated list of node templates.</p> 80<p class="toc_element"> 81 <code><a href="#aggregatedList_next">aggregatedList_next(previous_request, previous_response)</a></code></p> 82<p class="firstline">Retrieves the next page of results.</p> 83<p class="toc_element"> 84 <code><a href="#delete">delete(project, region, nodeTemplate, requestId=None)</a></code></p> 85<p class="firstline">Deletes the specified NodeTemplate resource.</p> 86<p class="toc_element"> 87 <code><a href="#get">get(project, region, nodeTemplate)</a></code></p> 88<p class="firstline">Returns the specified node template. Gets a list of available node templates by making a list() request.</p> 89<p class="toc_element"> 90 <code><a href="#getIamPolicy">getIamPolicy(project, region, resource)</a></code></p> 91<p class="firstline">Gets the access control policy for a resource. May be empty if no such policy or resource exists.</p> 92<p class="toc_element"> 93 <code><a href="#insert">insert(project, region, body, requestId=None)</a></code></p> 94<p class="firstline">Creates a NodeTemplate resource in the specified project using the data included in the request.</p> 95<p class="toc_element"> 96 <code><a href="#list">list(project, region, orderBy=None, maxResults=None, pageToken=None, filter=None)</a></code></p> 97<p class="firstline">Retrieves a list of node templates available to the specified project.</p> 98<p class="toc_element"> 99 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p> 100<p class="firstline">Retrieves the next page of results.</p> 101<p class="toc_element"> 102 <code><a href="#setIamPolicy">setIamPolicy(project, region, resource, body)</a></code></p> 103<p class="firstline">Sets the access control policy on the specified resource. Replaces any existing policy.</p> 104<p class="toc_element"> 105 <code><a href="#testIamPermissions">testIamPermissions(project, region, resource, body)</a></code></p> 106<p class="firstline">Returns permissions that a caller has on the specified resource.</p> 107<h3>Method Details</h3> 108<div class="method"> 109 <code class="details" id="aggregatedList">aggregatedList(project, orderBy=None, maxResults=None, pageToken=None, filter=None)</code> 110 <pre>Retrieves an aggregated list of node templates. 111 112Args: 113 project: string, Project ID for this request. (required) 114 orderBy: string, Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name. 115 116You 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. 117 118Currently, only sorting by name or creationTimestamp desc is supported. 119 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) 120 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. 121 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 <. 122 123For example, if you are filtering Compute Engine instances, you can exclude instances named example-instance by specifying name != example-instance. 124 125You 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. 126 127To 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). 128 129Returns: 130 An object of the form: 131 132 { 133 "nextPageToken": "A String", # [Output Only] This token allows you to get the next page of results for list requests. If the number of results is larger than maxResults, use the nextPageToken as a value for the query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results. 134 "kind": "compute#nodeTemplateAggregatedList", # [Output Only] Type of resource.Always compute#nodeTemplateAggregatedList for aggregated lists of node templates. 135 "items": { # A list of NodeTemplatesScopedList resources. 136 "a_key": { # [Output Only] Name of the scope containing this set of node templates. 137 "nodeTemplates": [ # [Output Only] A list of node templates contained in this scope. 138 { # Represent a sole-tenant Node Template resource. 139 # 140 # You can use a template to define properties for nodes in a node group. For more information, read Creating node groups and instances. (== resource_for beta.nodeTemplates ==) (== resource_for v1.nodeTemplates ==) NextID: 16 141 "status": "A String", # [Output Only] The status of the node template. One of the following values: CREATING, READY, and DELETING. 142 "serverBinding": { # Binding properties for the physical server. 143 "type": "A String", 144 }, 145 "kind": "compute#nodeTemplate", # [Output Only] The type of the resource. Always compute#nodeTemplate for node templates. 146 "nodeType": "A String", # The node type to use for nodes group that are created from this template. 147 "description": "A String", # An optional description of this resource. Provide this property when you create the resource. 148 "nodeTypeFlexibility": { # The flexible properties of the desired node type. Node groups that use this node template will create nodes of a type that matches these properties. 149 # 150 # This field is mutually exclusive with the node_type property; you can only define one or the other, but not both. 151 "memory": "A String", 152 "cpus": "A String", 153 "localSsd": "A String", 154 }, 155 "region": "A String", # [Output Only] The name of the region where the node template resides, such as us-central1. 156 "disks": [ 157 { 158 "diskSizeGb": "A String", # Specifies the size of the disk in base-2 GB. 159 "diskCount": "A String", # Specifies the number of such disks. 160 "diskType": "A String", # Specifies the desired disk type on the node. This disk type must be a local storage type (e.g.: local-ssd). Note that for nodeTemplates, this should be the name of the disk type and not its URL. 161 }, 162 ], 163 "nodeAffinityLabels": { # Labels to use for node affinity, which will be used in instance scheduling. 164 "a_key": "A String", 165 }, 166 "statusMessage": "A String", # [Output Only] An optional, human-readable explanation of the status. 167 "selfLinkWithId": "A String", # [Output Only] Server-defined URL for this resource with the resource id. 168 "creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format. 169 "id": "A String", # [Output Only] The unique identifier for the resource. This identifier is defined by the server. 170 "selfLink": "A String", # [Output Only] Server-defined URL for the resource. 171 "name": "A String", # The name of the resource, provided by the client when initially creating the resource. The resource name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. 172 }, 173 ], 174 "warning": { # [Output Only] An informational warning that appears when the node templates list is empty. 175 "message": "A String", # [Output Only] A human-readable description of the warning code. 176 "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. 177 "data": [ # [Output Only] Metadata about this warning in key: value format. For example: 178 # "data": [ { "key": "scope", "value": "zones/us-east1-d" } 179 { 180 "value": "A String", # [Output Only] A warning data value corresponding to the key. 181 "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). 182 }, 183 ], 184 }, 185 }, 186 }, 187 "warning": { # [Output Only] Informational warning message. 188 "message": "A String", # [Output Only] A human-readable description of the warning code. 189 "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. 190 "data": [ # [Output Only] Metadata about this warning in key: value format. For example: 191 # "data": [ { "key": "scope", "value": "zones/us-east1-d" } 192 { 193 "value": "A String", # [Output Only] A warning data value corresponding to the key. 194 "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). 195 }, 196 ], 197 }, 198 "id": "A String", # [Output Only] Unique identifier for the resource; defined by the server. 199 "selfLink": "A String", # [Output Only] Server-defined URL for this resource. 200 }</pre> 201</div> 202 203<div class="method"> 204 <code class="details" id="aggregatedList_next">aggregatedList_next(previous_request, previous_response)</code> 205 <pre>Retrieves the next page of results. 206 207Args: 208 previous_request: The request for the previous page. (required) 209 previous_response: The response from the request for the previous page. (required) 210 211Returns: 212 A request object that you can call 'execute()' on to request the next 213 page. Returns None if there are no more items in the collection. 214 </pre> 215</div> 216 217<div class="method"> 218 <code class="details" id="delete">delete(project, region, nodeTemplate, requestId=None)</code> 219 <pre>Deletes the specified NodeTemplate resource. 220 221Args: 222 project: string, Project ID for this request. (required) 223 region: string, The name of the region for this request. (required) 224 nodeTemplate: string, Name of the NodeTemplate resource to delete. (required) 225 requestId: string, An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. 226 227For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. 228 229The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). 230 231Returns: 232 An object of the form: 233 234 { # Represents an Operation resource. 235 # 236 # You can use an operation resource to manage asynchronous API requests. For more information, read Handling API responses. 237 # 238 # Operations can be global, regional or zonal. 239 # - For global operations, use the globalOperations resource. 240 # - For regional operations, use the regionOperations resource. 241 # - For zonal operations, use the zonalOperations resource. 242 # 243 # For more information, read Global, Regional, and Zonal Resources. (== resource_for v1.globalOperations ==) (== resource_for beta.globalOperations ==) (== resource_for v1.regionOperations ==) (== resource_for beta.regionOperations ==) (== resource_for v1.zoneOperations ==) (== resource_for beta.zoneOperations ==) 244 "targetId": "A String", # [Output Only] The unique target ID, which identifies a specific incarnation of the target resource. 245 "clientOperationId": "A String", # [Output Only] The value of `requestId` if you provided it in the request. Not present otherwise. 246 "creationTimestamp": "A String", # [Deprecated] This field is deprecated. 247 "id": "A String", # [Output Only] The unique identifier for the resource. This identifier is defined by the server. 248 "zone": "A String", # [Output Only] The URL of the zone where the operation resides. Only applicable when performing per-zone operations. 249 "insertTime": "A String", # [Output Only] The time that this operation was requested. This value is in RFC3339 text format. 250 "operationType": "A String", # [Output Only] The type of operation, such as insert, update, or delete, and so on. 251 "httpErrorMessage": "A String", # [Output Only] If the operation fails, this field contains the HTTP error message that was returned, such as NOT FOUND. 252 "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. 253 "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. 254 "statusMessage": "A String", # [Output Only] An optional textual description of the current status of the operation. 255 "status": "A String", # [Output Only] The status of the operation, which can be one of the following: PENDING, RUNNING, or DONE. 256 "description": "A String", # [Output Only] A textual description of the operation, which is set when the operation is created. 257 "warnings": [ # [Output Only] If warning messages are generated during processing of the operation, this field will be populated. 258 { 259 "message": "A String", # [Output Only] A human-readable description of the warning code. 260 "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. 261 "data": [ # [Output Only] Metadata about this warning in key: value format. For example: 262 # "data": [ { "key": "scope", "value": "zones/us-east1-d" } 263 { 264 "value": "A String", # [Output Only] A warning data value corresponding to the key. 265 "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). 266 }, 267 ], 268 }, 269 ], 270 "selfLinkWithId": "A String", # [Output Only] Server-defined URL for this resource with the resource id. 271 "user": "A String", # [Output Only] User who requested the operation, for example: user@example.com. 272 "startTime": "A String", # [Output Only] The time that this operation was started by the server. This value is in RFC3339 text format. 273 "kind": "compute#operation", # [Output Only] Type of the resource. Always compute#operation for Operation resources. 274 "name": "A String", # [Output Only] Name of the resource. 275 "region": "A String", # [Output Only] The URL of the region where the operation resides. Only applicable when performing regional operations. 276 "error": { # [Output Only] If errors are generated during processing of the operation, this field will be populated. 277 "errors": [ # [Output Only] The array of errors encountered while processing this operation. 278 { 279 "message": "A String", # [Output Only] An optional, human-readable error message. 280 "code": "A String", # [Output Only] The error type identifier for this error. 281 "location": "A String", # [Output Only] Indicates the field in the request that caused the error. This property is optional. 282 }, 283 ], 284 }, 285 "endTime": "A String", # [Output Only] The time that this operation was completed. This value is in RFC3339 text format. 286 "selfLink": "A String", # [Output Only] Server-defined URL for the resource. 287 "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. 288 }</pre> 289</div> 290 291<div class="method"> 292 <code class="details" id="get">get(project, region, nodeTemplate)</code> 293 <pre>Returns the specified node template. Gets a list of available node templates by making a list() request. 294 295Args: 296 project: string, Project ID for this request. (required) 297 region: string, The name of the region for this request. (required) 298 nodeTemplate: string, Name of the node template to return. (required) 299 300Returns: 301 An object of the form: 302 303 { # Represent a sole-tenant Node Template resource. 304 # 305 # You can use a template to define properties for nodes in a node group. For more information, read Creating node groups and instances. (== resource_for beta.nodeTemplates ==) (== resource_for v1.nodeTemplates ==) NextID: 16 306 "status": "A String", # [Output Only] The status of the node template. One of the following values: CREATING, READY, and DELETING. 307 "serverBinding": { # Binding properties for the physical server. 308 "type": "A String", 309 }, 310 "kind": "compute#nodeTemplate", # [Output Only] The type of the resource. Always compute#nodeTemplate for node templates. 311 "nodeType": "A String", # The node type to use for nodes group that are created from this template. 312 "description": "A String", # An optional description of this resource. Provide this property when you create the resource. 313 "nodeTypeFlexibility": { # The flexible properties of the desired node type. Node groups that use this node template will create nodes of a type that matches these properties. 314 # 315 # This field is mutually exclusive with the node_type property; you can only define one or the other, but not both. 316 "memory": "A String", 317 "cpus": "A String", 318 "localSsd": "A String", 319 }, 320 "region": "A String", # [Output Only] The name of the region where the node template resides, such as us-central1. 321 "disks": [ 322 { 323 "diskSizeGb": "A String", # Specifies the size of the disk in base-2 GB. 324 "diskCount": "A String", # Specifies the number of such disks. 325 "diskType": "A String", # Specifies the desired disk type on the node. This disk type must be a local storage type (e.g.: local-ssd). Note that for nodeTemplates, this should be the name of the disk type and not its URL. 326 }, 327 ], 328 "nodeAffinityLabels": { # Labels to use for node affinity, which will be used in instance scheduling. 329 "a_key": "A String", 330 }, 331 "statusMessage": "A String", # [Output Only] An optional, human-readable explanation of the status. 332 "selfLinkWithId": "A String", # [Output Only] Server-defined URL for this resource with the resource id. 333 "creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format. 334 "id": "A String", # [Output Only] The unique identifier for the resource. This identifier is defined by the server. 335 "selfLink": "A String", # [Output Only] Server-defined URL for the resource. 336 "name": "A String", # The name of the resource, provided by the client when initially creating the resource. The resource name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. 337 }</pre> 338</div> 339 340<div class="method"> 341 <code class="details" id="getIamPolicy">getIamPolicy(project, region, resource)</code> 342 <pre>Gets the access control policy for a resource. May be empty if no such policy or resource exists. 343 344Args: 345 project: string, Project ID for this request. (required) 346 region: string, The name of the region for this request. (required) 347 resource: string, Name or id of the resource for this request. (required) 348 349Returns: 350 An object of the form: 351 352 { # Defines an Identity and Access Management (IAM) policy. It is used to specify access control policies for Cloud Platform resources. 353 # 354 # 355 # 356 # A `Policy` consists of a list of `bindings`. A `binding` binds a list of `members` to a `role`, where the members can be user accounts, Google groups, Google domains, and service accounts. A `role` is a named list of permissions defined by IAM. 357 # 358 # **JSON Example** 359 # 360 # { "bindings": [ { "role": "roles/owner", "members": [ "user:mike@example.com", "group:admins@example.com", "domain:google.com", "serviceAccount:my-other-app@appspot.gserviceaccount.com" ] }, { "role": "roles/viewer", "members": ["user:sean@example.com"] } ] } 361 # 362 # **YAML Example** 363 # 364 # bindings: - members: - user:mike@example.com - group:admins@example.com - domain:google.com - serviceAccount:my-other-app@appspot.gserviceaccount.com role: roles/owner - members: - user:sean@example.com role: roles/viewer 365 # 366 # 367 # 368 # For a description of IAM and its features, see the [IAM developer's guide](https://cloud.google.com/iam/docs). 369 "auditConfigs": [ # Specifies cloud audit logging configuration for this policy. 370 { # Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. 371 # 372 # If there are AuditConfigs for both `allServices` and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. 373 # 374 # Example Policy with multiple AuditConfigs: 375 # 376 # { "audit_configs": [ { "service": "allServices" "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:foo@gmail.com" ] }, { "log_type": "DATA_WRITE", }, { "log_type": "ADMIN_READ", } ] }, { "service": "fooservice.googleapis.com" "audit_log_configs": [ { "log_type": "DATA_READ", }, { "log_type": "DATA_WRITE", "exempted_members": [ "user:bar@gmail.com" ] } ] } ] } 377 # 378 # For fooservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts foo@gmail.com from DATA_READ logging, and bar@gmail.com from DATA_WRITE logging. 379 "exemptedMembers": [ 380 "A String", 381 ], 382 "auditLogConfigs": [ # The configuration for logging of each type of permission. 383 { # Provides the configuration for logging a type of permissions. Example: 384 # 385 # { "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:foo@gmail.com" ] }, { "log_type": "DATA_WRITE", } ] } 386 # 387 # This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting foo@gmail.com from DATA_READ logging. 388 "exemptedMembers": [ # Specifies the identities that do not cause logging for this type of permission. Follows the same format of [Binding.members][]. 389 "A String", 390 ], 391 "logType": "A String", # The log type that this config enables. 392 }, 393 ], 394 "service": "A String", # Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services. 395 }, 396 ], 397 "rules": [ # If more than one rule is specified, the rules are applied in the following manner: - All matching LOG rules are always applied. - If any DENY/DENY_WITH_LOG rule matches, permission is denied. Logging will be applied if one or more matching rule requires logging. - Otherwise, if any ALLOW/ALLOW_WITH_LOG rule matches, permission is granted. Logging will be applied if one or more matching rule requires logging. - Otherwise, if no rule applies, permission is denied. 398 { # A rule to be applied in a Policy. 399 "logConfigs": [ # The config returned to callers of tech.iam.IAM.CheckPolicy for any entries that match the LOG action. 400 { # Specifies what kind of log the caller must write 401 "counter": { # Increment a streamz counter with the specified metric and field names. # Counter options. 402 # 403 # Metric names should start with a '/', generally be lowercase-only, and end in "_count". Field names should not contain an initial slash. The actual exported metric names will have "/iam/policy" prepended. 404 # 405 # Field names correspond to IAM request parameters and field values are their respective values. 406 # 407 # Supported field names: - "authority", which is "[token]" if IAMContext.token is present, otherwise the value of IAMContext.authority_selector if present, and otherwise a representation of IAMContext.principal; or - "iam_principal", a representation of IAMContext.principal even if a token or authority selector is present; or - "" (empty string), resulting in a counter with no fields. 408 # 409 # Examples: counter { metric: "/debug_access_count" field: "iam_principal" } ==> increment counter /iam/policy/backend_debug_access_count {iam_principal=[value of IAMContext.principal]} 410 # 411 # At this time we do not support multiple field names (though this may be supported in the future). 412 "field": "A String", # The field value to attribute. 413 "metric": "A String", # The metric to update. 414 }, 415 "dataAccess": { # Write a Data Access (Gin) log # Data access options. 416 "logMode": "A String", # Whether Gin logging should happen in a fail-closed manner at the caller. This is relevant only in the LocalIAM implementation, for now. 417 }, 418 "cloudAudit": { # Write a Cloud Audit log # Cloud audit options. 419 "logName": "A String", # The log_name to populate in the Cloud Audit Record. 420 "authorizationLoggingOptions": { # Authorization-related information used by Cloud Audit Logging. # Information used by the Cloud Audit Logging pipeline. 421 "permissionType": "A String", # The type of the permission that was checked. 422 }, 423 }, 424 }, 425 ], 426 "notIns": [ # If one or more 'not_in' clauses are specified, the rule matches if the PRINCIPAL/AUTHORITY_SELECTOR is in none of the entries. 427 "A String", 428 ], 429 "ins": [ # If one or more 'in' clauses are specified, the rule matches if the PRINCIPAL/AUTHORITY_SELECTOR is in at least one of these entries. 430 "A String", 431 ], 432 "action": "A String", # Required 433 "permissions": [ # A permission is a string of form '..' (e.g., 'storage.buckets.list'). A value of '*' matches all permissions, and a verb part of '*' (e.g., 'storage.buckets.*') matches all verbs. 434 "A String", 435 ], 436 "conditions": [ # Additional restrictions that must be met. All conditions must pass for the rule to match. 437 { # A condition to be met. 438 "iam": "A String", # Trusted attributes supplied by the IAM system. 439 "sys": "A String", # Trusted attributes supplied by any service that owns resources and uses the IAM system for access control. 440 "values": [ # The objects of the condition. 441 "A String", 442 ], 443 "svc": "A String", # Trusted attributes discharged by the service. 444 "op": "A String", # An operator to apply the subject with. 445 }, 446 ], 447 "description": "A String", # Human-readable description of the rule. 448 }, 449 ], 450 "version": 42, # Deprecated. 451 "etag": "A String", # `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. 452 # 453 # If no `etag` is provided in the call to `setIamPolicy`, then the existing policy is overwritten blindly. 454 "bindings": [ # Associates a list of `members` to a `role`. `bindings` with no members will result in an error. 455 { # Associates `members` with a `role`. 456 "role": "A String", # Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. 457 "members": [ # Specifies the identities requesting access for a Cloud Platform resource. `members` can have the following values: 458 # 459 # * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. 460 # 461 # * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. 462 # 463 # * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@gmail.com` . 464 # 465 # 466 # 467 # * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app@appspot.gserviceaccount.com`. 468 # 469 # * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. 470 # 471 # 472 # 473 # * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. 474 "A String", 475 ], 476 "condition": { # Represents an expression text. Example: # The condition that is associated with this binding. NOTE: An unsatisfied condition will not allow user access via current binding. Different bindings, including their conditions, are examined independently. 477 # 478 # title: "User account presence" description: "Determines whether the request has a user account" expression: "size(request.user) > 0" 479 "title": "A String", # An optional title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. 480 "expression": "A String", # Textual representation of an expression in Common Expression Language syntax. 481 # 482 # The application context of the containing message determines which well-known feature set of CEL is supported. 483 "description": "A String", # An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. 484 "location": "A String", # An optional string indicating the location of the expression for error reporting, e.g. a file name and a position in the file. 485 }, 486 }, 487 ], 488 "iamOwned": True or False, 489 }</pre> 490</div> 491 492<div class="method"> 493 <code class="details" id="insert">insert(project, region, body, requestId=None)</code> 494 <pre>Creates a NodeTemplate resource in the specified project using the data included in the request. 495 496Args: 497 project: string, Project ID for this request. (required) 498 region: string, The name of the region for this request. (required) 499 body: object, The request body. (required) 500 The object takes the form of: 501 502{ # Represent a sole-tenant Node Template resource. 503 # 504 # You can use a template to define properties for nodes in a node group. For more information, read Creating node groups and instances. (== resource_for beta.nodeTemplates ==) (== resource_for v1.nodeTemplates ==) NextID: 16 505 "status": "A String", # [Output Only] The status of the node template. One of the following values: CREATING, READY, and DELETING. 506 "serverBinding": { # Binding properties for the physical server. 507 "type": "A String", 508 }, 509 "kind": "compute#nodeTemplate", # [Output Only] The type of the resource. Always compute#nodeTemplate for node templates. 510 "nodeType": "A String", # The node type to use for nodes group that are created from this template. 511 "description": "A String", # An optional description of this resource. Provide this property when you create the resource. 512 "nodeTypeFlexibility": { # The flexible properties of the desired node type. Node groups that use this node template will create nodes of a type that matches these properties. 513 # 514 # This field is mutually exclusive with the node_type property; you can only define one or the other, but not both. 515 "memory": "A String", 516 "cpus": "A String", 517 "localSsd": "A String", 518 }, 519 "region": "A String", # [Output Only] The name of the region where the node template resides, such as us-central1. 520 "disks": [ 521 { 522 "diskSizeGb": "A String", # Specifies the size of the disk in base-2 GB. 523 "diskCount": "A String", # Specifies the number of such disks. 524 "diskType": "A String", # Specifies the desired disk type on the node. This disk type must be a local storage type (e.g.: local-ssd). Note that for nodeTemplates, this should be the name of the disk type and not its URL. 525 }, 526 ], 527 "nodeAffinityLabels": { # Labels to use for node affinity, which will be used in instance scheduling. 528 "a_key": "A String", 529 }, 530 "statusMessage": "A String", # [Output Only] An optional, human-readable explanation of the status. 531 "selfLinkWithId": "A String", # [Output Only] Server-defined URL for this resource with the resource id. 532 "creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format. 533 "id": "A String", # [Output Only] The unique identifier for the resource. This identifier is defined by the server. 534 "selfLink": "A String", # [Output Only] Server-defined URL for the resource. 535 "name": "A String", # The name of the resource, provided by the client when initially creating the resource. The resource name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. 536 } 537 538 requestId: string, An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. 539 540For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. 541 542The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). 543 544Returns: 545 An object of the form: 546 547 { # Represents an Operation resource. 548 # 549 # You can use an operation resource to manage asynchronous API requests. For more information, read Handling API responses. 550 # 551 # Operations can be global, regional or zonal. 552 # - For global operations, use the globalOperations resource. 553 # - For regional operations, use the regionOperations resource. 554 # - For zonal operations, use the zonalOperations resource. 555 # 556 # For more information, read Global, Regional, and Zonal Resources. (== resource_for v1.globalOperations ==) (== resource_for beta.globalOperations ==) (== resource_for v1.regionOperations ==) (== resource_for beta.regionOperations ==) (== resource_for v1.zoneOperations ==) (== resource_for beta.zoneOperations ==) 557 "targetId": "A String", # [Output Only] The unique target ID, which identifies a specific incarnation of the target resource. 558 "clientOperationId": "A String", # [Output Only] The value of `requestId` if you provided it in the request. Not present otherwise. 559 "creationTimestamp": "A String", # [Deprecated] This field is deprecated. 560 "id": "A String", # [Output Only] The unique identifier for the resource. This identifier is defined by the server. 561 "zone": "A String", # [Output Only] The URL of the zone where the operation resides. Only applicable when performing per-zone operations. 562 "insertTime": "A String", # [Output Only] The time that this operation was requested. This value is in RFC3339 text format. 563 "operationType": "A String", # [Output Only] The type of operation, such as insert, update, or delete, and so on. 564 "httpErrorMessage": "A String", # [Output Only] If the operation fails, this field contains the HTTP error message that was returned, such as NOT FOUND. 565 "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. 566 "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. 567 "statusMessage": "A String", # [Output Only] An optional textual description of the current status of the operation. 568 "status": "A String", # [Output Only] The status of the operation, which can be one of the following: PENDING, RUNNING, or DONE. 569 "description": "A String", # [Output Only] A textual description of the operation, which is set when the operation is created. 570 "warnings": [ # [Output Only] If warning messages are generated during processing of the operation, this field will be populated. 571 { 572 "message": "A String", # [Output Only] A human-readable description of the warning code. 573 "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. 574 "data": [ # [Output Only] Metadata about this warning in key: value format. For example: 575 # "data": [ { "key": "scope", "value": "zones/us-east1-d" } 576 { 577 "value": "A String", # [Output Only] A warning data value corresponding to the key. 578 "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). 579 }, 580 ], 581 }, 582 ], 583 "selfLinkWithId": "A String", # [Output Only] Server-defined URL for this resource with the resource id. 584 "user": "A String", # [Output Only] User who requested the operation, for example: user@example.com. 585 "startTime": "A String", # [Output Only] The time that this operation was started by the server. This value is in RFC3339 text format. 586 "kind": "compute#operation", # [Output Only] Type of the resource. Always compute#operation for Operation resources. 587 "name": "A String", # [Output Only] Name of the resource. 588 "region": "A String", # [Output Only] The URL of the region where the operation resides. Only applicable when performing regional operations. 589 "error": { # [Output Only] If errors are generated during processing of the operation, this field will be populated. 590 "errors": [ # [Output Only] The array of errors encountered while processing this operation. 591 { 592 "message": "A String", # [Output Only] An optional, human-readable error message. 593 "code": "A String", # [Output Only] The error type identifier for this error. 594 "location": "A String", # [Output Only] Indicates the field in the request that caused the error. This property is optional. 595 }, 596 ], 597 }, 598 "endTime": "A String", # [Output Only] The time that this operation was completed. This value is in RFC3339 text format. 599 "selfLink": "A String", # [Output Only] Server-defined URL for the resource. 600 "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. 601 }</pre> 602</div> 603 604<div class="method"> 605 <code class="details" id="list">list(project, region, orderBy=None, maxResults=None, pageToken=None, filter=None)</code> 606 <pre>Retrieves a list of node templates available to the specified project. 607 608Args: 609 project: string, Project ID for this request. (required) 610 region: string, The name of the region for this request. (required) 611 orderBy: string, Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name. 612 613You 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. 614 615Currently, only sorting by name or creationTimestamp desc is supported. 616 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) 617 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. 618 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 <. 619 620For example, if you are filtering Compute Engine instances, you can exclude instances named example-instance by specifying name != example-instance. 621 622You 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. 623 624To 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). 625 626Returns: 627 An object of the form: 628 629 { # Contains a list of node templates. 630 "nextPageToken": "A String", # [Output Only] This token allows you to get the next page of results for list requests. If the number of results is larger than maxResults, use the nextPageToken as a value for the query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results. 631 "kind": "compute#nodeTemplateList", # [Output Only] Type of resource.Always compute#nodeTemplateList for lists of node templates. 632 "items": [ # A list of NodeTemplate resources. 633 { # Represent a sole-tenant Node Template resource. 634 # 635 # You can use a template to define properties for nodes in a node group. For more information, read Creating node groups and instances. (== resource_for beta.nodeTemplates ==) (== resource_for v1.nodeTemplates ==) NextID: 16 636 "status": "A String", # [Output Only] The status of the node template. One of the following values: CREATING, READY, and DELETING. 637 "serverBinding": { # Binding properties for the physical server. 638 "type": "A String", 639 }, 640 "kind": "compute#nodeTemplate", # [Output Only] The type of the resource. Always compute#nodeTemplate for node templates. 641 "nodeType": "A String", # The node type to use for nodes group that are created from this template. 642 "description": "A String", # An optional description of this resource. Provide this property when you create the resource. 643 "nodeTypeFlexibility": { # The flexible properties of the desired node type. Node groups that use this node template will create nodes of a type that matches these properties. 644 # 645 # This field is mutually exclusive with the node_type property; you can only define one or the other, but not both. 646 "memory": "A String", 647 "cpus": "A String", 648 "localSsd": "A String", 649 }, 650 "region": "A String", # [Output Only] The name of the region where the node template resides, such as us-central1. 651 "disks": [ 652 { 653 "diskSizeGb": "A String", # Specifies the size of the disk in base-2 GB. 654 "diskCount": "A String", # Specifies the number of such disks. 655 "diskType": "A String", # Specifies the desired disk type on the node. This disk type must be a local storage type (e.g.: local-ssd). Note that for nodeTemplates, this should be the name of the disk type and not its URL. 656 }, 657 ], 658 "nodeAffinityLabels": { # Labels to use for node affinity, which will be used in instance scheduling. 659 "a_key": "A String", 660 }, 661 "statusMessage": "A String", # [Output Only] An optional, human-readable explanation of the status. 662 "selfLinkWithId": "A String", # [Output Only] Server-defined URL for this resource with the resource id. 663 "creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format. 664 "id": "A String", # [Output Only] The unique identifier for the resource. This identifier is defined by the server. 665 "selfLink": "A String", # [Output Only] Server-defined URL for the resource. 666 "name": "A String", # The name of the resource, provided by the client when initially creating the resource. The resource name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. 667 }, 668 ], 669 "warning": { # [Output Only] Informational warning message. 670 "message": "A String", # [Output Only] A human-readable description of the warning code. 671 "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. 672 "data": [ # [Output Only] Metadata about this warning in key: value format. For example: 673 # "data": [ { "key": "scope", "value": "zones/us-east1-d" } 674 { 675 "value": "A String", # [Output Only] A warning data value corresponding to the key. 676 "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). 677 }, 678 ], 679 }, 680 "id": "A String", # [Output Only] Unique identifier for the resource; defined by the server. 681 "selfLink": "A String", # [Output Only] Server-defined URL for this resource. 682 }</pre> 683</div> 684 685<div class="method"> 686 <code class="details" id="list_next">list_next(previous_request, previous_response)</code> 687 <pre>Retrieves the next page of results. 688 689Args: 690 previous_request: The request for the previous page. (required) 691 previous_response: The response from the request for the previous page. (required) 692 693Returns: 694 A request object that you can call 'execute()' on to request the next 695 page. Returns None if there are no more items in the collection. 696 </pre> 697</div> 698 699<div class="method"> 700 <code class="details" id="setIamPolicy">setIamPolicy(project, region, resource, body)</code> 701 <pre>Sets the access control policy on the specified resource. Replaces any existing policy. 702 703Args: 704 project: string, Project ID for this request. (required) 705 region: string, The name of the region for this request. (required) 706 resource: string, Name or id of the resource for this request. (required) 707 body: object, The request body. (required) 708 The object takes the form of: 709 710{ 711 "policy": { # Defines an Identity and Access Management (IAM) policy. It is used to specify access control policies for Cloud Platform resources. # REQUIRED: The complete policy to be applied to the 'resource'. The size of the policy is limited to a few 10s of KB. An empty policy is in general a valid policy but certain services (like Projects) might reject them. 712 # 713 # 714 # 715 # A `Policy` consists of a list of `bindings`. A `binding` binds a list of `members` to a `role`, where the members can be user accounts, Google groups, Google domains, and service accounts. A `role` is a named list of permissions defined by IAM. 716 # 717 # **JSON Example** 718 # 719 # { "bindings": [ { "role": "roles/owner", "members": [ "user:mike@example.com", "group:admins@example.com", "domain:google.com", "serviceAccount:my-other-app@appspot.gserviceaccount.com" ] }, { "role": "roles/viewer", "members": ["user:sean@example.com"] } ] } 720 # 721 # **YAML Example** 722 # 723 # bindings: - members: - user:mike@example.com - group:admins@example.com - domain:google.com - serviceAccount:my-other-app@appspot.gserviceaccount.com role: roles/owner - members: - user:sean@example.com role: roles/viewer 724 # 725 # 726 # 727 # For a description of IAM and its features, see the [IAM developer's guide](https://cloud.google.com/iam/docs). 728 "auditConfigs": [ # Specifies cloud audit logging configuration for this policy. 729 { # Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. 730 # 731 # If there are AuditConfigs for both `allServices` and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. 732 # 733 # Example Policy with multiple AuditConfigs: 734 # 735 # { "audit_configs": [ { "service": "allServices" "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:foo@gmail.com" ] }, { "log_type": "DATA_WRITE", }, { "log_type": "ADMIN_READ", } ] }, { "service": "fooservice.googleapis.com" "audit_log_configs": [ { "log_type": "DATA_READ", }, { "log_type": "DATA_WRITE", "exempted_members": [ "user:bar@gmail.com" ] } ] } ] } 736 # 737 # For fooservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts foo@gmail.com from DATA_READ logging, and bar@gmail.com from DATA_WRITE logging. 738 "exemptedMembers": [ 739 "A String", 740 ], 741 "auditLogConfigs": [ # The configuration for logging of each type of permission. 742 { # Provides the configuration for logging a type of permissions. Example: 743 # 744 # { "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:foo@gmail.com" ] }, { "log_type": "DATA_WRITE", } ] } 745 # 746 # This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting foo@gmail.com from DATA_READ logging. 747 "exemptedMembers": [ # Specifies the identities that do not cause logging for this type of permission. Follows the same format of [Binding.members][]. 748 "A String", 749 ], 750 "logType": "A String", # The log type that this config enables. 751 }, 752 ], 753 "service": "A String", # Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services. 754 }, 755 ], 756 "rules": [ # If more than one rule is specified, the rules are applied in the following manner: - All matching LOG rules are always applied. - If any DENY/DENY_WITH_LOG rule matches, permission is denied. Logging will be applied if one or more matching rule requires logging. - Otherwise, if any ALLOW/ALLOW_WITH_LOG rule matches, permission is granted. Logging will be applied if one or more matching rule requires logging. - Otherwise, if no rule applies, permission is denied. 757 { # A rule to be applied in a Policy. 758 "logConfigs": [ # The config returned to callers of tech.iam.IAM.CheckPolicy for any entries that match the LOG action. 759 { # Specifies what kind of log the caller must write 760 "counter": { # Increment a streamz counter with the specified metric and field names. # Counter options. 761 # 762 # Metric names should start with a '/', generally be lowercase-only, and end in "_count". Field names should not contain an initial slash. The actual exported metric names will have "/iam/policy" prepended. 763 # 764 # Field names correspond to IAM request parameters and field values are their respective values. 765 # 766 # Supported field names: - "authority", which is "[token]" if IAMContext.token is present, otherwise the value of IAMContext.authority_selector if present, and otherwise a representation of IAMContext.principal; or - "iam_principal", a representation of IAMContext.principal even if a token or authority selector is present; or - "" (empty string), resulting in a counter with no fields. 767 # 768 # Examples: counter { metric: "/debug_access_count" field: "iam_principal" } ==> increment counter /iam/policy/backend_debug_access_count {iam_principal=[value of IAMContext.principal]} 769 # 770 # At this time we do not support multiple field names (though this may be supported in the future). 771 "field": "A String", # The field value to attribute. 772 "metric": "A String", # The metric to update. 773 }, 774 "dataAccess": { # Write a Data Access (Gin) log # Data access options. 775 "logMode": "A String", # Whether Gin logging should happen in a fail-closed manner at the caller. This is relevant only in the LocalIAM implementation, for now. 776 }, 777 "cloudAudit": { # Write a Cloud Audit log # Cloud audit options. 778 "logName": "A String", # The log_name to populate in the Cloud Audit Record. 779 "authorizationLoggingOptions": { # Authorization-related information used by Cloud Audit Logging. # Information used by the Cloud Audit Logging pipeline. 780 "permissionType": "A String", # The type of the permission that was checked. 781 }, 782 }, 783 }, 784 ], 785 "notIns": [ # If one or more 'not_in' clauses are specified, the rule matches if the PRINCIPAL/AUTHORITY_SELECTOR is in none of the entries. 786 "A String", 787 ], 788 "ins": [ # If one or more 'in' clauses are specified, the rule matches if the PRINCIPAL/AUTHORITY_SELECTOR is in at least one of these entries. 789 "A String", 790 ], 791 "action": "A String", # Required 792 "permissions": [ # A permission is a string of form '..' (e.g., 'storage.buckets.list'). A value of '*' matches all permissions, and a verb part of '*' (e.g., 'storage.buckets.*') matches all verbs. 793 "A String", 794 ], 795 "conditions": [ # Additional restrictions that must be met. All conditions must pass for the rule to match. 796 { # A condition to be met. 797 "iam": "A String", # Trusted attributes supplied by the IAM system. 798 "sys": "A String", # Trusted attributes supplied by any service that owns resources and uses the IAM system for access control. 799 "values": [ # The objects of the condition. 800 "A String", 801 ], 802 "svc": "A String", # Trusted attributes discharged by the service. 803 "op": "A String", # An operator to apply the subject with. 804 }, 805 ], 806 "description": "A String", # Human-readable description of the rule. 807 }, 808 ], 809 "version": 42, # Deprecated. 810 "etag": "A String", # `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. 811 # 812 # If no `etag` is provided in the call to `setIamPolicy`, then the existing policy is overwritten blindly. 813 "bindings": [ # Associates a list of `members` to a `role`. `bindings` with no members will result in an error. 814 { # Associates `members` with a `role`. 815 "role": "A String", # Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. 816 "members": [ # Specifies the identities requesting access for a Cloud Platform resource. `members` can have the following values: 817 # 818 # * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. 819 # 820 # * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. 821 # 822 # * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@gmail.com` . 823 # 824 # 825 # 826 # * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app@appspot.gserviceaccount.com`. 827 # 828 # * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. 829 # 830 # 831 # 832 # * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. 833 "A String", 834 ], 835 "condition": { # Represents an expression text. Example: # The condition that is associated with this binding. NOTE: An unsatisfied condition will not allow user access via current binding. Different bindings, including their conditions, are examined independently. 836 # 837 # title: "User account presence" description: "Determines whether the request has a user account" expression: "size(request.user) > 0" 838 "title": "A String", # An optional title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. 839 "expression": "A String", # Textual representation of an expression in Common Expression Language syntax. 840 # 841 # The application context of the containing message determines which well-known feature set of CEL is supported. 842 "description": "A String", # An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. 843 "location": "A String", # An optional string indicating the location of the expression for error reporting, e.g. a file name and a position in the file. 844 }, 845 }, 846 ], 847 "iamOwned": True or False, 848 }, 849 "bindings": [ # Flatten Policy to create a backwacd compatible wire-format. Deprecated. Use 'policy' to specify bindings. 850 { # Associates `members` with a `role`. 851 "role": "A String", # Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. 852 "members": [ # Specifies the identities requesting access for a Cloud Platform resource. `members` can have the following values: 853 # 854 # * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. 855 # 856 # * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. 857 # 858 # * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@gmail.com` . 859 # 860 # 861 # 862 # * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app@appspot.gserviceaccount.com`. 863 # 864 # * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. 865 # 866 # 867 # 868 # * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. 869 "A String", 870 ], 871 "condition": { # Represents an expression text. Example: # The condition that is associated with this binding. NOTE: An unsatisfied condition will not allow user access via current binding. Different bindings, including their conditions, are examined independently. 872 # 873 # title: "User account presence" description: "Determines whether the request has a user account" expression: "size(request.user) > 0" 874 "title": "A String", # An optional title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. 875 "expression": "A String", # Textual representation of an expression in Common Expression Language syntax. 876 # 877 # The application context of the containing message determines which well-known feature set of CEL is supported. 878 "description": "A String", # An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. 879 "location": "A String", # An optional string indicating the location of the expression for error reporting, e.g. a file name and a position in the file. 880 }, 881 }, 882 ], 883 "etag": "A String", # Flatten Policy to create a backward compatible wire-format. Deprecated. Use 'policy' to specify the etag. 884 } 885 886 887Returns: 888 An object of the form: 889 890 { # Defines an Identity and Access Management (IAM) policy. It is used to specify access control policies for Cloud Platform resources. 891 # 892 # 893 # 894 # A `Policy` consists of a list of `bindings`. A `binding` binds a list of `members` to a `role`, where the members can be user accounts, Google groups, Google domains, and service accounts. A `role` is a named list of permissions defined by IAM. 895 # 896 # **JSON Example** 897 # 898 # { "bindings": [ { "role": "roles/owner", "members": [ "user:mike@example.com", "group:admins@example.com", "domain:google.com", "serviceAccount:my-other-app@appspot.gserviceaccount.com" ] }, { "role": "roles/viewer", "members": ["user:sean@example.com"] } ] } 899 # 900 # **YAML Example** 901 # 902 # bindings: - members: - user:mike@example.com - group:admins@example.com - domain:google.com - serviceAccount:my-other-app@appspot.gserviceaccount.com role: roles/owner - members: - user:sean@example.com role: roles/viewer 903 # 904 # 905 # 906 # For a description of IAM and its features, see the [IAM developer's guide](https://cloud.google.com/iam/docs). 907 "auditConfigs": [ # Specifies cloud audit logging configuration for this policy. 908 { # Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. 909 # 910 # If there are AuditConfigs for both `allServices` and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. 911 # 912 # Example Policy with multiple AuditConfigs: 913 # 914 # { "audit_configs": [ { "service": "allServices" "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:foo@gmail.com" ] }, { "log_type": "DATA_WRITE", }, { "log_type": "ADMIN_READ", } ] }, { "service": "fooservice.googleapis.com" "audit_log_configs": [ { "log_type": "DATA_READ", }, { "log_type": "DATA_WRITE", "exempted_members": [ "user:bar@gmail.com" ] } ] } ] } 915 # 916 # For fooservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts foo@gmail.com from DATA_READ logging, and bar@gmail.com from DATA_WRITE logging. 917 "exemptedMembers": [ 918 "A String", 919 ], 920 "auditLogConfigs": [ # The configuration for logging of each type of permission. 921 { # Provides the configuration for logging a type of permissions. Example: 922 # 923 # { "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:foo@gmail.com" ] }, { "log_type": "DATA_WRITE", } ] } 924 # 925 # This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting foo@gmail.com from DATA_READ logging. 926 "exemptedMembers": [ # Specifies the identities that do not cause logging for this type of permission. Follows the same format of [Binding.members][]. 927 "A String", 928 ], 929 "logType": "A String", # The log type that this config enables. 930 }, 931 ], 932 "service": "A String", # Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services. 933 }, 934 ], 935 "rules": [ # If more than one rule is specified, the rules are applied in the following manner: - All matching LOG rules are always applied. - If any DENY/DENY_WITH_LOG rule matches, permission is denied. Logging will be applied if one or more matching rule requires logging. - Otherwise, if any ALLOW/ALLOW_WITH_LOG rule matches, permission is granted. Logging will be applied if one or more matching rule requires logging. - Otherwise, if no rule applies, permission is denied. 936 { # A rule to be applied in a Policy. 937 "logConfigs": [ # The config returned to callers of tech.iam.IAM.CheckPolicy for any entries that match the LOG action. 938 { # Specifies what kind of log the caller must write 939 "counter": { # Increment a streamz counter with the specified metric and field names. # Counter options. 940 # 941 # Metric names should start with a '/', generally be lowercase-only, and end in "_count". Field names should not contain an initial slash. The actual exported metric names will have "/iam/policy" prepended. 942 # 943 # Field names correspond to IAM request parameters and field values are their respective values. 944 # 945 # Supported field names: - "authority", which is "[token]" if IAMContext.token is present, otherwise the value of IAMContext.authority_selector if present, and otherwise a representation of IAMContext.principal; or - "iam_principal", a representation of IAMContext.principal even if a token or authority selector is present; or - "" (empty string), resulting in a counter with no fields. 946 # 947 # Examples: counter { metric: "/debug_access_count" field: "iam_principal" } ==> increment counter /iam/policy/backend_debug_access_count {iam_principal=[value of IAMContext.principal]} 948 # 949 # At this time we do not support multiple field names (though this may be supported in the future). 950 "field": "A String", # The field value to attribute. 951 "metric": "A String", # The metric to update. 952 }, 953 "dataAccess": { # Write a Data Access (Gin) log # Data access options. 954 "logMode": "A String", # Whether Gin logging should happen in a fail-closed manner at the caller. This is relevant only in the LocalIAM implementation, for now. 955 }, 956 "cloudAudit": { # Write a Cloud Audit log # Cloud audit options. 957 "logName": "A String", # The log_name to populate in the Cloud Audit Record. 958 "authorizationLoggingOptions": { # Authorization-related information used by Cloud Audit Logging. # Information used by the Cloud Audit Logging pipeline. 959 "permissionType": "A String", # The type of the permission that was checked. 960 }, 961 }, 962 }, 963 ], 964 "notIns": [ # If one or more 'not_in' clauses are specified, the rule matches if the PRINCIPAL/AUTHORITY_SELECTOR is in none of the entries. 965 "A String", 966 ], 967 "ins": [ # If one or more 'in' clauses are specified, the rule matches if the PRINCIPAL/AUTHORITY_SELECTOR is in at least one of these entries. 968 "A String", 969 ], 970 "action": "A String", # Required 971 "permissions": [ # A permission is a string of form '..' (e.g., 'storage.buckets.list'). A value of '*' matches all permissions, and a verb part of '*' (e.g., 'storage.buckets.*') matches all verbs. 972 "A String", 973 ], 974 "conditions": [ # Additional restrictions that must be met. All conditions must pass for the rule to match. 975 { # A condition to be met. 976 "iam": "A String", # Trusted attributes supplied by the IAM system. 977 "sys": "A String", # Trusted attributes supplied by any service that owns resources and uses the IAM system for access control. 978 "values": [ # The objects of the condition. 979 "A String", 980 ], 981 "svc": "A String", # Trusted attributes discharged by the service. 982 "op": "A String", # An operator to apply the subject with. 983 }, 984 ], 985 "description": "A String", # Human-readable description of the rule. 986 }, 987 ], 988 "version": 42, # Deprecated. 989 "etag": "A String", # `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. 990 # 991 # If no `etag` is provided in the call to `setIamPolicy`, then the existing policy is overwritten blindly. 992 "bindings": [ # Associates a list of `members` to a `role`. `bindings` with no members will result in an error. 993 { # Associates `members` with a `role`. 994 "role": "A String", # Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. 995 "members": [ # Specifies the identities requesting access for a Cloud Platform resource. `members` can have the following values: 996 # 997 # * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. 998 # 999 # * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. 1000 # 1001 # * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@gmail.com` . 1002 # 1003 # 1004 # 1005 # * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app@appspot.gserviceaccount.com`. 1006 # 1007 # * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. 1008 # 1009 # 1010 # 1011 # * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. 1012 "A String", 1013 ], 1014 "condition": { # Represents an expression text. Example: # The condition that is associated with this binding. NOTE: An unsatisfied condition will not allow user access via current binding. Different bindings, including their conditions, are examined independently. 1015 # 1016 # title: "User account presence" description: "Determines whether the request has a user account" expression: "size(request.user) > 0" 1017 "title": "A String", # An optional title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. 1018 "expression": "A String", # Textual representation of an expression in Common Expression Language syntax. 1019 # 1020 # The application context of the containing message determines which well-known feature set of CEL is supported. 1021 "description": "A String", # An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. 1022 "location": "A String", # An optional string indicating the location of the expression for error reporting, e.g. a file name and a position in the file. 1023 }, 1024 }, 1025 ], 1026 "iamOwned": True or False, 1027 }</pre> 1028</div> 1029 1030<div class="method"> 1031 <code class="details" id="testIamPermissions">testIamPermissions(project, region, resource, body)</code> 1032 <pre>Returns permissions that a caller has on the specified resource. 1033 1034Args: 1035 project: string, Project ID for this request. (required) 1036 region: string, The name of the region for this request. (required) 1037 resource: string, Name or id of the resource for this request. (required) 1038 body: object, The request body. (required) 1039 The object takes the form of: 1040 1041{ 1042 "permissions": [ # The set of permissions to check for the 'resource'. Permissions with wildcards (such as '*' or 'storage.*') are not allowed. 1043 "A String", 1044 ], 1045 } 1046 1047 1048Returns: 1049 An object of the form: 1050 1051 { 1052 "permissions": [ # A subset of `TestPermissionsRequest.permissions` that the caller is allowed. 1053 "A String", 1054 ], 1055 }</pre> 1056</div> 1057 1058</body></html>