|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | + |
| 3 | +# Copyright 2020 Google LLC |
| 4 | +# |
| 5 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +# you may not use this file except in compliance with the License. |
| 7 | +# You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, software |
| 12 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +# See the License for the specific language governing permissions and |
| 15 | +# limitations under the License. |
| 16 | +# |
| 17 | + |
| 18 | +from .services.company_service import CompanyServiceClient |
| 19 | +from .services.completion import CompletionClient |
| 20 | +from .services.event_service import EventServiceClient |
| 21 | +from .services.job_service import JobServiceClient |
| 22 | +from .services.tenant_service import TenantServiceClient |
| 23 | +from .types.common import BatchOperationMetadata |
| 24 | +from .types.common import CommuteMethod |
| 25 | +from .types.common import CompanySize |
| 26 | +from .types.common import CompensationInfo |
| 27 | +from .types.common import CustomAttribute |
| 28 | +from .types.common import DegreeType |
| 29 | +from .types.common import DeviceInfo |
| 30 | +from .types.common import EmploymentType |
| 31 | +from .types.common import HtmlSanitization |
| 32 | +from .types.common import JobBenefit |
| 33 | +from .types.common import JobCategory |
| 34 | +from .types.common import JobLevel |
| 35 | +from .types.common import Location |
| 36 | +from .types.common import PostingRegion |
| 37 | +from .types.common import RequestMetadata |
| 38 | +from .types.common import ResponseMetadata |
| 39 | +from .types.common import SpellingCorrection |
| 40 | +from .types.common import TimestampRange |
| 41 | +from .types.common import Visibility |
| 42 | +from .types.company import Company |
| 43 | +from .types.company_service import CreateCompanyRequest |
| 44 | +from .types.company_service import DeleteCompanyRequest |
| 45 | +from .types.company_service import GetCompanyRequest |
| 46 | +from .types.company_service import ListCompaniesRequest |
| 47 | +from .types.company_service import ListCompaniesResponse |
| 48 | +from .types.company_service import UpdateCompanyRequest |
| 49 | +from .types.completion_service import CompleteQueryRequest |
| 50 | +from .types.completion_service import CompleteQueryResponse |
| 51 | +from .types.event import ClientEvent |
| 52 | +from .types.event import JobEvent |
| 53 | +from .types.event_service import CreateClientEventRequest |
| 54 | +from .types.filters import CommuteFilter |
| 55 | +from .types.filters import CompensationFilter |
| 56 | +from .types.filters import JobQuery |
| 57 | +from .types.filters import LocationFilter |
| 58 | +from .types.histogram import HistogramQuery |
| 59 | +from .types.histogram import HistogramQueryResult |
| 60 | +from .types.job import Job |
| 61 | +from .types.job_service import BatchCreateJobsRequest |
| 62 | +from .types.job_service import BatchCreateJobsResponse |
| 63 | +from .types.job_service import BatchDeleteJobsRequest |
| 64 | +from .types.job_service import BatchDeleteJobsResponse |
| 65 | +from .types.job_service import BatchUpdateJobsRequest |
| 66 | +from .types.job_service import BatchUpdateJobsResponse |
| 67 | +from .types.job_service import CreateJobRequest |
| 68 | +from .types.job_service import DeleteJobRequest |
| 69 | +from .types.job_service import GetJobRequest |
| 70 | +from .types.job_service import JobResult |
| 71 | +from .types.job_service import JobView |
| 72 | +from .types.job_service import ListJobsRequest |
| 73 | +from .types.job_service import ListJobsResponse |
| 74 | +from .types.job_service import SearchJobsRequest |
| 75 | +from .types.job_service import SearchJobsResponse |
| 76 | +from .types.job_service import UpdateJobRequest |
| 77 | +from .types.tenant import Tenant |
| 78 | +from .types.tenant_service import CreateTenantRequest |
| 79 | +from .types.tenant_service import DeleteTenantRequest |
| 80 | +from .types.tenant_service import GetTenantRequest |
| 81 | +from .types.tenant_service import ListTenantsRequest |
| 82 | +from .types.tenant_service import ListTenantsResponse |
| 83 | +from .types.tenant_service import UpdateTenantRequest |
| 84 | + |
| 85 | + |
| 86 | +__all__ = ( |
| 87 | + "BatchCreateJobsRequest", |
| 88 | + "BatchCreateJobsResponse", |
| 89 | + "BatchDeleteJobsRequest", |
| 90 | + "BatchDeleteJobsResponse", |
| 91 | + "BatchOperationMetadata", |
| 92 | + "BatchUpdateJobsRequest", |
| 93 | + "BatchUpdateJobsResponse", |
| 94 | + "ClientEvent", |
| 95 | + "CommuteFilter", |
| 96 | + "CommuteMethod", |
| 97 | + "Company", |
| 98 | + "CompanyServiceClient", |
| 99 | + "CompanySize", |
| 100 | + "CompensationFilter", |
| 101 | + "CompensationInfo", |
| 102 | + "CompleteQueryRequest", |
| 103 | + "CompleteQueryResponse", |
| 104 | + "CompletionClient", |
| 105 | + "CreateClientEventRequest", |
| 106 | + "CreateCompanyRequest", |
| 107 | + "CreateJobRequest", |
| 108 | + "CreateTenantRequest", |
| 109 | + "CustomAttribute", |
| 110 | + "DegreeType", |
| 111 | + "DeleteCompanyRequest", |
| 112 | + "DeleteJobRequest", |
| 113 | + "DeleteTenantRequest", |
| 114 | + "DeviceInfo", |
| 115 | + "EmploymentType", |
| 116 | + "EventServiceClient", |
| 117 | + "GetCompanyRequest", |
| 118 | + "GetJobRequest", |
| 119 | + "GetTenantRequest", |
| 120 | + "HistogramQuery", |
| 121 | + "HistogramQueryResult", |
| 122 | + "HtmlSanitization", |
| 123 | + "Job", |
| 124 | + "JobBenefit", |
| 125 | + "JobCategory", |
| 126 | + "JobEvent", |
| 127 | + "JobLevel", |
| 128 | + "JobQuery", |
| 129 | + "JobResult", |
| 130 | + "JobServiceClient", |
| 131 | + "JobView", |
| 132 | + "ListCompaniesRequest", |
| 133 | + "ListCompaniesResponse", |
| 134 | + "ListJobsRequest", |
| 135 | + "ListJobsResponse", |
| 136 | + "ListTenantsRequest", |
| 137 | + "ListTenantsResponse", |
| 138 | + "Location", |
| 139 | + "LocationFilter", |
| 140 | + "PostingRegion", |
| 141 | + "RequestMetadata", |
| 142 | + "ResponseMetadata", |
| 143 | + "SearchJobsRequest", |
| 144 | + "SearchJobsResponse", |
| 145 | + "SpellingCorrection", |
| 146 | + "Tenant", |
| 147 | + "TimestampRange", |
| 148 | + "UpdateCompanyRequest", |
| 149 | + "UpdateJobRequest", |
| 150 | + "UpdateTenantRequest", |
| 151 | + "Visibility", |
| 152 | + "TenantServiceClient", |
| 153 | +) |
0 commit comments