make regen-apis

This commit is contained in:
OMGeeky
2023-10-23 12:55:17 +02:00
parent 8fc78fe0ae
commit c356d5fd0e
887 changed files with 9716 additions and 8753 deletions

View File

@@ -1101,7 +1101,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("name", self._name);
params.push("name", &self._name);
if let Some(value) = self._organization_id.as_ref() {
params.push("organizationId", value);
}
@@ -1380,7 +1380,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("resource", self._resource);
params.push("resource", &self._resource);
params.extend(self._additional_params.iter());
@@ -1951,7 +1951,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("resource", self._resource);
params.push("resource", &self._resource);
params.extend(self._additional_params.iter());
@@ -2243,7 +2243,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("resource", self._resource);
params.push("resource", &self._resource);
params.extend(self._additional_params.iter());
@@ -2535,7 +2535,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("name", self._name);
params.push("name", &self._name);
params.extend(self._additional_params.iter());
@@ -3105,7 +3105,7 @@ where
}
let mut params = Params::with_capacity(3 + self._additional_params.len());
params.push("projectId", self._project_id);
params.push("projectId", &self._project_id);
params.extend(self._additional_params.iter());
@@ -3367,7 +3367,7 @@ where
}
let mut params = Params::with_capacity(3 + self._additional_params.len());
params.push("projectId", self._project_id);
params.push("projectId", &self._project_id);
params.extend(self._additional_params.iter());
@@ -3636,7 +3636,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("projectId", self._project_id);
params.push("projectId", &self._project_id);
params.extend(self._additional_params.iter());
@@ -3928,7 +3928,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("resource", self._resource);
params.push("resource", &self._resource);
params.extend(self._additional_params.iter());
@@ -4499,7 +4499,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("resource", self._resource);
params.push("resource", &self._resource);
params.extend(self._additional_params.iter());
@@ -4791,7 +4791,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("resource", self._resource);
params.push("resource", &self._resource);
params.extend(self._additional_params.iter());
@@ -5083,7 +5083,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("projectId", self._project_id);
params.push("projectId", &self._project_id);
params.extend(self._additional_params.iter());
@@ -5375,7 +5375,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("projectId", self._project_id);
params.push("projectId", &self._project_id);
params.extend(self._additional_params.iter());

View File

@@ -30,3 +30,6 @@ pub use method_builders::*;
mod call_builders;
pub use call_builders::*;
mod enums;
pub use enums::*;

View File

@@ -48,7 +48,7 @@ pub struct AuditLogConfig {
/// The log type that this config enables.
#[serde(rename="logType")]
pub log_type: Option<String>,
pub log_type: Option<AuditLogConfigLogTypeEnum>,
}
impl client::Part for AuditLogConfig {}
@@ -258,7 +258,7 @@ pub struct Organization {
/// The organization's current lifecycle state. Assigned by the server.
#[serde(rename="lifecycleState")]
pub lifecycle_state: Option<String>,
pub lifecycle_state: Option<OrganizationLifecycleStateEnum>,
/// 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>,
@@ -355,7 +355,7 @@ pub struct Project {
/// The Project lifecycle state. Read-only.
#[serde(rename="lifecycleState")]
pub lifecycle_state: Option<String>,
pub lifecycle_state: Option<ProjectLifecycleStateEnum>,
/// The optional user-assigned display name of the Project. When present it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, single-quote, double-quote, space, and exclamation point. Example: `My Project` Read-write.
pub name: Option<String>,