mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-23 15:49:49 +01:00
regenerate all crates with updated patch level
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
// This file was generated automatically from 'src/mako/api/lib.rs.mako'
|
||||
// DO NOT EDIT !
|
||||
|
||||
//! This documentation was generated from *Cloud Resource Manager* crate version *1.0.12+20190701*, where *20190701* is the exact revision of the *cloudresourcemanager:v1* schema built by the [mako](http://www.makotemplates.org/) code generator *v1.0.12*.
|
||||
//! This documentation was generated from *Cloud Resource Manager* crate version *1.0.13+20200408*, where *20200408* is the exact revision of the *cloudresourcemanager:v1* schema built by the [mako](http://www.makotemplates.org/) code generator *v1.0.13*.
|
||||
//!
|
||||
//! Everything else about the *Cloud Resource Manager* *v1* API can be found at the
|
||||
//! [official documentation site](https://cloud.google.com/resource-manager).
|
||||
@@ -350,7 +350,7 @@ impl<'a, C, A> CloudResourceManager<C, A>
|
||||
CloudResourceManager {
|
||||
client: RefCell::new(client),
|
||||
auth: RefCell::new(authenticator),
|
||||
_user_agent: "google-api-rust-client/1.0.12".to_string(),
|
||||
_user_agent: "google-api-rust-client/1.0.13".to_string(),
|
||||
_base_url: "https://cloudresourcemanager.googleapis.com/".to_string(),
|
||||
_root_url: "https://cloudresourcemanager.googleapis.com/".to_string(),
|
||||
}
|
||||
@@ -373,7 +373,7 @@ impl<'a, C, A> CloudResourceManager<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.12`.
|
||||
/// It defaults to `google-api-rust-client/1.0.13`.
|
||||
///
|
||||
/// Returns the previously set user-agent.
|
||||
pub fn user_agent(&mut self, agent_name: String) -> String {
|
||||
@@ -530,37 +530,50 @@ pub struct RestoreDefault { _never_set: Option<bool> }
|
||||
impl Part for RestoreDefault {}
|
||||
|
||||
|
||||
/// Defines an Identity and Access Management (IAM) policy. It is used to
|
||||
/// specify access control policies for Cloud Platform resources.
|
||||
/// An Identity and Access Management (IAM) policy, which specifies access
|
||||
/// controls for Google Cloud resources.
|
||||
///
|
||||
/// 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.
|
||||
/// A `Policy` is a collection of `bindings`. A `binding` binds one or more
|
||||
/// `members` to a single `role`. Members can be user accounts, service accounts,
|
||||
/// Google groups, and domains (such as G Suite). A `role` is a named list of
|
||||
/// permissions; each `role` can be an IAM predefined role or a user-created
|
||||
/// custom role.
|
||||
///
|
||||
/// **JSON Example**
|
||||
/// 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.
|
||||
///
|
||||
/// **JSON example:**
|
||||
///
|
||||
/// ````text
|
||||
/// {
|
||||
/// "bindings": [
|
||||
/// {
|
||||
/// "role": "roles/owner",
|
||||
/// "role": "roles/resourcemanager.organizationAdmin",
|
||||
/// "members": [
|
||||
/// "user:mike@example.com",
|
||||
/// "group:admins@example.com",
|
||||
/// "domain:google.com",
|
||||
/// "serviceAccount:my-other-app@appspot.gserviceaccount.com"
|
||||
/// "serviceAccount:my-project-id@appspot.gserviceaccount.com"
|
||||
/// ]
|
||||
/// },
|
||||
/// {
|
||||
/// "role": "roles/viewer",
|
||||
/// "members": ["user:sean@example.com"]
|
||||
/// "role": "roles/resourcemanager.organizationViewer",
|
||||
/// "members": ["user:eve@example.com"],
|
||||
/// "condition": {
|
||||
/// "title": "expirable access",
|
||||
/// "description": "Does not grant access after Sep 2020",
|
||||
/// "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')",
|
||||
/// }
|
||||
/// }
|
||||
/// ]
|
||||
/// ],
|
||||
/// "etag": "BwWWja0YfJA=",
|
||||
/// "version": 3
|
||||
/// }
|
||||
/// ````
|
||||
///
|
||||
/// **YAML Example**
|
||||
/// **YAML example:**
|
||||
///
|
||||
/// ````text
|
||||
/// bindings:
|
||||
@@ -568,15 +581,21 @@ impl Part for RestoreDefault {}
|
||||
/// - user:mike@example.com
|
||||
/// - group:admins@example.com
|
||||
/// - domain:google.com
|
||||
/// - serviceAccount:my-other-app@appspot.gserviceaccount.com
|
||||
/// role: roles/owner
|
||||
/// - serviceAccount:my-project-id@appspot.gserviceaccount.com
|
||||
/// role: roles/resourcemanager.organizationAdmin
|
||||
/// - members:
|
||||
/// - user:sean@example.com
|
||||
/// role: roles/viewer
|
||||
/// - user:eve@example.com
|
||||
/// role: roles/resourcemanager.organizationViewer
|
||||
/// condition:
|
||||
/// title: expirable access
|
||||
/// description: Does not grant access after Sep 2020
|
||||
/// expression: request.time < timestamp('2020-10-01T00:00:00.000Z')
|
||||
/// - etag: BwWWja0YfJA=
|
||||
/// - version: 3
|
||||
/// ````
|
||||
///
|
||||
/// For a description of IAM and its features, see the
|
||||
/// [IAM developer's guide](https://cloud.google.com/iam/docs).
|
||||
/// [IAM documentation](https://cloud.google.com/iam/docs/).
|
||||
///
|
||||
/// # Activities
|
||||
///
|
||||
@@ -600,13 +619,36 @@ pub struct Policy {
|
||||
/// 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.
|
||||
///
|
||||
/// If no `etag` is provided in the call to `setIamPolicy`, then the existing
|
||||
/// policy is overwritten blindly.
|
||||
/// **Important:** If you use IAM Conditions, you must include the `etag` field
|
||||
/// whenever you call `setIamPolicy`. If you omit this field, then IAM allows
|
||||
/// you to overwrite a version `3` policy with a version `1` policy, and all of
|
||||
/// the conditions in the version `3` policy are lost.
|
||||
pub etag: Option<String>,
|
||||
/// Associates a list of `members` to a `role`.
|
||||
/// `bindings` with no members will result in an error.
|
||||
/// Associates a list of `members` to a `role`. Optionally, may specify a
|
||||
/// `condition` that determines how and when the `bindings` are applied. Each
|
||||
/// of the `bindings` must contain at least one member.
|
||||
pub bindings: Option<Vec<Binding>>,
|
||||
/// Deprecated.
|
||||
/// Specifies the format of the policy.
|
||||
///
|
||||
/// Valid values are `0`, `1`, and `3`. Requests that specify an invalid value
|
||||
/// are rejected.
|
||||
///
|
||||
/// Any operation that affects conditional role bindings must specify version
|
||||
/// `3`. This requirement applies to the following operations:
|
||||
///
|
||||
/// * Getting a policy that includes a conditional role binding
|
||||
/// * Adding a conditional role binding to a policy
|
||||
/// * Changing a conditional role binding in a policy
|
||||
/// * Removing any role binding, with or without a condition, from a policy
|
||||
/// that includes conditions
|
||||
///
|
||||
/// **Important:** If you use IAM Conditions, you must include the `etag` field
|
||||
/// whenever you call `setIamPolicy`. If you omit this field, then IAM allows
|
||||
/// you to overwrite a version `3` policy with a version `1` policy, and all of
|
||||
/// the conditions in the version `3` policy are lost.
|
||||
///
|
||||
/// If a policy does not include any conditions, operations on that policy may
|
||||
/// specify any valid version or leave the field unset.
|
||||
pub version: Option<i32>,
|
||||
}
|
||||
|
||||
@@ -760,7 +802,7 @@ impl ResponseResult for ListAvailableOrgPolicyConstraintsResponse {}
|
||||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||||
pub struct ResourceId {
|
||||
/// Required field representing the resource type this id is for.
|
||||
/// At present, the valid types are: "organization" and "folder".
|
||||
/// At present, the valid types are: "organization", "folder", and "project".
|
||||
#[serde(rename="type")]
|
||||
pub type_: Option<String>,
|
||||
/// Required field for the type-specific id. This should correspond to the id
|
||||
@@ -783,9 +825,9 @@ impl Part for ResourceId {}
|
||||
/// if the value contains a ":". Values prefixed with "is:" are treated the
|
||||
/// same as values with no prefix.
|
||||
/// Ancestry subtrees must be in one of the following formats:
|
||||
/// - “projects/<project-id>”, e.g. “projects/tokyo-rain-123”
|
||||
/// - “folders/<folder-id>”, e.g. “folders/1234”
|
||||
/// - “organizations/<organization-id>”, e.g. “organizations/1234”
|
||||
/// - "projects/<project-id>", e.g. "projects/tokyo-rain-123"
|
||||
/// - "folders/<folder-id>", e.g. "folders/1234"
|
||||
/// - "organizations/<organization-id>", e.g. "organizations/1234"
|
||||
/// The `supports_under` field of the associated `Constraint` defines whether
|
||||
/// ancestry prefixes can be used. You can set `allowed_values` and
|
||||
/// `denied_values` in the same `Policy` if `all_values` is
|
||||
@@ -832,7 +874,7 @@ pub struct ListPolicy {
|
||||
///
|
||||
/// Example 1 (no inherited values):
|
||||
/// `organizations/foo` has a `Policy` with values:
|
||||
/// {allowed_values: “E1” allowed_values:”E2”}
|
||||
/// {allowed_values: "E1" allowed_values:"E2"}
|
||||
/// `projects/bar` has `inherit_from_parent` `false` and values:
|
||||
/// {allowed_values: "E3" allowed_values: "E4"}
|
||||
/// The accepted values at `organizations/foo` are `E1`, `E2`.
|
||||
@@ -840,9 +882,9 @@ pub struct ListPolicy {
|
||||
///
|
||||
/// Example 2 (inherited values):
|
||||
/// `organizations/foo` has a `Policy` with values:
|
||||
/// {allowed_values: “E1” allowed_values:”E2”}
|
||||
/// {allowed_values: "E1" allowed_values:"E2"}
|
||||
/// `projects/bar` has a `Policy` with values:
|
||||
/// {value: “E3” value: ”E4” inherit_from_parent: true}
|
||||
/// {value: "E3" value: "E4" inherit_from_parent: true}
|
||||
/// The accepted values at `organizations/foo` are `E1`, `E2`.
|
||||
/// The accepted values at `projects/bar` are `E1`, `E2`, `E3`, and `E4`.
|
||||
///
|
||||
@@ -856,7 +898,7 @@ pub struct ListPolicy {
|
||||
///
|
||||
/// Example 4 (RestoreDefault):
|
||||
/// `organizations/foo` has a `Policy` with values:
|
||||
/// {allowed_values: “E1” allowed_values:”E2”}
|
||||
/// {allowed_values: "E1" allowed_values:"E2"}
|
||||
/// `projects/bar` has a `Policy` with values:
|
||||
/// {RestoreDefault: {}}
|
||||
/// The accepted values at `organizations/foo` are `E1`, `E2`.
|
||||
@@ -873,14 +915,14 @@ pub struct ListPolicy {
|
||||
///
|
||||
/// Example 6 (ListConstraint allowing all):
|
||||
/// `organizations/foo` has a `Policy` with values:
|
||||
/// {allowed_values: “E1” allowed_values: ”E2”}
|
||||
/// {allowed_values: "E1" allowed_values: "E2"}
|
||||
/// `projects/bar` has a `Policy` with:
|
||||
/// {all: ALLOW}
|
||||
/// The accepted values at `organizations/foo` are `E1`, E2`. Any value is accepted at `projects/bar`.
|
||||
///
|
||||
/// Example 7 (ListConstraint allowing none):
|
||||
/// `organizations/foo` has a `Policy` with values:
|
||||
/// {allowed_values: “E1” allowed_values: ”E2”}
|
||||
/// {allowed_values: "E1" allowed_values: "E2"}
|
||||
/// `projects/bar` has a `Policy` with:
|
||||
/// {all: DENY}
|
||||
/// The accepted values at `organizations/foo` are `E1`, E2`. No value is accepted at `projects/bar`.
|
||||
@@ -973,30 +1015,59 @@ pub struct BooleanPolicy {
|
||||
impl Part for BooleanPolicy {}
|
||||
|
||||
|
||||
/// Represents an expression text. Example:
|
||||
/// Represents a textual expression in the Common Expression Language (CEL)
|
||||
/// syntax. CEL is a C-like expression language. The syntax and semantics of CEL
|
||||
/// are documented at https://github.com/google/cel-spec.
|
||||
///
|
||||
/// Example (Comparison):
|
||||
///
|
||||
/// ````text
|
||||
/// title: "User account presence"
|
||||
/// description: "Determines whether the request has a user account"
|
||||
/// expression: "size(request.user) > 0"
|
||||
/// title: "Summary size limit"
|
||||
/// description: "Determines if a summary is less than 100 chars"
|
||||
/// expression: "document.summary.size() < 100"
|
||||
/// ````
|
||||
///
|
||||
/// Example (Equality):
|
||||
///
|
||||
/// ````text
|
||||
/// title: "Requestor is owner"
|
||||
/// description: "Determines if requestor is the document owner"
|
||||
/// expression: "document.owner == request.auth.claims.email"
|
||||
/// ````
|
||||
///
|
||||
/// Example (Logic):
|
||||
///
|
||||
/// ````text
|
||||
/// title: "Public documents"
|
||||
/// description: "Determine whether the document should be publicly visible"
|
||||
/// expression: "document.type != 'private' && document.type != 'internal'"
|
||||
/// ````
|
||||
///
|
||||
/// Example (Data Manipulation):
|
||||
///
|
||||
/// ````text
|
||||
/// title: "Notification string"
|
||||
/// description: "Create a notification string with a timestamp."
|
||||
/// expression: "'New message received at ' + string(document.create_time)"
|
||||
/// ````
|
||||
///
|
||||
/// The exact variables and functions that may be referenced within an expression
|
||||
/// are determined by the service that evaluates it. See the service
|
||||
/// documentation for additional information.
|
||||
///
|
||||
/// This type is not used in any activity, and only used as *part* of another schema.
|
||||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||||
pub struct Expr {
|
||||
/// An optional description of the expression. This is a longer text which
|
||||
/// Optional. Description of the expression. This is a longer text which
|
||||
/// describes the expression, e.g. when hovered over it in a UI.
|
||||
pub description: Option<String>,
|
||||
/// Textual representation of an expression in
|
||||
/// Common Expression Language syntax.
|
||||
///
|
||||
/// The application context of the containing message determines which
|
||||
/// well-known feature set of CEL is supported.
|
||||
/// Textual representation of an expression in Common Expression Language
|
||||
/// syntax.
|
||||
pub expression: Option<String>,
|
||||
/// An optional string indicating the location of the expression for error
|
||||
/// Optional. String indicating the location of the expression for error
|
||||
/// reporting, e.g. a file name and a position in the file.
|
||||
pub location: Option<String>,
|
||||
/// An optional title for the expression, i.e. a short string describing
|
||||
/// 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.
|
||||
pub title: Option<String>,
|
||||
@@ -1034,7 +1105,7 @@ impl RequestValue for SetOrgPolicyRequest {}
|
||||
/// {
|
||||
/// "log_type": "DATA_READ",
|
||||
/// "exempted_members": [
|
||||
/// "user:foo@gmail.com"
|
||||
/// "user:jose@example.com"
|
||||
/// ]
|
||||
/// },
|
||||
/// {
|
||||
@@ -1045,7 +1116,7 @@ impl RequestValue for SetOrgPolicyRequest {}
|
||||
/// ````
|
||||
///
|
||||
/// This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting
|
||||
/// foo@gmail.com from DATA_READ logging.
|
||||
/// jose@example.com from DATA_READ logging.
|
||||
///
|
||||
/// This type is not used in any activity, and only used as *part* of another schema.
|
||||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||||
@@ -1348,21 +1419,18 @@ pub struct Organization {
|
||||
/// This field is required.
|
||||
pub owner: Option<OrganizationOwner>,
|
||||
/// Timestamp when the Organization was created. Assigned by the server.
|
||||
/// @OutputOnly
|
||||
#[serde(rename="creationTime")]
|
||||
pub creation_time: Option<String>,
|
||||
/// A human-readable string that refers to the Organization in the
|
||||
/// GCP Console UI. This string is set by the server and cannot be
|
||||
/// changed. The string will be set to the primary domain (for example,
|
||||
/// "google.com") of the G Suite customer that owns the organization.
|
||||
/// @OutputOnly
|
||||
#[serde(rename="displayName")]
|
||||
pub display_name: Option<String>,
|
||||
/// The organization's current lifecycle state. Assigned by the server.
|
||||
/// @OutputOnly
|
||||
#[serde(rename="lifecycleState")]
|
||||
pub lifecycle_state: Option<String>,
|
||||
/// Output Only. The resource name of the organization. This is the
|
||||
/// Output only. The resource name of the organization. This is the
|
||||
/// organization's relative path in the API. Its format is
|
||||
/// "organizations/[organization_id]". For example, "organizations/1234".
|
||||
pub name: Option<String>,
|
||||
@@ -1508,9 +1576,13 @@ impl RequestValue for ListOrgPoliciesRequest {}
|
||||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||||
pub struct GetPolicyOptions {
|
||||
/// Optional. The policy format version to be returned.
|
||||
/// Acceptable values are 0 and 1.
|
||||
/// If the value is 0, or the field is omitted, policy format version 1 will be
|
||||
/// returned.
|
||||
///
|
||||
/// Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
||||
/// rejected.
|
||||
///
|
||||
/// 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.
|
||||
#[serde(rename="requestedPolicyVersion")]
|
||||
pub requested_policy_version: Option<i32>,
|
||||
}
|
||||
@@ -1564,7 +1636,7 @@ pub struct Binding {
|
||||
/// who is authenticated with a Google account or a service account.
|
||||
///
|
||||
/// * `user:{emailid}`: An email address that represents a specific Google
|
||||
/// account. For example, `alice@gmail.com` .
|
||||
/// account. For example, `alice@example.com` .
|
||||
///
|
||||
///
|
||||
/// * `serviceAccount:{emailid}`: An email address that represents a service
|
||||
@@ -1573,6 +1645,26 @@ pub struct Binding {
|
||||
/// * `group:{emailid}`: An email address that represents a Google group.
|
||||
/// For example, `admins@example.com`.
|
||||
///
|
||||
/// * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique
|
||||
/// identifier) representing a user that has been recently deleted. For
|
||||
/// example, `alice@example.com?uid=123456789012345678901`. If the user is
|
||||
/// recovered, this value reverts to `user:{emailid}` and the recovered user
|
||||
/// retains the role in the binding.
|
||||
///
|
||||
/// * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus
|
||||
/// unique identifier) representing a service account that has been recently
|
||||
/// deleted. For example,
|
||||
/// `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`.
|
||||
/// If the service account is undeleted, this value reverts to
|
||||
/// `serviceAccount:{emailid}` and the undeleted service account retains the
|
||||
/// role in the binding.
|
||||
///
|
||||
/// * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique
|
||||
/// identifier) representing a Google group that has been recently
|
||||
/// deleted. For example, `admins@example.com?uid=123456789012345678901`. If
|
||||
/// the group is recovered, this value reverts to `group:{emailid}` and the
|
||||
/// recovered group retains the role in the binding.
|
||||
///
|
||||
///
|
||||
/// * `domain:{domain}`: The G Suite domain (primary) that represents all the
|
||||
/// users of that domain. For example, `google.com` or `example.com`.
|
||||
@@ -1605,7 +1697,7 @@ impl Part for Binding {}
|
||||
/// {
|
||||
/// "log_type": "DATA_READ",
|
||||
/// "exempted_members": [
|
||||
/// "user:foo@gmail.com"
|
||||
/// "user:jose@example.com"
|
||||
/// ]
|
||||
/// },
|
||||
/// {
|
||||
@@ -1617,7 +1709,7 @@ impl Part for Binding {}
|
||||
/// ]
|
||||
/// },
|
||||
/// {
|
||||
/// "service": "fooservice.googleapis.com"
|
||||
/// "service": "sampleservice.googleapis.com"
|
||||
/// "audit_log_configs": [
|
||||
/// {
|
||||
/// "log_type": "DATA_READ",
|
||||
@@ -1625,7 +1717,7 @@ impl Part for Binding {}
|
||||
/// {
|
||||
/// "log_type": "DATA_WRITE",
|
||||
/// "exempted_members": [
|
||||
/// "user:bar@gmail.com"
|
||||
/// "user:aliya@example.com"
|
||||
/// ]
|
||||
/// }
|
||||
/// ]
|
||||
@@ -1634,9 +1726,9 @@ impl Part for Binding {}
|
||||
/// }
|
||||
/// ````
|
||||
///
|
||||
/// 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.
|
||||
/// For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ
|
||||
/// logging. It also exempts jose@example.com from DATA_READ logging, and
|
||||
/// aliya@example.com from DATA_WRITE logging.
|
||||
///
|
||||
/// This type is not used in any activity, and only used as *part* of another schema.
|
||||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||||
@@ -2394,7 +2486,7 @@ impl<'a, C, A> LienMethods<'a, C, A> {
|
||||
///
|
||||
/// # Arguments
|
||||
///
|
||||
/// * `name` - The name/identifier of the Lien.
|
||||
/// * `name` - Required. The name/identifier of the Lien.
|
||||
pub fn get(&self, name: &str) -> LienGetCall<'a, C, A> {
|
||||
LienGetCall {
|
||||
hub: self.hub,
|
||||
@@ -2415,7 +2507,7 @@ impl<'a, C, A> LienMethods<'a, C, A> {
|
||||
///
|
||||
/// # Arguments
|
||||
///
|
||||
/// * `name` - The name/identifier of the Lien to delete.
|
||||
/// * `name` - Required. The name/identifier of the Lien to delete.
|
||||
pub fn delete(&self, name: &str) -> LienDeleteCall<'a, C, A> {
|
||||
LienDeleteCall {
|
||||
hub: self.hub,
|
||||
@@ -2555,13 +2647,10 @@ impl<'a, C, A> ProjectMethods<'a, C, A> {
|
||||
/// Create a builder to help you perform the following task:
|
||||
///
|
||||
/// Request that a new Project be created. The result is an Operation which
|
||||
/// can be used to track the creation process. It is automatically deleted
|
||||
/// after a few hours, so there is no need to call DeleteOperation.
|
||||
///
|
||||
/// Our SLO permits Project creation to take up to 30 seconds at the 90th
|
||||
/// percentile. As of 2016-08-29, we are observing 6 seconds 50th percentile
|
||||
/// latency. 95th percentile latency is around 11 seconds. We recommend
|
||||
/// polling at the 5th second with an exponential backoff.
|
||||
/// can be used to track the creation process. This process usually takes a few
|
||||
/// seconds, but can sometimes take much longer. The tracking Operation is
|
||||
/// automatically deleted after a few hours, so there is no need to call
|
||||
/// DeleteOperation.
|
||||
///
|
||||
/// Authorization requires the Google IAM permission
|
||||
/// `resourcemanager.projects.create` on the specified parent for the new
|
||||
@@ -2799,7 +2888,11 @@ impl<'a, C, A> ProjectMethods<'a, C, A> {
|
||||
/// + Project does not support `allUsers` and `allAuthenticatedUsers` as
|
||||
/// `members` in a `Binding` of a `Policy`.
|
||||
///
|
||||
/// + The owner role can be granted only to `user` and `serviceAccount`.
|
||||
/// + The owner role can be granted to a `user`, `serviceAccount`, or a group
|
||||
/// that is part of an organization. For example,
|
||||
/// group@myownpersonaldomain.com could be added as an owner to a project in
|
||||
/// the myownpersonaldomain.com organization, but not the examplepetstore.com
|
||||
/// organization.
|
||||
///
|
||||
/// + Service accounts can be made owners of a project directly
|
||||
/// without any restrictions. However, to be added as an owner, a user must be
|
||||
@@ -8146,7 +8239,7 @@ impl<'a, C, A> LienGetCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth
|
||||
}
|
||||
|
||||
|
||||
/// The name/identifier of the Lien.
|
||||
/// Required. The name/identifier of the Lien.
|
||||
///
|
||||
/// Sets the *name* path property to the given value.
|
||||
///
|
||||
@@ -8398,7 +8491,7 @@ impl<'a, C, A> LienDeleteCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oa
|
||||
}
|
||||
|
||||
|
||||
/// The name/identifier of the Lien to delete.
|
||||
/// Required. The name/identifier of the Lien to delete.
|
||||
///
|
||||
/// Sets the *name* path property to the given value.
|
||||
///
|
||||
@@ -8638,8 +8731,12 @@ impl<'a, C, A> LienListCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oaut
|
||||
}
|
||||
|
||||
|
||||
/// The name of the resource to list all attached Liens.
|
||||
/// Required. The name of the resource to list all attached Liens.
|
||||
/// For example, `projects/1234`.
|
||||
///
|
||||
/// (google.api.field_policy).resource_type annotation is not set since the
|
||||
/// parent depends on the meta api implementation. This field could be a
|
||||
/// project or other sub project resources.
|
||||
///
|
||||
/// Sets the *parent* query property to the given value.
|
||||
pub fn parent(mut self, new_value: &str) -> LienListCall<'a, C, A> {
|
||||
@@ -9273,13 +9370,10 @@ impl<'a, C, A> ProjectGetIamPolicyCall<'a, C, A> where C: BorrowMut<hyper::Clien
|
||||
|
||||
|
||||
/// Request that a new Project be created. The result is an Operation which
|
||||
/// can be used to track the creation process. It is automatically deleted
|
||||
/// after a few hours, so there is no need to call DeleteOperation.
|
||||
///
|
||||
/// Our SLO permits Project creation to take up to 30 seconds at the 90th
|
||||
/// percentile. As of 2016-08-29, we are observing 6 seconds 50th percentile
|
||||
/// latency. 95th percentile latency is around 11 seconds. We recommend
|
||||
/// polling at the 5th second with an exponential backoff.
|
||||
/// can be used to track the creation process. This process usually takes a few
|
||||
/// seconds, but can sometimes take much longer. The tracking Operation is
|
||||
/// automatically deleted after a few hours, so there is no need to call
|
||||
/// DeleteOperation.
|
||||
///
|
||||
/// Authorization requires the Google IAM permission
|
||||
/// `resourcemanager.projects.create` on the specified parent for the new
|
||||
@@ -12054,7 +12148,11 @@ impl<'a, C, A> ProjectListCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: o
|
||||
/// + Project does not support `allUsers` and `allAuthenticatedUsers` as
|
||||
/// `members` in a `Binding` of a `Policy`.
|
||||
///
|
||||
/// + The owner role can be granted only to `user` and `serviceAccount`.
|
||||
/// + The owner role can be granted to a `user`, `serviceAccount`, or a group
|
||||
/// that is part of an organization. For example,
|
||||
/// group@myownpersonaldomain.com could be added as an owner to a project in
|
||||
/// the myownpersonaldomain.com organization, but not the examplepetstore.com
|
||||
/// organization.
|
||||
///
|
||||
/// + Service accounts can be made owners of a project directly
|
||||
/// without any restrictions. However, to be added as an owner, a user must be
|
||||
|
||||
Reference in New Issue
Block a user