Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions googleapiclient-stubs/_apis/accesscontextmanager/v1/resources.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,17 @@ class AccessContextManagerResource(googleapiclient.discovery.Resource):

def gcpUserAccessBindings(self) -> GcpUserAccessBindingsResource: ...

@typing.type_check_only
class PermissionsResource(googleapiclient.discovery.Resource):
def list(
self, *, pageSize: int = ..., pageToken: str = ..., **kwargs: typing.Any
) -> ListSupportedPermissionsResponseHttpRequest: ...
def list_next(
self,
previous_request: ListSupportedPermissionsResponseHttpRequest,
previous_response: ListSupportedPermissionsResponse,
) -> ListSupportedPermissionsResponseHttpRequest | None: ...

@typing.type_check_only
class ServicesResource(googleapiclient.discovery.Resource):
def get(
Expand Down Expand Up @@ -311,6 +322,7 @@ class AccessContextManagerResource(googleapiclient.discovery.Resource):
def accessPolicies(self) -> AccessPoliciesResource: ...
def operations(self) -> OperationsResource: ...
def organizations(self) -> OrganizationsResource: ...
def permissions(self) -> PermissionsResource: ...
def services(self) -> ServicesResource: ...

@typing.type_check_only
Expand Down Expand Up @@ -401,6 +413,14 @@ class ListServicePerimetersResponseHttpRequest(googleapiclient.http.HttpRequest)
num_retries: int = 0,
) -> ListServicePerimetersResponse: ...

@typing.type_check_only
class ListSupportedPermissionsResponseHttpRequest(googleapiclient.http.HttpRequest):
def execute(
self,
http: httplib2.Http | googleapiclient.http.HttpMock | None = None,
num_retries: int = 0,
) -> ListSupportedPermissionsResponse: ...

@typing.type_check_only
class ListSupportedServicesResponseHttpRequest(googleapiclient.http.HttpRequest):
def execute(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,11 @@ class ListServicePerimetersResponse(typing_extensions.TypedDict, total=False):
nextPageToken: str
servicePerimeters: _list[ServicePerimeter]

@typing.type_check_only
class ListSupportedPermissionsResponse(typing_extensions.TypedDict, total=False):
nextPageToken: str
supportedPermissions: _list[str]

@typing.type_check_only
class ListSupportedServicesResponse(typing_extensions.TypedDict, total=False):
nextPageToken: str
Expand Down
17 changes: 17 additions & 0 deletions googleapiclient-stubs/_apis/admin/directory_v1/resources.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,15 @@ class DirectoryResource(googleapiclient.discovery.Resource):
body: BatchChangeChromeOsDeviceStatusRequest = ...,
**kwargs: typing.Any,
) -> BatchChangeChromeOsDeviceStatusResponseHttpRequest: ...
def countChromeOsDevices(
self,
*,
customerId: str,
filter: str = ...,
includeChildOrgunits: bool = ...,
orgUnitPath: str = ...,
**kwargs: typing.Any,
) -> CountChromeOsDevicesResponseHttpRequest: ...
def issueCommand(
self,
*,
Expand Down Expand Up @@ -1035,6 +1044,14 @@ class ChromeOsDevicesHttpRequest(googleapiclient.http.HttpRequest):
num_retries: int = 0,
) -> ChromeOsDevices: ...

@typing.type_check_only
class CountChromeOsDevicesResponseHttpRequest(googleapiclient.http.HttpRequest):
def execute(
self,
http: httplib2.Http | googleapiclient.http.HttpMock | None = None,
num_retries: int = 0,
) -> CountChromeOsDevicesResponse: ...

@typing.type_check_only
class CustomerHttpRequest(googleapiclient.http.HttpRequest):
def execute(
Expand Down
4 changes: 4 additions & 0 deletions googleapiclient-stubs/_apis/admin/directory_v1/schemas.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,10 @@ class ChromeOsDevices(typing_extensions.TypedDict, total=False):
class ChromeOsMoveDevicesToOu(typing_extensions.TypedDict, total=False):
deviceIds: _list[str]

@typing.type_check_only
class CountChromeOsDevicesResponse(typing_extensions.TypedDict, total=False):
count: str

@typing.type_check_only
class CreatePrintServerRequest(typing_extensions.TypedDict, total=False):
parent: str
Expand Down
3 changes: 3 additions & 0 deletions googleapiclient-stubs/_apis/admin/reports_v1/resources.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,19 @@ class ReportsResource(googleapiclient.discovery.Resource):
"graduation",
],
actorIpAddress: str = ...,
applicationInfoFilter: str = ...,
customerId: str = ...,
endTime: str = ...,
eventName: str = ...,
filters: str = ...,
groupIdFilter: str = ...,
maxResults: int = ...,
networkInfoFilter: str = ...,
orgUnitID: str = ...,
pageToken: str = ...,
resourceDetailsFilter: str = ...,
startTime: str = ...,
statusFilter: str = ...,
**kwargs: typing.Any,
) -> ActivitiesHttpRequest: ...
def list_next(
Expand Down
7 changes: 7 additions & 0 deletions googleapiclient-stubs/_apis/admin/reports_v1/schemas.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ class Activity(typing_extensions.TypedDict, total=False):
ownerDomain: str
resourceDetails: _list[ResourceDetails]

@typing.type_check_only
class ActivityEventsStatus(typing_extensions.TypedDict, total=False):
errorCode: str
errorMessage: str
eventStatus: str
httpStatusCode: int

@typing.type_check_only
class ActivityNetworkInfo(typing_extensions.TypedDict, total=False):
ipAsn: _list[int]
Expand Down
1 change: 1 addition & 0 deletions googleapiclient-stubs/_apis/aiplatform/v1/schemas.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -836,6 +836,7 @@ class GoogleCloudAiplatformV1CandidateResponse(
typing_extensions.TypedDict, total=False
):
candidate: str
error: GoogleRpcStatus
text: str
value: typing.Any

Expand Down
58 changes: 58 additions & 0 deletions googleapiclient-stubs/_apis/aiplatform/v1beta1/resources.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -631,6 +631,34 @@ class AiplatformResource(googleapiclient.discovery.Resource):

def operations(self) -> OperationsResource: ...

@typing.type_check_only
class EvaluationMetricsResource(googleapiclient.discovery.Resource):
@typing.type_check_only
class OperationsResource(googleapiclient.discovery.Resource):
def delete(
self, *, name: str, **kwargs: typing.Any
) -> GoogleProtobufEmptyHttpRequest: ...
def get(
self, *, name: str, **kwargs: typing.Any
) -> GoogleLongrunningOperationHttpRequest: ...
def list(
self,
*,
name: str,
filter: str = ...,
pageSize: int = ...,
pageToken: str = ...,
returnPartialSuccess: bool = ...,
**kwargs: typing.Any,
) -> GoogleLongrunningListOperationsResponseHttpRequest: ...
def list_next(
self,
previous_request: GoogleLongrunningListOperationsResponseHttpRequest,
previous_response: GoogleLongrunningListOperationsResponse,
) -> GoogleLongrunningListOperationsResponseHttpRequest | None: ...

def operations(self) -> OperationsResource: ...

@typing.type_check_only
class EvaluationRunsResource(googleapiclient.discovery.Resource):
@typing.type_check_only
Expand Down Expand Up @@ -2908,6 +2936,34 @@ class AiplatformResource(googleapiclient.discovery.Resource):
): ...
def operations(self) -> OperationsResource: ...

@typing.type_check_only
class EvaluationMetricsResource(googleapiclient.discovery.Resource):
@typing.type_check_only
class OperationsResource(googleapiclient.discovery.Resource):
def delete(
self, *, name: str, **kwargs: typing.Any
) -> GoogleProtobufEmptyHttpRequest: ...
def get(
self, *, name: str, **kwargs: typing.Any
) -> GoogleLongrunningOperationHttpRequest: ...
def list(
self,
*,
name: str,
filter: str = ...,
pageSize: int = ...,
pageToken: str = ...,
returnPartialSuccess: bool = ...,
**kwargs: typing.Any,
) -> GoogleLongrunningListOperationsResponseHttpRequest: ...
def list_next(
self,
previous_request: GoogleLongrunningListOperationsResponseHttpRequest,
previous_response: GoogleLongrunningListOperationsResponse,
) -> GoogleLongrunningListOperationsResponseHttpRequest | None: ...

def operations(self) -> OperationsResource: ...

@typing.type_check_only
class EvaluationRunsResource(googleapiclient.discovery.Resource):
@typing.type_check_only
Expand Down Expand Up @@ -7905,6 +7961,7 @@ class AiplatformResource(googleapiclient.discovery.Resource):
def edgeDevices(self) -> EdgeDevicesResource: ...
def endpoints(self) -> EndpointsResource: ...
def evaluationItems(self) -> EvaluationItemsResource: ...
def evaluationMetrics(self) -> EvaluationMetricsResource: ...
def evaluationRuns(self) -> EvaluationRunsResource: ...
def evaluationSets(self) -> EvaluationSetsResource: ...
def evaluationTasks(self) -> EvaluationTasksResource: ...
Expand Down Expand Up @@ -9084,6 +9141,7 @@ class AiplatformResource(googleapiclient.discovery.Resource):
def edgeDevices(self) -> EdgeDevicesResource: ...
def endpoints(self) -> EndpointsResource: ...
def evaluationItems(self) -> EvaluationItemsResource: ...
def evaluationMetrics(self) -> EvaluationMetricsResource: ...
def evaluationRuns(self) -> EvaluationRunsResource: ...
def evaluationSets(self) -> EvaluationSetsResource: ...
def evaluationTasks(self) -> EvaluationTasksResource: ...
Expand Down
3 changes: 3 additions & 0 deletions googleapiclient-stubs/_apis/aiplatform/v1beta1/schemas.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -955,6 +955,7 @@ class GoogleCloudAiplatformV1beta1CandidateResponse(
):
agentData: GoogleCloudAiplatformV1beta1AgentData
candidate: str
error: GoogleRpcStatus
events: _list[GoogleCloudAiplatformV1beta1Content]
text: str
value: typing.Any
Expand Down Expand Up @@ -4199,6 +4200,7 @@ class GoogleCloudAiplatformV1beta1GeminiExample(
generationConfig: GoogleCloudAiplatformV1beta1GenerationConfig
labels: dict[str, typing.Any]
model: str
modelArmorConfig: GoogleCloudAiplatformV1beta1ModelArmorConfig
safetySettings: _list[GoogleCloudAiplatformV1beta1SafetySetting]
systemInstruction: GoogleCloudAiplatformV1beta1Content
toolConfig: GoogleCloudAiplatformV1beta1ToolConfig
Expand Down Expand Up @@ -9671,6 +9673,7 @@ class GoogleCloudAiplatformV1beta1Schedule(typing_extensions.TypedDict, total=Fa
lastPauseTime: str
lastResumeTime: str
lastScheduledRunResponse: GoogleCloudAiplatformV1beta1ScheduleRunResponse
maxConcurrentActiveRunCount: str
maxConcurrentRunCount: str
maxRunCount: str
name: str
Expand Down
2 changes: 1 addition & 1 deletion googleapiclient-stubs/_apis/alloydb/v1/schemas.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -1313,6 +1313,7 @@ class StorageDatabasecenterPartnerapiV1mainResourceMaintenanceDenySchedule(
class StorageDatabasecenterPartnerapiV1mainResourceMaintenanceInfo(
typing_extensions.TypedDict, total=False
):
currentVersionReleaseDate: GoogleTypeDate
denyMaintenanceSchedules: _list[
StorageDatabasecenterPartnerapiV1mainResourceMaintenanceDenySchedule
]
Expand All @@ -1331,7 +1332,6 @@ class StorageDatabasecenterPartnerapiV1mainResourceMaintenanceInfo(
]
maintenanceVersion: str
upcomingMaintenance: StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance
versionUpdateTime: str

@typing.type_check_only
class StorageDatabasecenterPartnerapiV1mainResourceMaintenanceSchedule(
Expand Down
2 changes: 1 addition & 1 deletion googleapiclient-stubs/_apis/alloydb/v1alpha/schemas.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -1362,6 +1362,7 @@ class StorageDatabasecenterPartnerapiV1mainResourceMaintenanceDenySchedule(
class StorageDatabasecenterPartnerapiV1mainResourceMaintenanceInfo(
typing_extensions.TypedDict, total=False
):
currentVersionReleaseDate: GoogleTypeDate
denyMaintenanceSchedules: _list[
StorageDatabasecenterPartnerapiV1mainResourceMaintenanceDenySchedule
]
Expand All @@ -1380,7 +1381,6 @@ class StorageDatabasecenterPartnerapiV1mainResourceMaintenanceInfo(
]
maintenanceVersion: str
upcomingMaintenance: StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance
versionUpdateTime: str

@typing.type_check_only
class StorageDatabasecenterPartnerapiV1mainResourceMaintenanceSchedule(
Expand Down
2 changes: 1 addition & 1 deletion googleapiclient-stubs/_apis/alloydb/v1beta/schemas.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -1356,6 +1356,7 @@ class StorageDatabasecenterPartnerapiV1mainResourceMaintenanceDenySchedule(
class StorageDatabasecenterPartnerapiV1mainResourceMaintenanceInfo(
typing_extensions.TypedDict, total=False
):
currentVersionReleaseDate: GoogleTypeDate
denyMaintenanceSchedules: _list[
StorageDatabasecenterPartnerapiV1mainResourceMaintenanceDenySchedule
]
Expand All @@ -1374,7 +1375,6 @@ class StorageDatabasecenterPartnerapiV1mainResourceMaintenanceInfo(
]
maintenanceVersion: str
upcomingMaintenance: StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance
versionUpdateTime: str

@typing.type_check_only
class StorageDatabasecenterPartnerapiV1mainResourceMaintenanceSchedule(
Expand Down
19 changes: 17 additions & 2 deletions googleapiclient-stubs/_apis/apigee/v1/resources.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2288,10 +2288,22 @@ class ApigeeResource(googleapiclient.discovery.Resource):
**kwargs: typing.Any,
) -> GoogleCloudApigeeV1SecurityMonitoringConditionHttpRequest: ...
def delete(
self, *, name: str, **kwargs: typing.Any
self,
*,
name: str,
riskAssessmentType: typing_extensions.Literal[
"RISK_ASSESSMENT_TYPE_UNSPECIFIED", "APIGEE", "API_HUB"
] = ...,
**kwargs: typing.Any,
) -> GoogleProtobufEmptyHttpRequest: ...
def get(
self, *, name: str, **kwargs: typing.Any
self,
*,
name: str,
riskAssessmentType: typing_extensions.Literal[
"RISK_ASSESSMENT_TYPE_UNSPECIFIED", "APIGEE", "API_HUB"
] = ...,
**kwargs: typing.Any,
) -> GoogleCloudApigeeV1SecurityMonitoringConditionHttpRequest: ...
def list(
self,
Expand All @@ -2300,6 +2312,9 @@ class ApigeeResource(googleapiclient.discovery.Resource):
filter: str = ...,
pageSize: int = ...,
pageToken: str = ...,
riskAssessmentType: typing_extensions.Literal[
"RISK_ASSESSMENT_TYPE_UNSPECIFIED", "APIGEE", "API_HUB"
] = ...,
**kwargs: typing.Any,
) -> (
GoogleCloudApigeeV1ListSecurityMonitoringConditionsResponseHttpRequest
Expand Down
11 changes: 11 additions & 0 deletions googleapiclient-stubs/_apis/apigee/v1/schemas.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2326,6 +2326,13 @@ class GoogleCloudApigeeV1SecurityAssessmentResultResource(
apiHubDeploymentDetails: (
GoogleCloudApigeeV1SecurityAssessmentResultResourceApiHubDeploymentDetails
)
apiHubGatewayType: typing_extensions.Literal[
"API_HUB_GATEWAY_TYPE_UNSPECIFIED",
"APIGEE_X",
"APIGEE_HYBRID",
"APIGEE_EDGE",
"APIGEE_OPDK",
]
name: str
resourceRevisionId: str
type: typing_extensions.Literal[
Expand Down Expand Up @@ -2439,6 +2446,7 @@ class GoogleCloudApigeeV1SecurityIncident(typing_extensions.TypedDict, total=Fal
class GoogleCloudApigeeV1SecurityMonitoringCondition(
typing_extensions.TypedDict, total=False
):
apiHubGateway: str
createTime: str
include: (
GoogleCloudApigeeV1BatchComputeSecurityAssessmentResultsRequestResourceArray
Expand All @@ -2448,6 +2456,9 @@ class GoogleCloudApigeeV1SecurityMonitoringCondition(
)
name: str
profile: str
riskAssessmentType: typing_extensions.Literal[
"RISK_ASSESSMENT_TYPE_UNSPECIFIED", "APIGEE", "API_HUB"
]
scope: str
totalDeployedResources: int
totalMonitoredResources: int
Expand Down
Loading
Loading