Exemple #1
0
 def __init__(self, organization, **kwargs):
     self.type = 'ORGANIZATIONAL_UNIT'
     self.organization_id = organization.id
     self.master_account_id = organization.master_account_id
     self.id = utils.make_random_ou_id(organization.root_id)
     self.name = kwargs.get('Name')
     self.parent_id = kwargs.get('ParentId')
     self._arn_format = utils.OU_ARN_FORMAT
Exemple #2
0
 def __init__(self, organization, **kwargs):
     self.type = 'ORGANIZATIONAL_UNIT'
     self.organization_id = organization.id
     self.master_account_id = organization.master_account_id
     self.id = utils.make_random_ou_id(organization.root_id)
     self.name = kwargs.get('Name')
     self.parent_id = kwargs.get('ParentId')
     self._arn_format = utils.OU_ARN_FORMAT
Exemple #3
0
 def __init__(self, organization, **kwargs):
     self.type = "ORGANIZATIONAL_UNIT"
     self.organization_id = organization.id
     self.master_account_id = organization.master_account_id
     self.id = utils.make_random_ou_id(organization.root_id)
     self.name = kwargs.get("Name")
     self.parent_id = kwargs.get("ParentId")
     self._arn_format = utils.OU_ARN_FORMAT
     self.attached_policies = []
def test_make_random_ou_id():
    root_id = utils.make_random_root_id()
    ou_id = utils.make_random_ou_id(root_id)
    ou_id.should.match(utils.OU_ID_REGEX)