# pyawsopstoolkit_models
The **pyawsopstoolkit_models** provides a comprehensive collection of data model classes specifically designed for
various AWS Ops Toolkit packages. These models are meticulously crafted to align closely with AWS services and their
respective properties, ensuring seamless integration and optimal performance.
## Getting Started
Ready to supercharge your AWS operations? Let's get started with **pyawsopstoolkit_models**!
### Installation
Install **pyawsopstoolkit_models** via pip:
```bash
pip install pyawsopstoolkit_models
```
## Documentation
- [ec2](#ec2)
- [security_group](#security_group)
- [iam](#iam)
- [permissions_boundary](#permissions_boundary)
- [role](#role)
- [user](#user)
### ec2
The **pyawsopstoolkit_models.ec2** subpackage offers specialized data model classes tailored for the Elastic Compute
Cloud (EC2) of AWS (Amazon Web Services). These models facilitate the efficient handling and manipulation of EC2,
ensuring seamless integration and interaction.
#### security_group
##### IPPermission
A class representing the IP Permissions for an EC2 Security Group.
###### Constructors
- `IPPermission(from_port: int, to_port: int, ip_protocol: str, ip_ranges: Optional[list[IPRange]] = None, ipv6_ranges: Optional[list[IPv6Range]] = None, prefix_list_ids: Optional[list[PrefixListID]] = None, user_id_group_pairs: Optional[list[UserIDGroupPair]] = None) -> None`:
Initializes a new **IPPermission** object with the specified parameters.
###### Methods
- `to_dict() -> dict`: Returns a dictionary representation of the **IPPermission** object.
###### Properties
- `from_port`: The starting port of an EC2 security group rule entry.
- `ip_protocol`: The IP protocol of an EC2 security group rule entry.
- `ip_ranges`: The list of IPv4 ranges for an EC2 security group rule entry.
- `ipv6_ranges`: The list of IPv6 ranges for an EC2 security group rule entry.
- `prefix_lists`: The list of prefix lists for an EC2 security group rule entry.
- `to_port`: The ending port of an EC2 security group rule entry.
- `user_id_group_pairs`: The list of user ID group pairs for an EC2 security group rule entry.
##### IPRange
A class representing an IPv4 range for an EC2 Security Group.
###### Constructors
- `IPRange(cidr_ip: str, description: Optional[str] = None) -> None`: Initializes a new **IPRange** object with the
specified parameters.
###### Methods
- `to_dict() -> dict`: Returns a dictionary representation of the **IPRange** object.
###### Properties
- `cidr_ip`: The IPv4 CIDR range.
- `description`: The description of the IPv4 CIDR range.
##### IPv6Range
A class representing an IPv6 range for an EC2 Security Group.
###### Constructors
- `IPv6Range(cidr_ipv6: str, description: Optional[str] = None) -> None`: Initializes a new **IPv6Range** object with
the specified parameters.
###### Methods
- `to_dict() -> dict`: Returns a dictionary representation of the **IPv6Range** object.
###### Properties
- `cidr_ipv6`: The IPv6 CIDR range.
- `description`: The description of the IPv6 CIDR range.
##### PrefixList
A class representing a Prefix List for an EC2 Security Group.
###### Constructors
- `PrefixList(id: str, description: Optional[str] = None) -> None`: Initializes a new **PrefixList** object with the
specified parameters.
###### Methods
- `to_dict() -> dict`: Returns a dictionary representation of the **PrefixList** object.
###### Properties
- `id`: The unique identifier of the prefix list.
- `description`: The description of the prefix list.
##### SecurityGroup
A class representing an EC2 Security Group.
###### Constructors
- `SecurityGroup(id: str, name: str, owner_id: str, vpc_id: str, ip_permissions: Optional[list[IPPermission]] = None, ip_permissions_egress: Optional[list[IPPermission]] = None, description: Optional[str] = None, tags: Optional[list] = None, in_use: Optional[bool] = None) -> None`:
Initializes a new **SecurityGroup** object with the specified parameters.
###### Methods
- `to_dict() -> dict`: Returns a dictionary representation of the **SecurityGroup** object.
###### Properties
- `description`: The description of the EC2 security group.
- `id`: The unique identifier of the EC2 security group.
- `in_use`: Flag to indicate if the EC2 security group is associated with any Elastic Network Interface (ENI).
- `ip_permissions_egress`: The list of outbound rule entries for the EC2 security group.
- `ip_permissions`: The list of inbound rule entries for the EC2 security group.
- `name`: The name of the EC2 security group.
- `owner_id`: The owner ID of the EC2 security group.
- `tags`: The tags associated with the EC2 security group.
- `vpc_id`: The VPC ID of the EC2 security group.
##### UserIDGroupPair
A class representing a User ID Group Pair for an EC2 Security Group.
###### Constructors
- `UserIDGroupPair(id: str, name: str, status: str, user_id: str, vpc_id: str, description: Optional[str] = None, vpc_peering_connection_id: Optional[str] = None) -> None`:
Initializes a new **UserIDGroupPair** object with the specified parameters.
###### Methods
- `to_dict() -> dict`: Returns a dictionary representation of the **UserIDGroupPair** object.
###### Properties
- `description`: The description of the user ID group pair.
- `id`: The unique identifier of the user ID group pair.
- `name`: The name of the user ID group pair.
- `status`: The status of the user ID group pair.
- `user_id`: The owner/user ID of the user ID group pair.
- `vpc_id`: The VPC ID of the user ID group pair.
- `vpc_peering_connection_id`: The VPC peering connection ID of the user ID group pair.
### iam
The **pyawsopstoolkit_models.iam** subpackage offers specialized data model classes tailored for the Identity and Access
Management (IAM) service of AWS (Amazon Web Services). These models facilitate the efficient handling and manipulation
of IAM resources, ensuring seamless integration and interaction with AWS IAM functionalities.
#### permissions_boundary
##### PermissionsBoundary
A class representing an IAM role permissions boundary.
###### Constructors
- `PermissionsBoundary(type: str, arn: str) -> None`: Initializes a **PermissionsBoundary** object with the specified
type and Amazon Resource Name (ARN).
###### Methods
- `to_dict() -> dict`: Returns a dictionary representation of the **PermissionsBoundary** object.
###### Properties
- `arn`: The Amazon Resource Name (ARN) of the permissions boundary.
- `type`: The type of the permissions boundary.
#### role
##### LastUsed
The **LastUsed** class encapsulates the information regarding the last time an IAM role was used.
###### Constructors
- `LastUsed(used_date: Optional[datetime] = None, region: Optional[str] = None) -> None`: Initializes a new **LastUsed**
instance with optional parameters for the date and time the IAM role was last used and the AWS region where it was
used.
###### Methods
- `to_dict() -> dict`: Returns a dictionary representation of the **LastUsed** object.
###### Properties
- `region`: The AWS region where the IAM role was last used.
- `used_date`: The last date and time the IAM role was used.
##### Role
The **Role** class represents an IAM role in AWS, encompassing various attributes and methods to manage the role
effectively.
###### Constructors
- `Role(account: IAccount, name: str, id: str, arn: str, max_session_duration: int, path: str = '/', created_date: Optional[datetime] = None, assume_role_policy_document: Optional[dict] = None, description: Optional[str] = None, permissions_boundary: Optional[PermissionsBoundary] = None, last_used: Optional[LastUsed] = None, tags: Optional[list] = None) -> None`:
Initializes a new **Role** instance with comprehensive parameters to define the IAM role, including account details,
role name, ID, ARN, session duration, path, creation date, assume role policy, description, permissions boundary, last
used information, and associated tags.
###### Methods
- `to_dict() -> dict`: Returns a dictionary representation of the **Role** object.
###### Properties
- `account`: The AWS account associated with the IAM role.
- `arn`: The Amazon Resource Name (ARN) of the IAM role.
- `assume_role_policy_document`: The trust relationship or assume role policy document defining the permissions for
assuming the IAM role.
- `created_date`: The created date of the IAM role.
- `description`: A brief description of the IAM role.
- `id`: The unique identifier of the IAM role.
- `last_used`: An instance of LastUsed representing the last time the IAM role was utilized.
- `max_session_duration`: The maximum duration (in seconds) for which the IAM role can be assumed in a single session.
- `name`: The name of the IAM role.
- `path`: The path under which the IAM role is created, useful for organizational purposes.
- `permissions_boundary`: An optional permissions boundary that defines the maximum permissions the IAM role can have.
- `tags`: A list of tags associated with the IAM role for categorization and identification purposes.
#### user
##### AccessKey
A class representing the access key information of an IAM user.
###### Constructors
- `AccessKey(id: str, status: str, created_date: Optional[datetime] = None, last_used_date: Optional[datetime] = None, last_used_service: Optional[str] = None, last_used_region: Optional[str] = None) -> None`:
Initializes a new **AccessKey** object with the specified parameters.
###### Methods
- `to_dict() -> dict`: Returns a dictionary representation of the **AccessKey** object.
###### Properties
- `created_date`: The creation date of the IAM user access key.
- `id`: The unique identifier of the IAM user access key.
- `last_used_date`: The last usage date of the IAM user access key.
- `last_used_region`: The AWS region where the IAM user access key was last used.
- `last_used_service`: The AWS service where the IAM user access key was last used.
- `status`: The current status of the IAM user access key (e.g., Active, Inactive).
##### LoginProfile
A class representing the login profile information of an IAM user.
###### Constructors
- `LoginProfile(created_date: Optional[datetime] = None, password_reset_required: Optional[bool] = False) -> None`:
Initializes a new **LoginProfile** object with the specified parameters.
###### Methods
- `to_dict() -> dict`: Returns a dictionary representation of the **LoginProfile** object.
###### Properties
- `created_date`: The creation date of the IAM user login profile.
- `password_reset_required`: Indicates whether a password reset is required for the IAM user.
##### User
A class representing an IAM user.
###### Constructors
- `User(account: IAccount, name: str, id: str, arn: str, path: str = '/', created_date: Optional[datetime] = None, password_last_used_date: Optional[datetime] = None, permissions_boundary: Optional[PermissionsBoundary] = None, login_profile: Optional[LoginProfile] = None, access_keys: Optional[list[AccessKey]] = None, tags: Optional[list] = None) -> None`:
Initializes a new **User** object with the specified parameters.
###### Methods
- `to_dict() -> dict`: Returns a dictionary representation of the **User** object.
###### Properties
- `access_keys`: A list of access keys associated with the IAM user.
- `account`: The AWS account associated with the IAM user.
- `arn`: The Amazon Resource Name (ARN) of the IAM user.
- `created_date`: The creation date of the IAM user.
- `id`: The unique ID of the IAM user.
- `login_profile`: The login profile associated with the IAM user.
- `name`: The name of the IAM user.
- `password_last_used_date`: The last date the IAM user's password was used.
- `path`: The path of the IAM user within the AWS IAM hierarchy.
- `permissions_boundary`: The permissions boundary associated with the IAM user.
- `tags`: A list of tags associated with the IAM user, useful for organization and management purposes.
# License
Please refer to the [MIT License](LICENSE) within the project for more information.
# Contributing
We welcome contributions from the community! Whether you have ideas for new features, bug fixes, or enhancements, feel
free to open an issue or submit a pull request on [GitHub](https://github.com/coldsofttech/pyawsopstoolkit-models).
Raw data
{
"_id": null,
"home_page": "https://github.com/coldsofttech/pyawsopstoolkit-models.git",
"name": "pyawsopstoolkit-models",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "aws, toolkit, operations, tools, development, python, models, utilities, amazon-web-services",
"author": "coldsofttech",
"author_email": null,
"download_url": null,
"platform": null,
"description": "# pyawsopstoolkit_models\n\nThe **pyawsopstoolkit_models** provides a comprehensive collection of data model classes specifically designed for\nvarious AWS Ops Toolkit packages. These models are meticulously crafted to align closely with AWS services and their\nrespective properties, ensuring seamless integration and optimal performance.\n\n## Getting Started\n\nReady to supercharge your AWS operations? Let's get started with **pyawsopstoolkit_models**!\n\n### Installation\n\nInstall **pyawsopstoolkit_models** via pip:\n\n```bash\npip install pyawsopstoolkit_models\n```\n\n## Documentation\n\n- [ec2](#ec2)\n - [security_group](#security_group)\n- [iam](#iam)\n - [permissions_boundary](#permissions_boundary)\n - [role](#role)\n - [user](#user)\n\n### ec2\n\nThe **pyawsopstoolkit_models.ec2** subpackage offers specialized data model classes tailored for the Elastic Compute\nCloud (EC2) of AWS (Amazon Web Services). These models facilitate the efficient handling and manipulation of EC2,\nensuring seamless integration and interaction.\n\n#### security_group\n\n##### IPPermission\n\nA class representing the IP Permissions for an EC2 Security Group.\n\n###### Constructors\n\n- `IPPermission(from_port: int, to_port: int, ip_protocol: str, ip_ranges: Optional[list[IPRange]] = None, ipv6_ranges: Optional[list[IPv6Range]] = None, prefix_list_ids: Optional[list[PrefixListID]] = None, user_id_group_pairs: Optional[list[UserIDGroupPair]] = None) -> None`:\n Initializes a new **IPPermission** object with the specified parameters.\n\n###### Methods\n\n- `to_dict() -> dict`: Returns a dictionary representation of the **IPPermission** object.\n\n###### Properties\n\n- `from_port`: The starting port of an EC2 security group rule entry.\n- `ip_protocol`: The IP protocol of an EC2 security group rule entry.\n- `ip_ranges`: The list of IPv4 ranges for an EC2 security group rule entry.\n- `ipv6_ranges`: The list of IPv6 ranges for an EC2 security group rule entry.\n- `prefix_lists`: The list of prefix lists for an EC2 security group rule entry.\n- `to_port`: The ending port of an EC2 security group rule entry.\n- `user_id_group_pairs`: The list of user ID group pairs for an EC2 security group rule entry.\n\n##### IPRange\n\nA class representing an IPv4 range for an EC2 Security Group.\n\n###### Constructors\n\n- `IPRange(cidr_ip: str, description: Optional[str] = None) -> None`: Initializes a new **IPRange** object with the\n specified parameters.\n\n###### Methods\n\n- `to_dict() -> dict`: Returns a dictionary representation of the **IPRange** object.\n\n###### Properties\n\n- `cidr_ip`: The IPv4 CIDR range.\n- `description`: The description of the IPv4 CIDR range.\n\n##### IPv6Range\n\nA class representing an IPv6 range for an EC2 Security Group.\n\n###### Constructors\n\n- `IPv6Range(cidr_ipv6: str, description: Optional[str] = None) -> None`: Initializes a new **IPv6Range** object with\n the specified parameters.\n\n###### Methods\n\n- `to_dict() -> dict`: Returns a dictionary representation of the **IPv6Range** object.\n\n###### Properties\n\n- `cidr_ipv6`: The IPv6 CIDR range.\n- `description`: The description of the IPv6 CIDR range.\n\n##### PrefixList\n\nA class representing a Prefix List for an EC2 Security Group.\n\n###### Constructors\n\n- `PrefixList(id: str, description: Optional[str] = None) -> None`: Initializes a new **PrefixList** object with the\n specified parameters.\n\n###### Methods\n\n- `to_dict() -> dict`: Returns a dictionary representation of the **PrefixList** object.\n\n###### Properties\n\n- `id`: The unique identifier of the prefix list.\n- `description`: The description of the prefix list.\n\n##### SecurityGroup\n\nA class representing an EC2 Security Group.\n\n###### Constructors\n\n- `SecurityGroup(id: str, name: str, owner_id: str, vpc_id: str, ip_permissions: Optional[list[IPPermission]] = None, ip_permissions_egress: Optional[list[IPPermission]] = None, description: Optional[str] = None, tags: Optional[list] = None, in_use: Optional[bool] = None) -> None`:\n Initializes a new **SecurityGroup** object with the specified parameters.\n\n###### Methods\n\n- `to_dict() -> dict`: Returns a dictionary representation of the **SecurityGroup** object.\n\n###### Properties\n\n- `description`: The description of the EC2 security group.\n- `id`: The unique identifier of the EC2 security group.\n- `in_use`: Flag to indicate if the EC2 security group is associated with any Elastic Network Interface (ENI).\n- `ip_permissions_egress`: The list of outbound rule entries for the EC2 security group.\n- `ip_permissions`: The list of inbound rule entries for the EC2 security group.\n- `name`: The name of the EC2 security group.\n- `owner_id`: The owner ID of the EC2 security group.\n- `tags`: The tags associated with the EC2 security group.\n- `vpc_id`: The VPC ID of the EC2 security group.\n\n##### UserIDGroupPair\n\nA class representing a User ID Group Pair for an EC2 Security Group.\n\n###### Constructors\n\n- `UserIDGroupPair(id: str, name: str, status: str, user_id: str, vpc_id: str, description: Optional[str] = None, vpc_peering_connection_id: Optional[str] = None) -> None`:\n Initializes a new **UserIDGroupPair** object with the specified parameters.\n\n###### Methods\n\n- `to_dict() -> dict`: Returns a dictionary representation of the **UserIDGroupPair** object.\n\n###### Properties\n\n- `description`: The description of the user ID group pair.\n- `id`: The unique identifier of the user ID group pair.\n- `name`: The name of the user ID group pair.\n- `status`: The status of the user ID group pair.\n- `user_id`: The owner/user ID of the user ID group pair.\n- `vpc_id`: The VPC ID of the user ID group pair.\n- `vpc_peering_connection_id`: The VPC peering connection ID of the user ID group pair.\n\n### iam\n\nThe **pyawsopstoolkit_models.iam** subpackage offers specialized data model classes tailored for the Identity and Access\nManagement (IAM) service of AWS (Amazon Web Services). These models facilitate the efficient handling and manipulation\nof IAM resources, ensuring seamless integration and interaction with AWS IAM functionalities.\n\n#### permissions_boundary\n\n##### PermissionsBoundary\n\nA class representing an IAM role permissions boundary.\n\n###### Constructors\n\n- `PermissionsBoundary(type: str, arn: str) -> None`: Initializes a **PermissionsBoundary** object with the specified\n type and Amazon Resource Name (ARN).\n\n###### Methods\n\n- `to_dict() -> dict`: Returns a dictionary representation of the **PermissionsBoundary** object.\n\n###### Properties\n\n- `arn`: The Amazon Resource Name (ARN) of the permissions boundary.\n- `type`: The type of the permissions boundary.\n\n#### role\n\n##### LastUsed\n\nThe **LastUsed** class encapsulates the information regarding the last time an IAM role was used.\n\n###### Constructors\n\n- `LastUsed(used_date: Optional[datetime] = None, region: Optional[str] = None) -> None`: Initializes a new **LastUsed**\n instance with optional parameters for the date and time the IAM role was last used and the AWS region where it was\n used.\n\n###### Methods\n\n- `to_dict() -> dict`: Returns a dictionary representation of the **LastUsed** object.\n\n###### Properties\n\n- `region`: The AWS region where the IAM role was last used.\n- `used_date`: The last date and time the IAM role was used.\n\n##### Role\n\nThe **Role** class represents an IAM role in AWS, encompassing various attributes and methods to manage the role\neffectively.\n\n###### Constructors\n\n- `Role(account: IAccount, name: str, id: str, arn: str, max_session_duration: int, path: str = '/', created_date: Optional[datetime] = None, assume_role_policy_document: Optional[dict] = None, description: Optional[str] = None, permissions_boundary: Optional[PermissionsBoundary] = None, last_used: Optional[LastUsed] = None, tags: Optional[list] = None) -> None`:\n Initializes a new **Role** instance with comprehensive parameters to define the IAM role, including account details,\n role name, ID, ARN, session duration, path, creation date, assume role policy, description, permissions boundary, last\n used information, and associated tags.\n\n###### Methods\n\n- `to_dict() -> dict`: Returns a dictionary representation of the **Role** object.\n\n###### Properties\n\n- `account`: The AWS account associated with the IAM role.\n- `arn`: The Amazon Resource Name (ARN) of the IAM role.\n- `assume_role_policy_document`: The trust relationship or assume role policy document defining the permissions for\n assuming the IAM role.\n- `created_date`: The created date of the IAM role.\n- `description`: A brief description of the IAM role.\n- `id`: The unique identifier of the IAM role.\n- `last_used`: An instance of LastUsed representing the last time the IAM role was utilized.\n- `max_session_duration`: The maximum duration (in seconds) for which the IAM role can be assumed in a single session.\n- `name`: The name of the IAM role.\n- `path`: The path under which the IAM role is created, useful for organizational purposes.\n- `permissions_boundary`: An optional permissions boundary that defines the maximum permissions the IAM role can have.\n- `tags`: A list of tags associated with the IAM role for categorization and identification purposes.\n\n#### user\n\n##### AccessKey\n\nA class representing the access key information of an IAM user.\n\n###### Constructors\n\n- `AccessKey(id: str, status: str, created_date: Optional[datetime] = None, last_used_date: Optional[datetime] = None, last_used_service: Optional[str] = None, last_used_region: Optional[str] = None) -> None`:\n Initializes a new **AccessKey** object with the specified parameters.\n\n###### Methods\n\n- `to_dict() -> dict`: Returns a dictionary representation of the **AccessKey** object.\n\n###### Properties\n\n- `created_date`: The creation date of the IAM user access key.\n- `id`: The unique identifier of the IAM user access key.\n- `last_used_date`: The last usage date of the IAM user access key.\n- `last_used_region`: The AWS region where the IAM user access key was last used.\n- `last_used_service`: The AWS service where the IAM user access key was last used.\n- `status`: The current status of the IAM user access key (e.g., Active, Inactive).\n\n##### LoginProfile\n\nA class representing the login profile information of an IAM user.\n\n###### Constructors\n\n- `LoginProfile(created_date: Optional[datetime] = None, password_reset_required: Optional[bool] = False) -> None`:\n Initializes a new **LoginProfile** object with the specified parameters.\n\n###### Methods\n\n- `to_dict() -> dict`: Returns a dictionary representation of the **LoginProfile** object.\n\n###### Properties\n\n- `created_date`: The creation date of the IAM user login profile.\n- `password_reset_required`: Indicates whether a password reset is required for the IAM user.\n\n##### User\n\nA class representing an IAM user.\n\n###### Constructors\n\n- `User(account: IAccount, name: str, id: str, arn: str, path: str = '/', created_date: Optional[datetime] = None, password_last_used_date: Optional[datetime] = None, permissions_boundary: Optional[PermissionsBoundary] = None, login_profile: Optional[LoginProfile] = None, access_keys: Optional[list[AccessKey]] = None, tags: Optional[list] = None) -> None`:\n Initializes a new **User** object with the specified parameters.\n\n###### Methods\n\n- `to_dict() -> dict`: Returns a dictionary representation of the **User** object.\n\n###### Properties\n\n- `access_keys`: A list of access keys associated with the IAM user.\n- `account`: The AWS account associated with the IAM user.\n- `arn`: The Amazon Resource Name (ARN) of the IAM user.\n- `created_date`: The creation date of the IAM user.\n- `id`: The unique ID of the IAM user.\n- `login_profile`: The login profile associated with the IAM user.\n- `name`: The name of the IAM user.\n- `password_last_used_date`: The last date the IAM user's password was used.\n- `path`: The path of the IAM user within the AWS IAM hierarchy.\n- `permissions_boundary`: The permissions boundary associated with the IAM user.\n- `tags`: A list of tags associated with the IAM user, useful for organization and management purposes.\n\n# License\n\nPlease refer to the [MIT License](LICENSE) within the project for more information.\n\n# Contributing\n\nWe welcome contributions from the community! Whether you have ideas for new features, bug fixes, or enhancements, feel\nfree to open an issue or submit a pull request on [GitHub](https://github.com/coldsofttech/pyawsopstoolkit-models).\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "This package provides a comprehensive collection of data model classes specifically designed for various AWS Ops",
"version": "0.1.1",
"project_urls": {
"Homepage": "https://github.com/coldsofttech/pyawsopstoolkit-models.git"
},
"split_keywords": [
"aws",
" toolkit",
" operations",
" tools",
" development",
" python",
" models",
" utilities",
" amazon-web-services"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "1ee2ab24a3624739c2413869bd1aee79568880f8673c51a9506407a94c8a84c0",
"md5": "1a86fde7576f051617577aeaa8428313",
"sha256": "91e832f6b8706b53d93b5fba469a1f3b92eefad3f00f16b8cbe2b3f457b3784f"
},
"downloads": -1,
"filename": "pyawsopstoolkit_models-0.1.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1a86fde7576f051617577aeaa8428313",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12048,
"upload_time": "2024-08-11T18:03:36",
"upload_time_iso_8601": "2024-08-11T18:03:36.029119Z",
"url": "https://files.pythonhosted.org/packages/1e/e2/ab24a3624739c2413869bd1aee79568880f8673c51a9506407a94c8a84c0/pyawsopstoolkit_models-0.1.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-11 18:03:36",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "coldsofttech",
"github_project": "pyawsopstoolkit-models",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"lcname": "pyawsopstoolkit-models"
}