update all code after version update

This commit is contained in:
Sebastian Thiel
2020-07-10 09:41:44 +08:00
parent c949124df5
commit d1ffa68287
1798 changed files with 692798 additions and 59942 deletions

View File

@@ -2,7 +2,7 @@
// This file was generated automatically from 'src/mako/api/lib.rs.mako'
// DO NOT EDIT !
//! This documentation was generated from *Cloudbilling* crate version *1.0.13+20200401*, where *20200401* is the exact revision of the *cloudbilling:v1* schema built by the [mako](http://www.makotemplates.org/) code generator *v1.0.13*.
//! This documentation was generated from *Cloudbilling* crate version *1.0.14+20200623*, where *20200623* is the exact revision of the *cloudbilling:v1* schema built by the [mako](http://www.makotemplates.org/) code generator *v1.0.14*.
//!
//! Everything else about the *Cloudbilling* *v1* API can be found at the
//! [official documentation site](https://cloud.google.com/billing/).
@@ -334,7 +334,7 @@ impl<'a, C, A> Cloudbilling<C, A>
Cloudbilling {
client: RefCell::new(client),
auth: RefCell::new(authenticator),
_user_agent: "google-api-rust-client/1.0.13".to_string(),
_user_agent: "google-api-rust-client/1.0.14".to_string(),
_base_url: "https://cloudbilling.googleapis.com/".to_string(),
_root_url: "https://cloudbilling.googleapis.com/".to_string(),
}
@@ -351,7 +351,7 @@ impl<'a, C, A> Cloudbilling<C, A>
}
/// Set the user-agent header field to use in all requests to the server.
/// It defaults to `google-api-rust-client/1.0.13`.
/// It defaults to `google-api-rust-client/1.0.14`.
///
/// Returns the previously set user-agent.
pub fn user_agent(&mut self, agent_name: String) -> String {
@@ -413,25 +413,28 @@ impl Part for Category {}
pub struct Sku {
/// The category hierarchy of this SKU, purely for organizational purpose.
pub category: Option<Category>,
/// Identifies the service provider.
/// This is 'Google' for first party services in Google Cloud Platform.
#[serde(rename="serviceProviderName")]
pub service_provider_name: Option<String>,
/// The geographic taxonomy for this sku.
#[serde(rename="geoTaxonomy")]
pub geo_taxonomy: Option<GeoTaxonomy>,
/// A human readable description of the SKU, has a maximum length of 256
/// characters.
pub description: Option<String>,
/// The identifier for the SKU.
/// Example: "AA95-CD31-42FE"
#[serde(rename="skuId")]
pub sku_id: Option<String>,
/// List of service regions this SKU is offered at.
/// Example: "asia-east1"
/// Service regions can be found at https://cloud.google.com/about/locations/
#[serde(rename="serviceRegions")]
pub service_regions: Option<Vec<String>>,
/// The identifier for the SKU.
/// Example: "AA95-CD31-42FE"
#[serde(rename="skuId")]
pub sku_id: Option<String>,
/// A timeline of pricing info for this SKU in chronological order.
#[serde(rename="pricingInfo")]
pub pricing_info: Option<Vec<PricingInfo>>,
/// Identifies the service provider.
/// This is 'Google' for first party services in Google Cloud Platform.
#[serde(rename="serviceProviderName")]
pub service_provider_name: Option<String>,
/// The resource name for the SKU.
/// Example: "services/DA34-426B-A397/skus/AA95-CD31-42FE"
pub name: Option<String>,
@@ -536,8 +539,8 @@ pub struct SetIamPolicyRequest {
/// OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only
/// the fields in the mask will be modified. If no mask is provided, the
/// following default mask is used:
/// paths: "bindings, etag"
/// This field is only used by Cloud IAM.
///
/// `paths: "bindings, etag"`
#[serde(rename="updateMask")]
pub update_mask: Option<String>,
}
@@ -581,7 +584,7 @@ impl ResponseResult for ListServicesResponse {}
/// ]
/// },
/// {
/// "log_type": "DATA_WRITE",
/// "log_type": "DATA_WRITE"
/// }
/// ]
/// }
@@ -707,10 +710,12 @@ impl Part for AggregationInfo {}
/// permissions; each `role` can be an IAM predefined role or a user-created
/// custom role.
///
/// Optionally, a `binding` can specify a `condition`, which is a logical
/// expression that allows access to a resource only if the expression evaluates
/// to `true`. A condition can add constraints based on attributes of the
/// request, the resource, or both.
/// For some types of Google Cloud resources, a `binding` can also specify a
/// `condition`, which is a logical expression that allows access to a resource
/// only if the expression evaluates to `true`. A condition can add constraints
/// based on attributes of the request, the resource, or both. To learn which
/// resources support conditions in their IAM policies, see the
/// [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
///
/// **JSON example:**
///
@@ -728,7 +733,9 @@ impl Part for AggregationInfo {}
/// },
/// {
/// "role": "roles/resourcemanager.organizationViewer",
/// "members": ["user:eve@example.com"],
/// "members": [
/// "user:eve@example.com"
/// ],
/// "condition": {
/// "title": "expirable access",
/// "description": "Does not grant access after Sep 2020",
@@ -815,6 +822,9 @@ pub struct Policy {
///
/// If a policy does not include any conditions, operations on that policy may
/// specify any valid version or leave the field unset.
///
/// To learn which resources support conditions in their IAM policies, see the
/// [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
pub version: Option<i32>,
}
@@ -857,6 +867,23 @@ pub struct PricingInfo {
impl Part for PricingInfo {}
/// Encapsulates the geographic taxonomy data for a sku.
///
/// This type is not used in any activity, and only used as *part* of another schema.
///
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
pub struct GeoTaxonomy {
/// The list of regions associated with a sku. Empty for Global skus, which are
/// associated with all GCP regions.
pub regions: Option<Vec<String>>,
/// The type of Geo Taxonomy: GLOBAL, REGIONAL, or MULTI_REGIONAL.
#[serde(rename="type")]
pub type_: Option<String>,
}
impl Part for GeoTaxonomy {}
/// Response message for `TestIamPermissions` method.
///
/// # Activities
@@ -933,9 +960,17 @@ pub struct Binding {
/// For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
pub role: Option<String>,
/// 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.
///
/// If the condition evaluates to `true`, then this binding applies to the
/// current request.
///
/// If the condition evaluates to `false`, then this binding does not apply to
/// the current request. However, a different role binding might grant the same
/// role to one or more of the members in this binding.
///
/// To learn which resources support conditions in their IAM policies, see the
/// [IAM
/// documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
pub condition: Option<Expr>,
/// Specifies the identities requesting access for a Cloud Platform resource.
/// `members` can have the following values:
@@ -1101,7 +1136,7 @@ impl ResponseResult for ProjectBillingInfo {}
/// {
/// "audit_configs": [
/// {
/// "service": "allServices"
/// "service": "allServices",
/// "audit_log_configs": [
/// {
/// "log_type": "DATA_READ",
@@ -1110,18 +1145,18 @@ impl ResponseResult for ProjectBillingInfo {}
/// ]
/// },
/// {
/// "log_type": "DATA_WRITE",
/// "log_type": "DATA_WRITE"
/// },
/// {
/// "log_type": "ADMIN_READ",
/// "log_type": "ADMIN_READ"
/// }
/// ]
/// },
/// {
/// "service": "sampleservice.googleapis.com"
/// "service": "sampleservice.googleapis.com",
/// "audit_log_configs": [
/// {
/// "log_type": "DATA_READ",
/// "log_type": "DATA_READ"
/// },
/// {
/// "log_type": "DATA_WRITE",
@@ -4382,6 +4417,10 @@ impl<'a, C, A> BillingAccountGetIamPolicyCall<'a, C, A> where C: BorrowMut<hyper
/// Requests for policies with any conditional bindings must specify version 3.
/// Policies without any conditional bindings may specify any valid value or
/// leave the field unset.
///
/// To learn which resources support conditions in their IAM policies, see the
/// [IAM
/// documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
///
/// Sets the *options.requested policy version* query property to the given value.
pub fn options_requested_policy_version(mut self, new_value: i32) -> BillingAccountGetIamPolicyCall<'a, C, A> {