Files
google-apis-rs/google_autoscaler1_beta2_cli/build_html/search/search_index.json
2024-03-05 21:06:01 +01:00

1 line
70 KiB
JSON

{"config":{"indexing":"full","lang":["en"],"min_search_length":3,"prebuild_index":false,"separator":"[\\s\\-]+"},"docs":[{"location":"","text":"The autoscaler1-beta2 command-line interface (CLI) allows to use most features of the Google autoscaler service from the comfort of your terminal. By default all output is printed to standard out, but flags can be set to direct it into a file independent of your shell's capabilities. Errors will be printed to standard error, and cause the program's exit code to be non-zero. If data-structures are requested, these will be returned as pretty-printed JSON, to be useful as input to other tools. Everything else about the autoscaler API can be found at the official documentation site . Installation and Source Code Install the command-line interface with cargo using: cargo install google-autoscaler1_beta2-cli Find the source code on github . Usage This documentation was generated from the autoscaler API at revision 20150629 . The CLI is at version 5.0.4 . autoscaler1-beta2 [options] autoscalers delete <project> <zone> <autoscaler> [-p <v>]... [-o <out>] get <project> <zone> <autoscaler> [-p <v>]... [-o <out>] insert <project> <zone> (-r <kv>)... [-p <v>]... [-o <out>] list <project> <zone> [-p <v>]... [-o <out>] patch <project> <zone> <autoscaler> (-r <kv>)... [-p <v>]... [-o <out>] update <project> <zone> <autoscaler> (-r <kv>)... [-p <v>]... [-o <out>] zone-operations delete <project> <zone> <operation> [-p <v>]... get <project> <zone> <operation> [-p <v>]... [-o <out>] list <project> <zone> [-p <v>]... [-o <out>] zones list <project> [-p <v>]... [-o <out>] autoscaler1-beta2 --help Configuration: [--scope <url>]... Specify the authentication a method should be executed in. Each scope requires the user to grant this application permission to use it. If unset, it defaults to the shortest scope url for a particular method. --config-dir <folder> A directory into which we will store our persistent data. Defaults to a user-writable directory that we will create during the first invocation. [default: ~/.google-service-cli] Configuration The program will store all persistent data in the ~/.google-service-cli directory in JSON files prefixed with autoscaler1-beta2- . You can change the directory used to store configuration with the --config-dir flag on a per-invocation basis. More information about the various kinds of persistent data are given in the following paragraphs. Authentication Most APIs require a user to authenticate any request. If this is the case, the scope determines the set of permissions granted. The granularity of these is usually no more than read-only or full-access . If not set, the system will automatically select the smallest feasible scope, e.g. when invoking a method that is read-only, it will ask only for a read-only scope. You may use the --scope flag to specify a scope directly. All applicable scopes are documented in the respective method's CLI documentation. The first time a scope is used, the user is asked for permission. Follow the instructions given by the CLI to grant permissions, or to decline. If a scope was authenticated by the user, the respective information will be stored as JSON in the configuration directory, e.g. ~/.google-service-cli/autoscaler1-beta2-token-<scope-hash>.json . No manual management of these tokens is necessary. To revoke granted authentication, please refer to the official documentation . Application Secrets In order to allow any application to use Google services, it will need to be registered using the Google Developer Console . APIs the application may use are then enabled for it one by one. Most APIs can be used for free and have a daily quota. To allow more comfortable usage of the CLI without forcing anyone to register an own application, the CLI comes with a default application secret that is configured accordingly. This also means that heavy usage all around the world may deplete the daily quota. You can workaround this limitation by putting your own secrets file at this location: ~/.google-service-cli/autoscaler1-beta2-secret.json , assuming that the required autoscaler API was enabled for it. Such a secret file can be downloaded in the Google Developer Console at APIs & auth -> Credentials -> Download JSON and used as is. Learn more about how to setup Google projects and enable APIs using the official documentation . Debugging Even though the CLI does its best to provide usable error messages, sometimes it might be desirable to know what exactly led to a particular issue. This is done by allowing all client-server communication to be output to standard error as-is . The --debug flag will print errors using the Debug representation to standard error. You may consider redirecting standard error into a file for ease of use, e.g. autoscaler1-beta2 --debug <resource> <method> [options] 2>debug.txt .","title":"Home"},{"location":"#installation-and-source-code","text":"Install the command-line interface with cargo using: cargo install google-autoscaler1_beta2-cli Find the source code on github .","title":"Installation and Source Code"},{"location":"#usage","text":"This documentation was generated from the autoscaler API at revision 20150629 . The CLI is at version 5.0.4 . autoscaler1-beta2 [options] autoscalers delete <project> <zone> <autoscaler> [-p <v>]... [-o <out>] get <project> <zone> <autoscaler> [-p <v>]... [-o <out>] insert <project> <zone> (-r <kv>)... [-p <v>]... [-o <out>] list <project> <zone> [-p <v>]... [-o <out>] patch <project> <zone> <autoscaler> (-r <kv>)... [-p <v>]... [-o <out>] update <project> <zone> <autoscaler> (-r <kv>)... [-p <v>]... [-o <out>] zone-operations delete <project> <zone> <operation> [-p <v>]... get <project> <zone> <operation> [-p <v>]... [-o <out>] list <project> <zone> [-p <v>]... [-o <out>] zones list <project> [-p <v>]... [-o <out>] autoscaler1-beta2 --help Configuration: [--scope <url>]... Specify the authentication a method should be executed in. Each scope requires the user to grant this application permission to use it. If unset, it defaults to the shortest scope url for a particular method. --config-dir <folder> A directory into which we will store our persistent data. Defaults to a user-writable directory that we will create during the first invocation. [default: ~/.google-service-cli]","title":"Usage"},{"location":"#configuration","text":"The program will store all persistent data in the ~/.google-service-cli directory in JSON files prefixed with autoscaler1-beta2- . You can change the directory used to store configuration with the --config-dir flag on a per-invocation basis. More information about the various kinds of persistent data are given in the following paragraphs.","title":"Configuration"},{"location":"#authentication","text":"Most APIs require a user to authenticate any request. If this is the case, the scope determines the set of permissions granted. The granularity of these is usually no more than read-only or full-access . If not set, the system will automatically select the smallest feasible scope, e.g. when invoking a method that is read-only, it will ask only for a read-only scope. You may use the --scope flag to specify a scope directly. All applicable scopes are documented in the respective method's CLI documentation. The first time a scope is used, the user is asked for permission. Follow the instructions given by the CLI to grant permissions, or to decline. If a scope was authenticated by the user, the respective information will be stored as JSON in the configuration directory, e.g. ~/.google-service-cli/autoscaler1-beta2-token-<scope-hash>.json . No manual management of these tokens is necessary. To revoke granted authentication, please refer to the official documentation .","title":"Authentication"},{"location":"#application-secrets","text":"In order to allow any application to use Google services, it will need to be registered using the Google Developer Console . APIs the application may use are then enabled for it one by one. Most APIs can be used for free and have a daily quota. To allow more comfortable usage of the CLI without forcing anyone to register an own application, the CLI comes with a default application secret that is configured accordingly. This also means that heavy usage all around the world may deplete the daily quota. You can workaround this limitation by putting your own secrets file at this location: ~/.google-service-cli/autoscaler1-beta2-secret.json , assuming that the required autoscaler API was enabled for it. Such a secret file can be downloaded in the Google Developer Console at APIs & auth -> Credentials -> Download JSON and used as is. Learn more about how to setup Google projects and enable APIs using the official documentation .","title":"Application Secrets"},{"location":"#debugging","text":"Even though the CLI does its best to provide usable error messages, sometimes it might be desirable to know what exactly led to a particular issue. This is done by allowing all client-server communication to be output to standard error as-is . The --debug flag will print errors using the Debug representation to standard error. You may consider redirecting standard error into a file for ease of use, e.g. autoscaler1-beta2 --debug <resource> <method> [options] 2>debug.txt .","title":"Debugging"},{"location":"autoscalers_delete/","text":"Deletes the specified Autoscaler resource. Scopes You will need authorization for the https://www.googleapis.com/auth/compute scope to make a valid call. If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> autoscalers delete ... Required Scalar Arguments <project> (string) Project ID of Autoscaler resource. <zone> (string) Zone name of Autoscaler resource. <autoscaler> (string) Name of the Autoscaler resource. Optional Output Flags The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output. Optional General Properties The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Delete"},{"location":"autoscalers_delete/#scopes","text":"You will need authorization for the https://www.googleapis.com/auth/compute scope to make a valid call. If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> autoscalers delete ...","title":"Scopes"},{"location":"autoscalers_delete/#required-scalar-arguments","text":"<project> (string) Project ID of Autoscaler resource. <zone> (string) Zone name of Autoscaler resource. <autoscaler> (string) Name of the Autoscaler resource.","title":"Required Scalar Arguments"},{"location":"autoscalers_delete/#optional-output-flags","text":"The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output.","title":"Optional Output Flags"},{"location":"autoscalers_delete/#optional-general-properties","text":"The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Optional General Properties"},{"location":"autoscalers_get/","text":"Gets the specified Autoscaler resource. Scopes You will need authorization for at least one of the following scopes to make a valid call: https://www.googleapis.com/auth/compute https://www.googleapis.com/auth/compute.readonly If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute.readonly . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> autoscalers get ... Required Scalar Arguments <project> (string) Project ID of Autoscaler resource. <zone> (string) Zone name of Autoscaler resource. <autoscaler> (string) Name of the Autoscaler resource. Optional Output Flags The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output. Optional General Properties The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Get"},{"location":"autoscalers_get/#scopes","text":"You will need authorization for at least one of the following scopes to make a valid call: https://www.googleapis.com/auth/compute https://www.googleapis.com/auth/compute.readonly If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute.readonly . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> autoscalers get ...","title":"Scopes"},{"location":"autoscalers_get/#required-scalar-arguments","text":"<project> (string) Project ID of Autoscaler resource. <zone> (string) Zone name of Autoscaler resource. <autoscaler> (string) Name of the Autoscaler resource.","title":"Required Scalar Arguments"},{"location":"autoscalers_get/#optional-output-flags","text":"The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output.","title":"Optional Output Flags"},{"location":"autoscalers_get/#optional-general-properties","text":"The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Optional General Properties"},{"location":"autoscalers_insert/","text":"Adds new Autoscaler resource. Scopes You will need authorization for the https://www.googleapis.com/auth/compute scope to make a valid call. If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> autoscalers insert ... Required Scalar Arguments <project> (string) Project ID of Autoscaler resource. <zone> (string) Zone name of Autoscaler resource. Required Request Value The request value is a data-structure with various fields. Each field may be a simple scalar or another data-structure. In the latter case it is advised to set the field-cursor to the data-structure's field to specify values more concisely. For example, a structure like this: Autoscaler: autoscaling-policy: cool-down-period-sec: integer cpu-utilization: utilization-target: number load-balancing-utilization: utilization-target: number max-num-replicas: integer min-num-replicas: integer creation-timestamp: string description: string id: string kind: string name: string self-link: string target: string can be set completely with the following arguments which are assumed to be executed in the given order. Note how the cursor position is adjusted to the respective structures, allowing simple field names to be used most of the time. -r .autoscaling-policy cool-down-period-sec=79 The number of seconds that the Autoscaler should wait between two succeeding changes to the number of virtual machines. You should define an interval that is at least as long as the initialization time of a virtual machine and the time it may take for replica pool to create the virtual machine. The default is 60 seconds. cpu-utilization utilization-target=0.9255354071651813 The target utilization that the Autoscaler should maintain. It is represented as a fraction of used cores. For example: 6 cores used in 8-core VM are represented here as 0.75. Must be a float value between (0, 1]. If not defined, the default is 0.8. ..load-balancing-utilization utilization-target=0.7098799822170164 Fraction of backend capacity utilization (set in HTTP load balancing configuration) that Autoscaler should maintain. Must be a positive float value. If not defined, the default is 0.8. For example if your maxRatePerInstance capacity (in HTTP Load Balancing configuration) is set at 10 and you would like to keep number of instances such that each instance receives 7 QPS on average, set this to 0.7. .. max-num-replicas=73 The maximum number of replicas that the Autoscaler can scale up to. min-num-replicas=74 The minimum number of replicas that the Autoscaler can scale down to. .. creation-timestamp=sanctus [Output Only] Creation timestamp in RFC3339 text format. description=sed An optional textual description of the resource provided by the client. id=amet. [Output Only] Unique identifier for the resource; defined by the server. kind=takimata Type of resource. name=amet. Name of the Autoscaler resource. Must be unique per project and zone. self-link=duo [Output Only] A self-link to the Autoscaler configuration resource. target=ipsum URL to the entity which will be autoscaled. Currently the only supported value is ReplicaPool?s URL. Note: it is illegal to specify multiple Autoscalers for the same target. About Cursors The cursor position is key to comfortably set complex nested structures. The following rules apply: The cursor position is always set relative to the current one, unless the field name starts with the . character. Fields can be nested such as in -r f.s.o . The cursor position is set relative to the top-level structure if it starts with . , e.g. -r .s.s You can also set nested fields without setting the cursor explicitly. For example, to set a value relative to the current cursor position, you would specify -r struct.sub_struct=bar . You can move the cursor one level up by using .. . Each additional . moves it up one additional level. E.g. ... would go three levels up. Optional Output Flags The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output. Optional General Properties The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Insert"},{"location":"autoscalers_insert/#scopes","text":"You will need authorization for the https://www.googleapis.com/auth/compute scope to make a valid call. If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> autoscalers insert ...","title":"Scopes"},{"location":"autoscalers_insert/#required-scalar-arguments","text":"<project> (string) Project ID of Autoscaler resource. <zone> (string) Zone name of Autoscaler resource.","title":"Required Scalar Arguments"},{"location":"autoscalers_insert/#required-request-value","text":"The request value is a data-structure with various fields. Each field may be a simple scalar or another data-structure. In the latter case it is advised to set the field-cursor to the data-structure's field to specify values more concisely. For example, a structure like this: Autoscaler: autoscaling-policy: cool-down-period-sec: integer cpu-utilization: utilization-target: number load-balancing-utilization: utilization-target: number max-num-replicas: integer min-num-replicas: integer creation-timestamp: string description: string id: string kind: string name: string self-link: string target: string can be set completely with the following arguments which are assumed to be executed in the given order. Note how the cursor position is adjusted to the respective structures, allowing simple field names to be used most of the time. -r .autoscaling-policy cool-down-period-sec=79 The number of seconds that the Autoscaler should wait between two succeeding changes to the number of virtual machines. You should define an interval that is at least as long as the initialization time of a virtual machine and the time it may take for replica pool to create the virtual machine. The default is 60 seconds. cpu-utilization utilization-target=0.9255354071651813 The target utilization that the Autoscaler should maintain. It is represented as a fraction of used cores. For example: 6 cores used in 8-core VM are represented here as 0.75. Must be a float value between (0, 1]. If not defined, the default is 0.8. ..load-balancing-utilization utilization-target=0.7098799822170164 Fraction of backend capacity utilization (set in HTTP load balancing configuration) that Autoscaler should maintain. Must be a positive float value. If not defined, the default is 0.8. For example if your maxRatePerInstance capacity (in HTTP Load Balancing configuration) is set at 10 and you would like to keep number of instances such that each instance receives 7 QPS on average, set this to 0.7. .. max-num-replicas=73 The maximum number of replicas that the Autoscaler can scale up to. min-num-replicas=74 The minimum number of replicas that the Autoscaler can scale down to. .. creation-timestamp=sanctus [Output Only] Creation timestamp in RFC3339 text format. description=sed An optional textual description of the resource provided by the client. id=amet. [Output Only] Unique identifier for the resource; defined by the server. kind=takimata Type of resource. name=amet. Name of the Autoscaler resource. Must be unique per project and zone. self-link=duo [Output Only] A self-link to the Autoscaler configuration resource. target=ipsum URL to the entity which will be autoscaled. Currently the only supported value is ReplicaPool?s URL. Note: it is illegal to specify multiple Autoscalers for the same target.","title":"Required Request Value"},{"location":"autoscalers_insert/#about-cursors","text":"The cursor position is key to comfortably set complex nested structures. The following rules apply: The cursor position is always set relative to the current one, unless the field name starts with the . character. Fields can be nested such as in -r f.s.o . The cursor position is set relative to the top-level structure if it starts with . , e.g. -r .s.s You can also set nested fields without setting the cursor explicitly. For example, to set a value relative to the current cursor position, you would specify -r struct.sub_struct=bar . You can move the cursor one level up by using .. . Each additional . moves it up one additional level. E.g. ... would go three levels up.","title":"About Cursors"},{"location":"autoscalers_insert/#optional-output-flags","text":"The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output.","title":"Optional Output Flags"},{"location":"autoscalers_insert/#optional-general-properties","text":"The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Optional General Properties"},{"location":"autoscalers_list/","text":"Lists all Autoscaler resources in this zone. Scopes You will need authorization for at least one of the following scopes to make a valid call: https://www.googleapis.com/auth/compute https://www.googleapis.com/auth/compute.readonly If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute.readonly . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> autoscalers list ... Required Scalar Arguments <project> (string) Project ID of Autoscaler resource. <zone> (string) Zone name of Autoscaler resource. Optional Output Flags The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output. Optional Method Properties You may set the following properties to further configure the call. Please note that -p is followed by one or more key-value-pairs, and is called like this -p k1=v1 k2=v2 even though the listing below repeats the -p for completeness. -p filter=string No description provided. -p max-results=integer No description provided. -p page-token=string No description provided. Optional General Properties The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"List"},{"location":"autoscalers_list/#scopes","text":"You will need authorization for at least one of the following scopes to make a valid call: https://www.googleapis.com/auth/compute https://www.googleapis.com/auth/compute.readonly If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute.readonly . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> autoscalers list ...","title":"Scopes"},{"location":"autoscalers_list/#required-scalar-arguments","text":"<project> (string) Project ID of Autoscaler resource. <zone> (string) Zone name of Autoscaler resource.","title":"Required Scalar Arguments"},{"location":"autoscalers_list/#optional-output-flags","text":"The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output.","title":"Optional Output Flags"},{"location":"autoscalers_list/#optional-method-properties","text":"You may set the following properties to further configure the call. Please note that -p is followed by one or more key-value-pairs, and is called like this -p k1=v1 k2=v2 even though the listing below repeats the -p for completeness. -p filter=string No description provided. -p max-results=integer No description provided. -p page-token=string No description provided.","title":"Optional Method Properties"},{"location":"autoscalers_list/#optional-general-properties","text":"The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Optional General Properties"},{"location":"autoscalers_patch/","text":"Update the entire content of the Autoscaler resource. This method supports patch semantics. Scopes You will need authorization for the https://www.googleapis.com/auth/compute scope to make a valid call. If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> autoscalers patch ... Required Scalar Arguments <project> (string) Project ID of Autoscaler resource. <zone> (string) Zone name of Autoscaler resource. <autoscaler> (string) Name of the Autoscaler resource. Required Request Value The request value is a data-structure with various fields. Each field may be a simple scalar or another data-structure. In the latter case it is advised to set the field-cursor to the data-structure's field to specify values more concisely. For example, a structure like this: Autoscaler: autoscaling-policy: cool-down-period-sec: integer cpu-utilization: utilization-target: number load-balancing-utilization: utilization-target: number max-num-replicas: integer min-num-replicas: integer creation-timestamp: string description: string id: string kind: string name: string self-link: string target: string can be set completely with the following arguments which are assumed to be executed in the given order. Note how the cursor position is adjusted to the respective structures, allowing simple field names to be used most of the time. -r .autoscaling-policy cool-down-period-sec=39 The number of seconds that the Autoscaler should wait between two succeeding changes to the number of virtual machines. You should define an interval that is at least as long as the initialization time of a virtual machine and the time it may take for replica pool to create the virtual machine. The default is 60 seconds. cpu-utilization utilization-target=0.39155134552901283 The target utilization that the Autoscaler should maintain. It is represented as a fraction of used cores. For example: 6 cores used in 8-core VM are represented here as 0.75. Must be a float value between (0, 1]. If not defined, the default is 0.8. ..load-balancing-utilization utilization-target=0.6971199155222326 Fraction of backend capacity utilization (set in HTTP load balancing configuration) that Autoscaler should maintain. Must be a positive float value. If not defined, the default is 0.8. For example if your maxRatePerInstance capacity (in HTTP Load Balancing configuration) is set at 10 and you would like to keep number of instances such that each instance receives 7 QPS on average, set this to 0.7. .. max-num-replicas=97 The maximum number of replicas that the Autoscaler can scale up to. min-num-replicas=84 The minimum number of replicas that the Autoscaler can scale down to. .. creation-timestamp=ipsum [Output Only] Creation timestamp in RFC3339 text format. description=invidunt An optional textual description of the resource provided by the client. id=amet [Output Only] Unique identifier for the resource; defined by the server. kind=duo Type of resource. name=ipsum Name of the Autoscaler resource. Must be unique per project and zone. self-link=sed [Output Only] A self-link to the Autoscaler configuration resource. target=ut URL to the entity which will be autoscaled. Currently the only supported value is ReplicaPool?s URL. Note: it is illegal to specify multiple Autoscalers for the same target. About Cursors The cursor position is key to comfortably set complex nested structures. The following rules apply: The cursor position is always set relative to the current one, unless the field name starts with the . character. Fields can be nested such as in -r f.s.o . The cursor position is set relative to the top-level structure if it starts with . , e.g. -r .s.s You can also set nested fields without setting the cursor explicitly. For example, to set a value relative to the current cursor position, you would specify -r struct.sub_struct=bar . You can move the cursor one level up by using .. . Each additional . moves it up one additional level. E.g. ... would go three levels up. Optional Output Flags The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output. Optional General Properties The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Patch"},{"location":"autoscalers_patch/#scopes","text":"You will need authorization for the https://www.googleapis.com/auth/compute scope to make a valid call. If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> autoscalers patch ...","title":"Scopes"},{"location":"autoscalers_patch/#required-scalar-arguments","text":"<project> (string) Project ID of Autoscaler resource. <zone> (string) Zone name of Autoscaler resource. <autoscaler> (string) Name of the Autoscaler resource.","title":"Required Scalar Arguments"},{"location":"autoscalers_patch/#required-request-value","text":"The request value is a data-structure with various fields. Each field may be a simple scalar or another data-structure. In the latter case it is advised to set the field-cursor to the data-structure's field to specify values more concisely. For example, a structure like this: Autoscaler: autoscaling-policy: cool-down-period-sec: integer cpu-utilization: utilization-target: number load-balancing-utilization: utilization-target: number max-num-replicas: integer min-num-replicas: integer creation-timestamp: string description: string id: string kind: string name: string self-link: string target: string can be set completely with the following arguments which are assumed to be executed in the given order. Note how the cursor position is adjusted to the respective structures, allowing simple field names to be used most of the time. -r .autoscaling-policy cool-down-period-sec=39 The number of seconds that the Autoscaler should wait between two succeeding changes to the number of virtual machines. You should define an interval that is at least as long as the initialization time of a virtual machine and the time it may take for replica pool to create the virtual machine. The default is 60 seconds. cpu-utilization utilization-target=0.39155134552901283 The target utilization that the Autoscaler should maintain. It is represented as a fraction of used cores. For example: 6 cores used in 8-core VM are represented here as 0.75. Must be a float value between (0, 1]. If not defined, the default is 0.8. ..load-balancing-utilization utilization-target=0.6971199155222326 Fraction of backend capacity utilization (set in HTTP load balancing configuration) that Autoscaler should maintain. Must be a positive float value. If not defined, the default is 0.8. For example if your maxRatePerInstance capacity (in HTTP Load Balancing configuration) is set at 10 and you would like to keep number of instances such that each instance receives 7 QPS on average, set this to 0.7. .. max-num-replicas=97 The maximum number of replicas that the Autoscaler can scale up to. min-num-replicas=84 The minimum number of replicas that the Autoscaler can scale down to. .. creation-timestamp=ipsum [Output Only] Creation timestamp in RFC3339 text format. description=invidunt An optional textual description of the resource provided by the client. id=amet [Output Only] Unique identifier for the resource; defined by the server. kind=duo Type of resource. name=ipsum Name of the Autoscaler resource. Must be unique per project and zone. self-link=sed [Output Only] A self-link to the Autoscaler configuration resource. target=ut URL to the entity which will be autoscaled. Currently the only supported value is ReplicaPool?s URL. Note: it is illegal to specify multiple Autoscalers for the same target.","title":"Required Request Value"},{"location":"autoscalers_patch/#about-cursors","text":"The cursor position is key to comfortably set complex nested structures. The following rules apply: The cursor position is always set relative to the current one, unless the field name starts with the . character. Fields can be nested such as in -r f.s.o . The cursor position is set relative to the top-level structure if it starts with . , e.g. -r .s.s You can also set nested fields without setting the cursor explicitly. For example, to set a value relative to the current cursor position, you would specify -r struct.sub_struct=bar . You can move the cursor one level up by using .. . Each additional . moves it up one additional level. E.g. ... would go three levels up.","title":"About Cursors"},{"location":"autoscalers_patch/#optional-output-flags","text":"The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output.","title":"Optional Output Flags"},{"location":"autoscalers_patch/#optional-general-properties","text":"The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Optional General Properties"},{"location":"autoscalers_update/","text":"Update the entire content of the Autoscaler resource. Scopes You will need authorization for the https://www.googleapis.com/auth/compute scope to make a valid call. If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> autoscalers update ... Required Scalar Arguments <project> (string) Project ID of Autoscaler resource. <zone> (string) Zone name of Autoscaler resource. <autoscaler> (string) Name of the Autoscaler resource. Required Request Value The request value is a data-structure with various fields. Each field may be a simple scalar or another data-structure. In the latter case it is advised to set the field-cursor to the data-structure's field to specify values more concisely. For example, a structure like this: Autoscaler: autoscaling-policy: cool-down-period-sec: integer cpu-utilization: utilization-target: number load-balancing-utilization: utilization-target: number max-num-replicas: integer min-num-replicas: integer creation-timestamp: string description: string id: string kind: string name: string self-link: string target: string can be set completely with the following arguments which are assumed to be executed in the given order. Note how the cursor position is adjusted to the respective structures, allowing simple field names to be used most of the time. -r .autoscaling-policy cool-down-period-sec=89 The number of seconds that the Autoscaler should wait between two succeeding changes to the number of virtual machines. You should define an interval that is at least as long as the initialization time of a virtual machine and the time it may take for replica pool to create the virtual machine. The default is 60 seconds. cpu-utilization utilization-target=0.6681221451468909 The target utilization that the Autoscaler should maintain. It is represented as a fraction of used cores. For example: 6 cores used in 8-core VM are represented here as 0.75. Must be a float value between (0, 1]. If not defined, the default is 0.8. ..load-balancing-utilization utilization-target=0.888331125703361 Fraction of backend capacity utilization (set in HTTP load balancing configuration) that Autoscaler should maintain. Must be a positive float value. If not defined, the default is 0.8. For example if your maxRatePerInstance capacity (in HTTP Load Balancing configuration) is set at 10 and you would like to keep number of instances such that each instance receives 7 QPS on average, set this to 0.7. .. max-num-replicas=51 The maximum number of replicas that the Autoscaler can scale up to. min-num-replicas=94 The minimum number of replicas that the Autoscaler can scale down to. .. creation-timestamp=gubergren [Output Only] Creation timestamp in RFC3339 text format. description=ea An optional textual description of the resource provided by the client. id=dolor [Output Only] Unique identifier for the resource; defined by the server. kind=lorem Type of resource. name=eos Name of the Autoscaler resource. Must be unique per project and zone. self-link=labore [Output Only] A self-link to the Autoscaler configuration resource. target=sed URL to the entity which will be autoscaled. Currently the only supported value is ReplicaPool?s URL. Note: it is illegal to specify multiple Autoscalers for the same target. About Cursors The cursor position is key to comfortably set complex nested structures. The following rules apply: The cursor position is always set relative to the current one, unless the field name starts with the . character. Fields can be nested such as in -r f.s.o . The cursor position is set relative to the top-level structure if it starts with . , e.g. -r .s.s You can also set nested fields without setting the cursor explicitly. For example, to set a value relative to the current cursor position, you would specify -r struct.sub_struct=bar . You can move the cursor one level up by using .. . Each additional . moves it up one additional level. E.g. ... would go three levels up. Optional Output Flags The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output. Optional General Properties The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Update"},{"location":"autoscalers_update/#scopes","text":"You will need authorization for the https://www.googleapis.com/auth/compute scope to make a valid call. If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> autoscalers update ...","title":"Scopes"},{"location":"autoscalers_update/#required-scalar-arguments","text":"<project> (string) Project ID of Autoscaler resource. <zone> (string) Zone name of Autoscaler resource. <autoscaler> (string) Name of the Autoscaler resource.","title":"Required Scalar Arguments"},{"location":"autoscalers_update/#required-request-value","text":"The request value is a data-structure with various fields. Each field may be a simple scalar or another data-structure. In the latter case it is advised to set the field-cursor to the data-structure's field to specify values more concisely. For example, a structure like this: Autoscaler: autoscaling-policy: cool-down-period-sec: integer cpu-utilization: utilization-target: number load-balancing-utilization: utilization-target: number max-num-replicas: integer min-num-replicas: integer creation-timestamp: string description: string id: string kind: string name: string self-link: string target: string can be set completely with the following arguments which are assumed to be executed in the given order. Note how the cursor position is adjusted to the respective structures, allowing simple field names to be used most of the time. -r .autoscaling-policy cool-down-period-sec=89 The number of seconds that the Autoscaler should wait between two succeeding changes to the number of virtual machines. You should define an interval that is at least as long as the initialization time of a virtual machine and the time it may take for replica pool to create the virtual machine. The default is 60 seconds. cpu-utilization utilization-target=0.6681221451468909 The target utilization that the Autoscaler should maintain. It is represented as a fraction of used cores. For example: 6 cores used in 8-core VM are represented here as 0.75. Must be a float value between (0, 1]. If not defined, the default is 0.8. ..load-balancing-utilization utilization-target=0.888331125703361 Fraction of backend capacity utilization (set in HTTP load balancing configuration) that Autoscaler should maintain. Must be a positive float value. If not defined, the default is 0.8. For example if your maxRatePerInstance capacity (in HTTP Load Balancing configuration) is set at 10 and you would like to keep number of instances such that each instance receives 7 QPS on average, set this to 0.7. .. max-num-replicas=51 The maximum number of replicas that the Autoscaler can scale up to. min-num-replicas=94 The minimum number of replicas that the Autoscaler can scale down to. .. creation-timestamp=gubergren [Output Only] Creation timestamp in RFC3339 text format. description=ea An optional textual description of the resource provided by the client. id=dolor [Output Only] Unique identifier for the resource; defined by the server. kind=lorem Type of resource. name=eos Name of the Autoscaler resource. Must be unique per project and zone. self-link=labore [Output Only] A self-link to the Autoscaler configuration resource. target=sed URL to the entity which will be autoscaled. Currently the only supported value is ReplicaPool?s URL. Note: it is illegal to specify multiple Autoscalers for the same target.","title":"Required Request Value"},{"location":"autoscalers_update/#about-cursors","text":"The cursor position is key to comfortably set complex nested structures. The following rules apply: The cursor position is always set relative to the current one, unless the field name starts with the . character. Fields can be nested such as in -r f.s.o . The cursor position is set relative to the top-level structure if it starts with . , e.g. -r .s.s You can also set nested fields without setting the cursor explicitly. For example, to set a value relative to the current cursor position, you would specify -r struct.sub_struct=bar . You can move the cursor one level up by using .. . Each additional . moves it up one additional level. E.g. ... would go three levels up.","title":"About Cursors"},{"location":"autoscalers_update/#optional-output-flags","text":"The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output.","title":"Optional Output Flags"},{"location":"autoscalers_update/#optional-general-properties","text":"The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Optional General Properties"},{"location":"zone-operations_delete/","text":"Deletes the specified zone-specific operation resource. Scopes You will need authorization for the https://www.googleapis.com/auth/compute scope to make a valid call. If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> zone-operations delete ... Required Scalar Arguments <project> (string) No description provided. <zone> (string) No description provided. <operation> (string) No description provided. Optional General Properties The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Delete"},{"location":"zone-operations_delete/#scopes","text":"You will need authorization for the https://www.googleapis.com/auth/compute scope to make a valid call. If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> zone-operations delete ...","title":"Scopes"},{"location":"zone-operations_delete/#required-scalar-arguments","text":"<project> (string) No description provided. <zone> (string) No description provided. <operation> (string) No description provided.","title":"Required Scalar Arguments"},{"location":"zone-operations_delete/#optional-general-properties","text":"The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Optional General Properties"},{"location":"zone-operations_get/","text":"Retrieves the specified zone-specific operation resource. Scopes You will need authorization for at least one of the following scopes to make a valid call: https://www.googleapis.com/auth/compute https://www.googleapis.com/auth/compute.readonly If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute.readonly . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> zone-operations get ... Required Scalar Arguments <project> (string) No description provided. <zone> (string) No description provided. <operation> (string) No description provided. Optional Output Flags The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output. Optional General Properties The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Get"},{"location":"zone-operations_get/#scopes","text":"You will need authorization for at least one of the following scopes to make a valid call: https://www.googleapis.com/auth/compute https://www.googleapis.com/auth/compute.readonly If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute.readonly . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> zone-operations get ...","title":"Scopes"},{"location":"zone-operations_get/#required-scalar-arguments","text":"<project> (string) No description provided. <zone> (string) No description provided. <operation> (string) No description provided.","title":"Required Scalar Arguments"},{"location":"zone-operations_get/#optional-output-flags","text":"The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output.","title":"Optional Output Flags"},{"location":"zone-operations_get/#optional-general-properties","text":"The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Optional General Properties"},{"location":"zone-operations_list/","text":"Retrieves the list of operation resources contained within the specified zone. Scopes You will need authorization for at least one of the following scopes to make a valid call: https://www.googleapis.com/auth/compute https://www.googleapis.com/auth/compute.readonly If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute.readonly . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> zone-operations list ... Required Scalar Arguments <project> (string) No description provided. <zone> (string) No description provided. Optional Output Flags The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output. Optional Method Properties You may set the following properties to further configure the call. Please note that -p is followed by one or more key-value-pairs, and is called like this -p k1=v1 k2=v2 even though the listing below repeats the -p for completeness. -p filter=string No description provided. -p max-results=integer No description provided. -p page-token=string No description provided. Optional General Properties The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"List"},{"location":"zone-operations_list/#scopes","text":"You will need authorization for at least one of the following scopes to make a valid call: https://www.googleapis.com/auth/compute https://www.googleapis.com/auth/compute.readonly If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute.readonly . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> zone-operations list ...","title":"Scopes"},{"location":"zone-operations_list/#required-scalar-arguments","text":"<project> (string) No description provided. <zone> (string) No description provided.","title":"Required Scalar Arguments"},{"location":"zone-operations_list/#optional-output-flags","text":"The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output.","title":"Optional Output Flags"},{"location":"zone-operations_list/#optional-method-properties","text":"You may set the following properties to further configure the call. Please note that -p is followed by one or more key-value-pairs, and is called like this -p k1=v1 k2=v2 even though the listing below repeats the -p for completeness. -p filter=string No description provided. -p max-results=integer No description provided. -p page-token=string No description provided.","title":"Optional Method Properties"},{"location":"zone-operations_list/#optional-general-properties","text":"The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Optional General Properties"},{"location":"zones_list/","text":"Scopes You will need authorization for at least one of the following scopes to make a valid call: https://www.googleapis.com/auth/compute https://www.googleapis.com/auth/compute.readonly If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute.readonly . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> zones list ... Required Scalar Argument <project> (string) No description provided. Optional Output Flags The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output. Optional Method Properties You may set the following properties to further configure the call. Please note that -p is followed by one or more key-value-pairs, and is called like this -p k1=v1 k2=v2 even though the listing below repeats the -p for completeness. -p filter=string No description provided. -p max-results=integer No description provided. -p page-token=string No description provided. Optional General Properties The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"List"},{"location":"zones_list/#scopes","text":"You will need authorization for at least one of the following scopes to make a valid call: https://www.googleapis.com/auth/compute https://www.googleapis.com/auth/compute.readonly If unset, the scope for this method defaults to https://www.googleapis.com/auth/compute.readonly . You can set the scope for this method like this: autoscaler1-beta2 --scope <scope> zones list ...","title":"Scopes"},{"location":"zones_list/#required-scalar-argument","text":"<project> (string) No description provided.","title":"Required Scalar Argument"},{"location":"zones_list/#optional-output-flags","text":"The method's return value a JSON encoded structure, which will be written to standard output by default. -o out out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output.","title":"Optional Output Flags"},{"location":"zones_list/#optional-method-properties","text":"You may set the following properties to further configure the call. Please note that -p is followed by one or more key-value-pairs, and is called like this -p k1=v1 k2=v2 even though the listing below repeats the -p for completeness. -p filter=string No description provided. -p max-results=integer No description provided. -p page-token=string No description provided.","title":"Optional Method Properties"},{"location":"zones_list/#optional-general-properties","text":"The following properties can configure any call, and are not specific to this method. -p alt=string Data format for the response. -p fields=string Selector specifying which fields to include in a partial response. -p key=string API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. -p oauth-token=string OAuth 2.0 token for the current user. -p pretty-print=boolean Returns response with indentations and line breaks. -p quota-user=string Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided. -p user-ip=string IP address of the site where the request originates. Use this if you want to enforce per-user limits.","title":"Optional General Properties"}]}