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
49
50
use serde::{Deserialize, Serialize};
#[allow(unused_imports)]
use super::*;
/// Provides identifying information for the specified managed instance group.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ManagedInstanceGroupDetails {
/// The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance group.
pub id: String,
/// Managed instance group name.
#[serde(skip_serializing_if = "Option::is_none")]
pub display_name: Option<String>,
}
/// Required fields for ManagedInstanceGroupDetails
pub struct ManagedInstanceGroupDetailsRequired {
/// The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance group.
pub id: String,
}
impl ManagedInstanceGroupDetails {
/// Create a new ManagedInstanceGroupDetails with required fields
pub fn new(required: ManagedInstanceGroupDetailsRequired) -> Self {
Self {
id: required.id,
display_name: None,
}
}
/// Set id
pub fn set_id(mut self, value: String) -> Self {
self.id = value;
self
}
/// Set display_name
pub fn set_display_name(mut self, value: Option<String>) -> Self {
self.display_name = value;
self
}
/// Set display_name (unwraps Option)
pub fn with_display_name(mut self, value: impl Into<String>) -> Self {
self.display_name = Some(value.into());
self
}
}