use serde::Serialize;
use std::cell::RefCell;
use std::rc::Rc;
use terrars::*;
use super::provider::ProviderGitlab;
#[derive(Serialize)]
struct DataApplicationData {
#[serde(skip_serializing_if = "Vec::is_empty")]
depends_on: Vec<String>,
#[serde(skip_serializing_if = "SerdeSkipDefault::is_default")]
provider: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
for_each: Option<String>,
id: PrimField<String>,
}
struct DataApplication_ {
shared: StackShared,
tf_id: String,
data: RefCell<DataApplicationData>,
}
#[derive(Clone)]
pub struct DataApplication(Rc<DataApplication_>);
impl DataApplication {
fn shared(&self) -> &StackShared {
&self.0.shared
}
pub fn depends_on(self, dep: &impl Referable) -> Self {
self.0.data.borrow_mut().depends_on.push(dep.extract_ref());
self
}
pub fn set_provider(&self, provider: &ProviderGitlab) -> &Self {
self.0.data.borrow_mut().provider = Some(provider.provider_ref());
self
}
#[doc= "Get a reference to the value of field `application_id` after provisioning.\nInternal GitLab application id."]
pub fn application_id(&self) -> PrimExpr<String> {
PrimExpr::new(self.shared().clone(), format!("{}.application_id", self.extract_ref()))
}
#[doc= "Get a reference to the value of field `confidential` after provisioning.\nIndicates if the application is kept confidential."]
pub fn confidential(&self) -> PrimExpr<bool> {
PrimExpr::new(self.shared().clone(), format!("{}.confidential", self.extract_ref()))
}
#[doc= "Get a reference to the value of field `id` after provisioning.\nThe ID of this Terraform resource. In the format of `<application_id>`."]
pub fn id(&self) -> PrimExpr<String> {
PrimExpr::new(self.shared().clone(), format!("{}.id", self.extract_ref()))
}
#[doc= "Get a reference to the value of field `name` after provisioning.\nThe name of the GitLab application."]
pub fn name(&self) -> PrimExpr<String> {
PrimExpr::new(self.shared().clone(), format!("{}.name", self.extract_ref()))
}
#[doc= "Get a reference to the value of field `redirect_url` after provisioning.\nThe redirect url of the application."]
pub fn redirect_url(&self) -> PrimExpr<String> {
PrimExpr::new(self.shared().clone(), format!("{}.redirect_url", self.extract_ref()))
}
}
impl Referable for DataApplication {
fn extract_ref(&self) -> String {
format!("data.{}.{}", self.0.extract_datasource_type(), self.0.extract_tf_id())
}
}
impl Datasource for DataApplication { }
impl ToListMappable for DataApplication {
type O = ListRef<DataApplicationRef>;
fn do_map(self, base: String) -> Self::O {
self.0.data.borrow_mut().for_each = Some(format!("${{{}}}", base));
ListRef::new(self.0.shared.clone(), self.extract_ref())
}
}
impl Datasource_ for DataApplication_ {
fn extract_datasource_type(&self) -> String {
"gitlab_application".into()
}
fn extract_tf_id(&self) -> String {
self.tf_id.clone()
}
fn extract_value(&self) -> serde_json::Value {
serde_json::to_value(&self.data).unwrap()
}
}
pub struct BuildDataApplication {
pub tf_id: String,
#[doc= "The ID of this Terraform resource. In the format of `<application_id>`."]
pub id: PrimField<String>,
}
impl BuildDataApplication {
pub fn build(self, stack: &mut Stack) -> DataApplication {
let out = DataApplication(Rc::new(DataApplication_ {
shared: stack.shared.clone(),
tf_id: self.tf_id,
data: RefCell::new(DataApplicationData {
depends_on: core::default::Default::default(),
provider: None,
for_each: None,
id: self.id,
}),
}));
stack.add_datasource(out.0.clone());
out
}
}
pub struct DataApplicationRef {
shared: StackShared,
base: String,
}
impl Ref for DataApplicationRef {
fn new(shared: StackShared, base: String) -> Self {
Self {
shared: shared,
base: base,
}
}
}
impl DataApplicationRef {
fn shared(&self) -> &StackShared {
&self.shared
}
fn extract_ref(&self) -> String {
self.base.clone()
}
#[doc= "Get a reference to the value of field `application_id` after provisioning.\nInternal GitLab application id."]
pub fn application_id(&self) -> PrimExpr<String> {
PrimExpr::new(self.shared().clone(), format!("{}.application_id", self.extract_ref()))
}
#[doc= "Get a reference to the value of field `confidential` after provisioning.\nIndicates if the application is kept confidential."]
pub fn confidential(&self) -> PrimExpr<bool> {
PrimExpr::new(self.shared().clone(), format!("{}.confidential", self.extract_ref()))
}
#[doc= "Get a reference to the value of field `id` after provisioning.\nThe ID of this Terraform resource. In the format of `<application_id>`."]
pub fn id(&self) -> PrimExpr<String> {
PrimExpr::new(self.shared().clone(), format!("{}.id", self.extract_ref()))
}
#[doc= "Get a reference to the value of field `name` after provisioning.\nThe name of the GitLab application."]
pub fn name(&self) -> PrimExpr<String> {
PrimExpr::new(self.shared().clone(), format!("{}.name", self.extract_ref()))
}
#[doc= "Get a reference to the value of field `redirect_url` after provisioning.\nThe redirect url of the application."]
pub fn redirect_url(&self) -> PrimExpr<String> {
PrimExpr::new(self.shared().clone(), format!("{}.redirect_url", self.extract_ref()))
}
}