11import typing
22
3- import typing_extensions
4-
53_list = list
64
75@typing .type_check_only
8- class AccessApprovalServiceAccount (typing_extensions .TypedDict , total = False ):
6+ class AccessApprovalServiceAccount (typing .TypedDict , total = False ):
97 accountEmail : str
108 name : str
119
1210@typing .type_check_only
13- class AccessApprovalSettings (typing_extensions .TypedDict , total = False ):
11+ class AccessApprovalSettings (typing .TypedDict , total = False ):
1412 activeKeyVersion : str
1513 ancestorHasActiveKeyVersion : bool
1614 ancestorsEnrolledServices : _list [EnrolledService ]
@@ -24,7 +22,7 @@ class AccessApprovalSettings(typing_extensions.TypedDict, total=False):
2422 notificationPubsubTopic : str
2523 preferNoBroadApprovalRequests : bool
2624 preferredRequestExpirationDays : int
27- requestScopeMaxWidthPreference : typing_extensions .Literal [
25+ requestScopeMaxWidthPreference : typing .Literal [
2826 "REQUEST_SCOPE_MAX_WIDTH_PREFERENCE_UNSPECIFIED" ,
2927 "ORGANIZATION" ,
3028 "FOLDER" ,
@@ -33,14 +31,14 @@ class AccessApprovalSettings(typing_extensions.TypedDict, total=False):
3331 requireCustomerVisibleJustification : bool
3432
3533@typing .type_check_only
36- class AccessLocations (typing_extensions .TypedDict , total = False ):
34+ class AccessLocations (typing .TypedDict , total = False ):
3735 principalOfficeCountry : str
3836 principalPhysicalLocationCountry : str
3937
4038@typing .type_check_only
41- class AccessReason (typing_extensions .TypedDict , total = False ):
39+ class AccessReason (typing .TypedDict , total = False ):
4240 detail : str
43- type : typing_extensions .Literal [
41+ type : typing .Literal [
4442 "TYPE_UNSPECIFIED" ,
4543 "CUSTOMER_INITIATED_SUPPORT" ,
4644 "GOOGLE_INITIATED_SERVICE" ,
@@ -51,7 +49,7 @@ class AccessReason(typing_extensions.TypedDict, total=False):
5149 ]
5250
5351@typing .type_check_only
54- class ApprovalRequest (typing_extensions .TypedDict , total = False ):
52+ class ApprovalRequest (typing .TypedDict , total = False ):
5553 approve : ApproveDecision
5654 dismiss : DismissDecision
5755 name : str
@@ -65,11 +63,11 @@ class ApprovalRequest(typing_extensions.TypedDict, total=False):
6563 requestedResourceProperties : ResourceProperties
6664
6765@typing .type_check_only
68- class ApproveApprovalRequestMessage (typing_extensions .TypedDict , total = False ):
66+ class ApproveApprovalRequestMessage (typing .TypedDict , total = False ):
6967 expireTime : str
7068
7169@typing .type_check_only
72- class ApproveDecision (typing_extensions .TypedDict , total = False ):
70+ class ApproveDecision (typing .TypedDict , total = False ):
7371 approveTime : str
7472 autoApproved : bool
7573 expireTime : str
@@ -78,12 +76,12 @@ class ApproveDecision(typing_extensions.TypedDict, total=False):
7876 signatureInfo : SignatureInfo
7977
8078@typing .type_check_only
81- class AugmentedInfo (typing_extensions .TypedDict , total = False ):
79+ class AugmentedInfo (typing .TypedDict , total = False ):
8280 command : str
8381
8482@typing .type_check_only
85- class CustomerApprovalApprovalPolicy (typing_extensions .TypedDict , total = False ):
86- justificationBasedApprovalPolicy : typing_extensions .Literal [
83+ class CustomerApprovalApprovalPolicy (typing .TypedDict , total = False ):
84+ justificationBasedApprovalPolicy : typing .Literal [
8785 "JUSTIFICATION_BASED_APPROVAL_POLICY_UNSPECIFIED" ,
8886 "JUSTIFICATION_BASED_APPROVAL_ENABLED_ALL" ,
8987 "JUSTIFICATION_BASED_APPROVAL_ENABLED_EXTERNAL_JUSTIFICATIONS" ,
@@ -92,39 +90,37 @@ class CustomerApprovalApprovalPolicy(typing_extensions.TypedDict, total=False):
9290 ]
9391
9492@typing .type_check_only
95- class DismissApprovalRequestMessage (typing_extensions .TypedDict , total = False ): ...
93+ class DismissApprovalRequestMessage (typing .TypedDict , total = False ): ...
9694
9795@typing .type_check_only
98- class DismissDecision (typing_extensions .TypedDict , total = False ):
96+ class DismissDecision (typing .TypedDict , total = False ):
9997 dismissTime : str
10098 implicit : bool
10199
102100@typing .type_check_only
103- class Empty (typing_extensions .TypedDict , total = False ): ...
101+ class Empty (typing .TypedDict , total = False ): ...
104102
105103@typing .type_check_only
106- class EnrolledService (typing_extensions .TypedDict , total = False ):
104+ class EnrolledService (typing .TypedDict , total = False ):
107105 cloudProduct : str
108- enrollmentLevel : typing_extensions .Literal [
109- "ENROLLMENT_LEVEL_UNSPECIFIED" , "BLOCK_ALL"
110- ]
106+ enrollmentLevel : typing .Literal ["ENROLLMENT_LEVEL_UNSPECIFIED" , "BLOCK_ALL" ]
111107
112108@typing .type_check_only
113- class InvalidateApprovalRequestMessage (typing_extensions .TypedDict , total = False ): ...
109+ class InvalidateApprovalRequestMessage (typing .TypedDict , total = False ): ...
114110
115111@typing .type_check_only
116- class ListApprovalRequestsResponse (typing_extensions .TypedDict , total = False ):
112+ class ListApprovalRequestsResponse (typing .TypedDict , total = False ):
117113 approvalRequests : _list [ApprovalRequest ]
118114 nextPageToken : str
119115
120116@typing .type_check_only
121- class ResourceProperties (typing_extensions .TypedDict , total = False ):
117+ class ResourceProperties (typing .TypedDict , total = False ):
122118 excludesDescendants : bool
123119
124120@typing .type_check_only
125- class SignatureInfo (typing_extensions .TypedDict , total = False ):
121+ class SignatureInfo (typing .TypedDict , total = False ):
126122 customerKmsKeyVersion : str
127- googleKeyAlgorithm : typing_extensions .Literal [
123+ googleKeyAlgorithm : typing .Literal [
128124 "CRYPTO_KEY_VERSION_ALGORITHM_UNSPECIFIED" ,
129125 "GOOGLE_SYMMETRIC_ENCRYPTION" ,
130126 "AES_128_GCM" ,
@@ -172,6 +168,9 @@ class SignatureInfo(typing_extensions.TypedDict, total=False):
172168 "PQ_SIGN_ML_DSA_44_EXTERNAL_MU" ,
173169 "PQ_SIGN_ML_DSA_65_EXTERNAL_MU" ,
174170 "PQ_SIGN_ML_DSA_87_EXTERNAL_MU" ,
171+ "KEM_ECDH_P256" ,
172+ "KEM_ECDH_P384" ,
173+ "AES_256_KWP" ,
175174 ]
176175 googlePublicKeyPem : str
177176 serializedApprovalRequest : str
0 commit comments