1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use serde::{Deserialize, Serialize}; /*
* Cloud Resource Manager API
*
* Creates, reads, and updates metadata for Google Cloud Platform resource containers.
*
* The version of the OpenAPI document: v3
*
* Generated by: https://openapi-generator.tech
*/
use crate::google_rest_apis::cloudresourcemanager_v3::models;
/// Lien : A Lien represents an encumbrance on the actions that can be performed on a resource.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct Lien {
/// The creation time of this Lien.
#[serde(rename = "createTime", skip_serializing_if = "Option::is_none")]
pub create_time: Option<String>,
/// A system-generated unique identifier for this Lien. Example: `liens/1234abcd`
#[serde(rename = "name", skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
/// A stable, user-visible/meaningful string identifying the origin of the Lien, intended to be inspected programmatically. Maximum length of 200 characters. Example: 'compute.googleapis.com'
#[serde(rename = "origin", skip_serializing_if = "Option::is_none")]
pub origin: Option<String>,
/// A reference to the resource this Lien is attached to. The server will validate the parent against those for which Liens are supported. Example: `projects/1234`
#[serde(rename = "parent", skip_serializing_if = "Option::is_none")]
pub parent: Option<String>,
/// Concise user-visible strings indicating why an action cannot be performed on a resource. Maximum length of 200 characters. Example: 'Holds production API key'
#[serde(rename = "reason", skip_serializing_if = "Option::is_none")]
pub reason: Option<String>,
/// The types of operations which should be blocked as a result of this Lien. Each value should correspond to an IAM permission. The server will validate the permissions against those for which Liens are supported. An empty list is meaningless and will be rejected. Example: ['resourcemanager.projects.delete']
#[serde(rename = "restrictions", skip_serializing_if = "Option::is_none")]
pub restrictions: Option<Vec<String>>,
}
impl Lien {
/// A Lien represents an encumbrance on the actions that can be performed on a resource.
pub fn new() -> Lien {
Lien {
create_time: None,
name: None,
origin: None,
parent: None,
reason: None,
restrictions: None,
}
}
}