Skip to content
Merged
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
38 changes: 38 additions & 0 deletions packages/google-cloud-apihub/google/cloud/apihub/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,49 @@
__version__ = package_version.__version__


from google.cloud.apihub_v1.services.api_hub.async_client import ApiHubAsyncClient
from google.cloud.apihub_v1.services.api_hub.client import ApiHubClient
from google.cloud.apihub_v1.services.api_hub_collect.async_client import (
ApiHubCollectAsyncClient,
)
from google.cloud.apihub_v1.services.api_hub_collect.client import ApiHubCollectClient
from google.cloud.apihub_v1.services.api_hub_curate.async_client import (
ApiHubCurateAsyncClient,
)
from google.cloud.apihub_v1.services.api_hub_curate.client import ApiHubCurateClient
from google.cloud.apihub_v1.services.api_hub_dependencies.async_client import (
ApiHubDependenciesAsyncClient,
)
from google.cloud.apihub_v1.services.api_hub_dependencies.client import (
ApiHubDependenciesClient,
)
from google.cloud.apihub_v1.services.api_hub_discovery.async_client import (
ApiHubDiscoveryAsyncClient,
)
from google.cloud.apihub_v1.services.api_hub_discovery.client import (
ApiHubDiscoveryClient,
)
from google.cloud.apihub_v1.services.api_hub_plugin.async_client import (
ApiHubPluginAsyncClient,
)
from google.cloud.apihub_v1.services.api_hub_plugin.client import ApiHubPluginClient
from google.cloud.apihub_v1.services.host_project_registration_service.async_client import (
HostProjectRegistrationServiceAsyncClient,
)
from google.cloud.apihub_v1.services.host_project_registration_service.client import (
HostProjectRegistrationServiceClient,
)
from google.cloud.apihub_v1.services.linting_service.async_client import (
LintingServiceAsyncClient,
)
from google.cloud.apihub_v1.services.linting_service.client import LintingServiceClient
from google.cloud.apihub_v1.services.provisioning.async_client import (
ProvisioningAsyncClient,
)
from google.cloud.apihub_v1.services.provisioning.client import ProvisioningClient
from google.cloud.apihub_v1.services.runtime_project_attachment_service.async_client import (
RuntimeProjectAttachmentServiceAsyncClient,
)
from google.cloud.apihub_v1.services.runtime_project_attachment_service.client import (
RuntimeProjectAttachmentServiceClient,
)
Expand Down Expand Up @@ -232,15 +260,25 @@

__all__ = (
"ApiHubClient",
"ApiHubAsyncClient",
"ApiHubCollectClient",
"ApiHubCollectAsyncClient",
"ApiHubCurateClient",
"ApiHubCurateAsyncClient",
"ApiHubDependenciesClient",
"ApiHubDependenciesAsyncClient",
"ApiHubDiscoveryClient",
"ApiHubDiscoveryAsyncClient",
"ApiHubPluginClient",
"ApiHubPluginAsyncClient",
"HostProjectRegistrationServiceClient",
"HostProjectRegistrationServiceAsyncClient",
"LintingServiceClient",
"LintingServiceAsyncClient",
"ProvisioningClient",
"ProvisioningAsyncClient",
"RuntimeProjectAttachmentServiceClient",
"RuntimeProjectAttachmentServiceAsyncClient",
"ApiHubResource",
"CreateApiOperationRequest",
"CreateApiRequest",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.2.7" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
34 changes: 26 additions & 8 deletions packages/google-cloud-apihub/google/cloud/apihub_v1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,26 @@
__version__ = package_version.__version__


from .services.api_hub import ApiHubClient
from .services.api_hub_collect import ApiHubCollectClient
from .services.api_hub_curate import ApiHubCurateClient
from .services.api_hub_dependencies import ApiHubDependenciesClient
from .services.api_hub_discovery import ApiHubDiscoveryClient
from .services.api_hub_plugin import ApiHubPluginClient
from .services.api_hub import ApiHubAsyncClient, ApiHubClient
from .services.api_hub_collect import ApiHubCollectAsyncClient, ApiHubCollectClient
from .services.api_hub_curate import ApiHubCurateAsyncClient, ApiHubCurateClient
from .services.api_hub_dependencies import (
ApiHubDependenciesAsyncClient,
ApiHubDependenciesClient,
)
from .services.api_hub_discovery import (
ApiHubDiscoveryAsyncClient,
ApiHubDiscoveryClient,
)
from .services.api_hub_plugin import ApiHubPluginAsyncClient, ApiHubPluginClient
from .services.host_project_registration_service import (
HostProjectRegistrationServiceAsyncClient,
HostProjectRegistrationServiceClient,
)
from .services.linting_service import LintingServiceClient
from .services.provisioning import ProvisioningClient
from .services.linting_service import LintingServiceAsyncClient, LintingServiceClient
from .services.provisioning import ProvisioningAsyncClient, ProvisioningClient
from .services.runtime_project_attachment_service import (
RuntimeProjectAttachmentServiceAsyncClient,
RuntimeProjectAttachmentServiceClient,
)
from .types.apihub_service import (
Expand Down Expand Up @@ -227,6 +235,16 @@
)

__all__ = (
"ApiHubAsyncClient",
"ApiHubCollectAsyncClient",
"ApiHubCurateAsyncClient",
"ApiHubDependenciesAsyncClient",
"ApiHubDiscoveryAsyncClient",
"ApiHubPluginAsyncClient",
"HostProjectRegistrationServiceAsyncClient",
"LintingServiceAsyncClient",
"ProvisioningAsyncClient",
"RuntimeProjectAttachmentServiceAsyncClient",
"APIMetadata",
"ActionExecutionDetail",
"ActionType",
Expand Down
Loading
Loading