Manages versions of a service.
Equality
Instances of this class created via copy-construction or copy-assignment always compare equal. Instances created with equal std::shared_ptr<*Connection>
objects compare equal. Objects that compare equal share the same underlying resources.
Performance
Creating a new instance of this class is a relatively expensive operation, new objects establish new connections to the service. In contrast, copy-construction, move-construction, and the corresponding assignment operations are relatively efficient as the copies share all underlying resources.
Thread Safety
Concurrent access to different instances of this class, even if they compare equal, is guaranteed to work. Two or more threads operating on the same instance of this class is not guaranteed to work. Since copy-construction and move-construction is a relatively efficient operation, consider using such a copy when using this class from multiple threads.
Constructors
VersionsClient(VersionsClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
VersionsClient const &
|
VersionsClient(VersionsClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
VersionsClient &&
|
VersionsClient(std::shared_ptr< VersionsConnection >, Options)
Parameters | |
---|---|
Name | Description |
connection |
std::shared_ptr< VersionsConnection >
|
opts |
Options
|
Operators
operator=(VersionsClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
VersionsClient const &
|
Returns | |
---|---|
Type | Description |
VersionsClient & |
operator=(VersionsClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
VersionsClient &&
|
Returns | |
---|---|
Type | Description |
VersionsClient & |
Functions
ListVersions(google::appengine::v1::ListVersionsRequest, Options)
Lists the versions of a service.
Parameters | |
---|---|
Name | Description |
request |
google::appengine::v1::ListVersionsRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::appengine::v1::Version > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetVersion(google::appengine::v1::GetVersionRequest const &, Options)
Gets the specified Version resource.
By default, only a BASIC_VIEW
will be returned. Specify the FULL_VIEW
parameter to get the full resource.
Parameters | |
---|---|
Name | Description |
request |
google::appengine::v1::GetVersionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::appengine::v1::Version > |
the result of the RPC. The response message type (google.appengine.v1.Version) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateVersion(google::appengine::v1::CreateVersionRequest const &, Options)
Deploys code and resource files to a new version.
Parameters | |
---|---|
Name | Description |
request |
google::appengine::v1::CreateVersionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::appengine::v1::Version > > |
A |
UpdateVersion(google::appengine::v1::UpdateVersionRequest const &, Options)
Updates the specified Version resource.
You can specify the following fields depending on the App Engine environment and type of scaling that the version resource uses:
Standard environment
automatic scaling in the standard environment:
automatic_scaling.min_idle_instances
automatic_scaling.max_idle_instances
automaticScaling.standard_scheduler_settings.max_instances
automaticScaling.standard_scheduler_settings.min_instances
automaticScaling.standard_scheduler_settings.target_cpu_utilization
automaticScaling.standard_scheduler_settings.target_throughput_utilization
basic scaling or manual scaling in the standard environment:
Flexible environment
automatic scaling in the flexible environment:
automatic_scaling.min_total_instances
automatic_scaling.max_total_instances
automatic_scaling.cool_down_period_sec
automatic_scaling.cpu_utilization.target_utilization
manual scaling in the flexible environment:
Parameters | |
---|---|
Name | Description |
request |
google::appengine::v1::UpdateVersionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::appengine::v1::Version > > |
A |
DeleteVersion(google::appengine::v1::DeleteVersionRequest const &, Options)
Deletes an existing Version resource.
Parameters | |
---|---|
Name | Description |
request |
google::appengine::v1::DeleteVersionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::appengine::v1::OperationMetadataV1 > > |
A |