Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: regenerate v1beta1 #4

Merged
merged 5 commits into from Sep 23, 2020
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
24 changes: 3 additions & 21 deletions docs/aiplatform_v1beta1/services.rst
@@ -1,24 +1,6 @@
Services for Google Cloud Aiplatform v1beta1 API
================================================
Client for Google Cloud Aiplatform API
======================================

.. automodule:: google.cloud.aiplatform_v1beta1.services.dataset_service
:members:
:inherited-members:
.. automodule:: google.cloud.aiplatform_v1beta1.services.endpoint_service
:members:
:inherited-members:
.. automodule:: google.cloud.aiplatform_v1beta1.services.job_service
:members:
:inherited-members:
.. automodule:: google.cloud.aiplatform_v1beta1.services.model_service
:members:
:inherited-members:
.. automodule:: google.cloud.aiplatform_v1beta1.services.pipeline_service
:members:
:inherited-members:
.. automodule:: google.cloud.aiplatform_v1beta1.services.prediction_service
:members:
:inherited-members:
.. automodule:: google.cloud.aiplatform_v1beta1.services.specialist_pool_service
.. automodule:: google.cloud.aiplatform_v1beta1
:members:
:inherited-members:
4 changes: 2 additions & 2 deletions docs/aiplatform_v1beta1/types.rst
@@ -1,5 +1,5 @@
Types for Google Cloud Aiplatform v1beta1 API
=============================================
Types for Google Cloud Aiplatform API
=====================================

.. automodule:: google.cloud.aiplatform_v1beta1.types
:members:
29 changes: 1 addition & 28 deletions google/cloud/aiplatform/__init__.py
Expand Up @@ -15,43 +15,23 @@
# limitations under the License.
#

from google.cloud.aiplatform_v1beta1.services.dataset_service.async_client import (
DatasetServiceAsyncClient,
)

from google.cloud.aiplatform_v1beta1.services.dataset_service.client import (
DatasetServiceClient,
)
from google.cloud.aiplatform_v1beta1.services.endpoint_service.async_client import (
EndpointServiceAsyncClient,
)
from google.cloud.aiplatform_v1beta1.services.endpoint_service.client import (
EndpointServiceClient,
)
from google.cloud.aiplatform_v1beta1.services.job_service.async_client import (
JobServiceAsyncClient,
)
from google.cloud.aiplatform_v1beta1.services.job_service.client import JobServiceClient
from google.cloud.aiplatform_v1beta1.services.model_service.async_client import (
ModelServiceAsyncClient,
)
from google.cloud.aiplatform_v1beta1.services.model_service.client import (
ModelServiceClient,
)
from google.cloud.aiplatform_v1beta1.services.pipeline_service.async_client import (
PipelineServiceAsyncClient,
)
from google.cloud.aiplatform_v1beta1.services.pipeline_service.client import (
PipelineServiceClient,
)
from google.cloud.aiplatform_v1beta1.services.prediction_service.async_client import (
PredictionServiceAsyncClient,
)
from google.cloud.aiplatform_v1beta1.services.prediction_service.client import (
PredictionServiceClient,
)
from google.cloud.aiplatform_v1beta1.services.specialist_pool_service.async_client import (
SpecialistPoolServiceAsyncClient,
)
from google.cloud.aiplatform_v1beta1.services.specialist_pool_service.client import (
SpecialistPoolServiceClient,
)
Expand Down Expand Up @@ -352,7 +332,6 @@
"DataItem",
"DataLabelingJob",
"Dataset",
"DatasetServiceAsyncClient",
"DatasetServiceClient",
"DedicatedResources",
"DeleteBatchPredictionJobRequest",
Expand All @@ -371,7 +350,6 @@
"DeployedModel",
"DeployedModelRef",
"Endpoint",
"EndpointServiceAsyncClient",
"EndpointServiceClient",
"EnvVar",
"ExplainRequest",
Expand Down Expand Up @@ -410,7 +388,6 @@
"ImportDataRequest",
"ImportDataResponse",
"InputDataConfig",
"JobServiceAsyncClient",
"JobServiceClient",
"JobState",
"ListAnnotationsRequest",
Expand Down Expand Up @@ -447,25 +424,21 @@
"ModelEvaluation",
"ModelEvaluationSlice",
"ModelExplanation",
"ModelServiceAsyncClient",
"ModelServiceClient",
"PipelineServiceAsyncClient",
"PipelineServiceClient",
"PipelineState",
"Port",
"PredefinedSplit",
"PredictRequest",
"PredictResponse",
"PredictSchemata",
"PredictionServiceAsyncClient",
"PredictionServiceClient",
"PythonPackageSpec",
"ResourcesConsumed",
"SampleConfig",
"SampledShapleyAttribution",
"Scheduling",
"SpecialistPool",
"SpecialistPoolServiceAsyncClient",
"SpecialistPoolServiceClient",
"StudySpec",
"TimestampSplit",
Expand Down
5 changes: 3 additions & 2 deletions google/cloud/aiplatform_v1beta1/__init__.py
Expand Up @@ -15,6 +15,7 @@
# limitations under the License.
#


from .services.dataset_service import DatasetServiceClient
from .services.endpoint_service import EndpointServiceClient
from .services.job_service import JobServiceClient
Expand Down Expand Up @@ -212,7 +213,6 @@
"DataItem",
"DataLabelingJob",
"Dataset",
"DatasetServiceClient",
"DedicatedResources",
"DeleteBatchPredictionJobRequest",
"DeleteCustomJobRequest",
Expand Down Expand Up @@ -319,6 +319,7 @@
"SampledShapleyAttribution",
"Scheduling",
"SpecialistPool",
"SpecialistPoolServiceClient",
"StudySpec",
"TimestampSplit",
"TrainingConfig",
Expand All @@ -337,5 +338,5 @@
"UploadModelResponse",
"UserActionReference",
"WorkerPoolSpec",
"SpecialistPoolServiceClient",
"DatasetServiceClient",
)
Expand Up @@ -16,9 +16,5 @@
#

from .client import DatasetServiceClient
from .async_client import DatasetServiceAsyncClient

__all__ = (
"DatasetServiceClient",
"DatasetServiceAsyncClient",
)
__all__ = ("DatasetServiceClient",)