boto3-pydantic-codestar-notifications 1.0.1__py3-none-any.whl → 1.0.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -21,6 +21,7 @@ class ResponseMetadata(BaseValidatorModel):
21
21
  HostId: Optional[str] = None
22
22
 
23
23
 
24
+ # This class is the input for the 'delete_notification_rule' function.
24
25
  class DeleteNotificationRuleRequest(BaseValidatorModel):
25
26
  Arn: str
26
27
 
@@ -30,6 +31,7 @@ class DeleteTargetRequest(BaseValidatorModel):
30
31
  ForceUnsubscribeAll: Optional[bool] = None
31
32
 
32
33
 
34
+ # This class is the input for the 'describe_notification_rule' function.
33
35
  class DescribeNotificationRuleRequest(BaseValidatorModel):
34
36
  Arn: str
35
37
 
@@ -68,6 +70,7 @@ class NotificationRuleSummary(BaseValidatorModel):
68
70
  Arn: Optional[str] = None
69
71
 
70
72
 
73
+ # This class is the input for the 'list_tags_for_resource' function.
71
74
  class ListTagsForResourceRequest(BaseValidatorModel):
72
75
  Arn: str
73
76
 
@@ -77,11 +80,13 @@ class ListTargetsFilter(BaseValidatorModel):
77
80
  Value: str
78
81
 
79
82
 
83
+ # This class is the input for the 'tag_resource' function.
80
84
  class TagResourceRequest(BaseValidatorModel):
81
85
  Arn: str
82
86
  Tags: Dict[str, str]
83
87
 
84
88
 
89
+ # This class is the input for the 'unsubscribe' function.
85
90
  class UnsubscribeRequest(BaseValidatorModel):
86
91
  Arn: str
87
92
  TargetAddress: str
@@ -92,6 +97,7 @@ class UntagResourceRequest(BaseValidatorModel):
92
97
  TagKeys: List[str]
93
98
 
94
99
 
100
+ # This class is the input for the 'create_notification_rule' function.
95
101
  class CreateNotificationRuleRequest(BaseValidatorModel):
96
102
  Name: str
97
103
  EventTypeIds: List[str]
@@ -103,6 +109,7 @@ class CreateNotificationRuleRequest(BaseValidatorModel):
103
109
  Status: Optional[NotificationRuleStatusType] = None
104
110
 
105
111
 
112
+ # This class is the input for the 'subscribe' function.
106
113
  class SubscribeRequest(BaseValidatorModel):
107
114
  Arn: str
108
115
  Target: Target
@@ -118,42 +125,50 @@ class UpdateNotificationRuleRequest(BaseValidatorModel):
118
125
  DetailType: Optional[DetailTypeType] = None
119
126
 
120
127
 
128
+ # This class is the output for the 'create_notification_rule' function.
121
129
  class CreateNotificationRuleResult(BaseValidatorModel):
122
130
  Arn: str
123
131
  ResponseMetadata: ResponseMetadata
124
132
 
125
133
 
134
+ # This class is the output for the 'delete_notification_rule' function.
126
135
  class DeleteNotificationRuleResult(BaseValidatorModel):
127
136
  Arn: str
128
137
  ResponseMetadata: ResponseMetadata
129
138
 
130
139
 
140
+ # This class is the output for the 'list_tags_for_resource' function.
131
141
  class ListTagsForResourceResult(BaseValidatorModel):
132
142
  Tags: Dict[str, str]
133
143
  ResponseMetadata: ResponseMetadata
134
144
 
135
145
 
146
+ # This class is the output for the 'subscribe' function.
136
147
  class SubscribeResult(BaseValidatorModel):
137
148
  Arn: str
138
149
  ResponseMetadata: ResponseMetadata
139
150
 
140
151
 
152
+ # This class is the output for the 'tag_resource' function.
141
153
  class TagResourceResult(BaseValidatorModel):
142
154
  Tags: Dict[str, str]
143
155
  ResponseMetadata: ResponseMetadata
144
156
 
145
157
 
158
+ # This class is the output for the 'unsubscribe' function.
146
159
  class UnsubscribeResult(BaseValidatorModel):
147
160
  Arn: str
148
161
  ResponseMetadata: ResponseMetadata
149
162
 
150
163
 
164
+ # This class is the output for the 'list_event_types' function.
151
165
  class ListEventTypesResult(BaseValidatorModel):
152
166
  EventTypes: List[EventTypeSummary]
153
167
  ResponseMetadata: ResponseMetadata
154
168
  NextToken: Optional[str] = None
155
169
 
156
170
 
171
+ # This class is the output for the 'describe_notification_rule' function.
157
172
  class DescribeNotificationRuleResult(BaseValidatorModel):
158
173
  Arn: str
159
174
  Name: str
@@ -169,12 +184,14 @@ class DescribeNotificationRuleResult(BaseValidatorModel):
169
184
  ResponseMetadata: ResponseMetadata
170
185
 
171
186
 
187
+ # This class is the output for the 'list_targets' function.
172
188
  class ListTargetsResult(BaseValidatorModel):
173
189
  Targets: List[TargetSummary]
174
190
  ResponseMetadata: ResponseMetadata
175
191
  NextToken: Optional[str] = None
176
192
 
177
193
 
194
+ # This class is the input for the 'list_event_types' function.
178
195
  class ListEventTypesRequest(BaseValidatorModel):
179
196
  Filters: Optional[List[ListEventTypesFilter]] = None
180
197
  NextToken: Optional[str] = None
@@ -191,12 +208,14 @@ class ListNotificationRulesRequestPaginate(BaseValidatorModel):
191
208
  PaginationConfig: Optional[PaginatorConfig] = None
192
209
 
193
210
 
211
+ # This class is the input for the 'list_notification_rules' function.
194
212
  class ListNotificationRulesRequest(BaseValidatorModel):
195
213
  Filters: Optional[List[ListNotificationRulesFilter]] = None
196
214
  NextToken: Optional[str] = None
197
215
  MaxResults: Optional[int] = None
198
216
 
199
217
 
218
+ # This class is the output for the 'list_notification_rules' function.
200
219
  class ListNotificationRulesResult(BaseValidatorModel):
201
220
  NotificationRules: List[NotificationRuleSummary]
202
221
  ResponseMetadata: ResponseMetadata
@@ -208,6 +227,7 @@ class ListTargetsRequestPaginate(BaseValidatorModel):
208
227
  PaginationConfig: Optional[PaginatorConfig] = None
209
228
 
210
229
 
230
+ # This class is the input for the 'list_targets' function.
211
231
  class ListTargetsRequest(BaseValidatorModel):
212
232
  Filters: Optional[List[ListTargetsFilter]] = None
213
233
  NextToken: Optional[str] = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: boto3-pydantic-codestar_notifications
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Pydantic models for AWS Codestar_notifications
5
5
  Keywords: aws,boto3,pydantic,models,codestar_notifications
6
6
  Author: Alexy Grabov
@@ -1,7 +1,7 @@
1
1
  boto3_pydantic_codestar_notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  boto3_pydantic_codestar_notifications/base_validator_model.py,sha256=C3teURdLR9HMNOC5LMFGGgdsm6Ks6OF0p5RnKw54er4,463
3
- boto3_pydantic_codestar_notifications/codestar_notifications_classes.py,sha256=JLCxR8m-RfYzABpJCy0wCt5QDfwvpHydKvhz4lv1WSQ,5569
3
+ boto3_pydantic_codestar_notifications/codestar_notifications_classes.py,sha256=GG_crTpwpfdmn-n-hojMIqDbpymnUC_AqOVJHJ_Yq04,6877
4
4
  boto3_pydantic_codestar_notifications/codestar_notifications_constants.py,sha256=tyBMS6SI4sn5mO4BKdWFd-gXk3eAFxu00ZAaUjJZgus,7610
5
- boto3_pydantic_codestar_notifications-1.0.1.dist-info/METADATA,sha256=Qb1SPfG6YBqWAmV_Ou9M96k2X3BJ2xvLC7VnkifPyGM,1477
6
- boto3_pydantic_codestar_notifications-1.0.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
7
- boto3_pydantic_codestar_notifications-1.0.1.dist-info/RECORD,,
5
+ boto3_pydantic_codestar_notifications-1.0.2.dist-info/METADATA,sha256=SSDQA61Cha1Ua8ocXrf6ZoZ4q0Ywh2OmOsA1vpwuoeY,1477
6
+ boto3_pydantic_codestar_notifications-1.0.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
7
+ boto3_pydantic_codestar_notifications-1.0.2.dist-info/RECORD,,