|
14 | 14 | # limitations under the License.
|
15 | 15 | #
|
16 | 16 |
|
17 |
| -from google.cloud.notebooks_v1beta1.services.notebook_service.client import ( |
| 17 | +from google.cloud.notebooks_v1.services.managed_notebook_service.client import ( |
| 18 | + ManagedNotebookServiceClient, |
| 19 | +) |
| 20 | +from google.cloud.notebooks_v1.services.managed_notebook_service.async_client import ( |
| 21 | + ManagedNotebookServiceAsyncClient, |
| 22 | +) |
| 23 | +from google.cloud.notebooks_v1.services.notebook_service.client import ( |
18 | 24 | NotebookServiceClient,
|
19 | 25 | )
|
20 |
| -from google.cloud.notebooks_v1beta1.services.notebook_service.async_client import ( |
| 26 | +from google.cloud.notebooks_v1.services.notebook_service.async_client import ( |
21 | 27 | NotebookServiceAsyncClient,
|
22 | 28 | )
|
23 | 29 |
|
24 |
| -from google.cloud.notebooks_v1beta1.types.environment import ContainerImage |
25 |
| -from google.cloud.notebooks_v1beta1.types.environment import Environment |
26 |
| -from google.cloud.notebooks_v1beta1.types.environment import VmImage |
27 |
| -from google.cloud.notebooks_v1beta1.types.instance import Instance |
28 |
| -from google.cloud.notebooks_v1beta1.types.service import CreateEnvironmentRequest |
29 |
| -from google.cloud.notebooks_v1beta1.types.service import CreateInstanceRequest |
30 |
| -from google.cloud.notebooks_v1beta1.types.service import DeleteEnvironmentRequest |
31 |
| -from google.cloud.notebooks_v1beta1.types.service import DeleteInstanceRequest |
32 |
| -from google.cloud.notebooks_v1beta1.types.service import GetEnvironmentRequest |
33 |
| -from google.cloud.notebooks_v1beta1.types.service import GetInstanceRequest |
34 |
| -from google.cloud.notebooks_v1beta1.types.service import IsInstanceUpgradeableRequest |
35 |
| -from google.cloud.notebooks_v1beta1.types.service import IsInstanceUpgradeableResponse |
36 |
| -from google.cloud.notebooks_v1beta1.types.service import ListEnvironmentsRequest |
37 |
| -from google.cloud.notebooks_v1beta1.types.service import ListEnvironmentsResponse |
38 |
| -from google.cloud.notebooks_v1beta1.types.service import ListInstancesRequest |
39 |
| -from google.cloud.notebooks_v1beta1.types.service import ListInstancesResponse |
40 |
| -from google.cloud.notebooks_v1beta1.types.service import OperationMetadata |
41 |
| -from google.cloud.notebooks_v1beta1.types.service import RegisterInstanceRequest |
42 |
| -from google.cloud.notebooks_v1beta1.types.service import ReportInstanceInfoRequest |
43 |
| -from google.cloud.notebooks_v1beta1.types.service import ResetInstanceRequest |
44 |
| -from google.cloud.notebooks_v1beta1.types.service import SetInstanceAcceleratorRequest |
45 |
| -from google.cloud.notebooks_v1beta1.types.service import SetInstanceLabelsRequest |
46 |
| -from google.cloud.notebooks_v1beta1.types.service import SetInstanceMachineTypeRequest |
47 |
| -from google.cloud.notebooks_v1beta1.types.service import StartInstanceRequest |
48 |
| -from google.cloud.notebooks_v1beta1.types.service import StopInstanceRequest |
49 |
| -from google.cloud.notebooks_v1beta1.types.service import UpgradeInstanceInternalRequest |
50 |
| -from google.cloud.notebooks_v1beta1.types.service import UpgradeInstanceRequest |
| 30 | +from google.cloud.notebooks_v1.types.environment import ContainerImage |
| 31 | +from google.cloud.notebooks_v1.types.environment import Environment |
| 32 | +from google.cloud.notebooks_v1.types.environment import VmImage |
| 33 | +from google.cloud.notebooks_v1.types.event import Event |
| 34 | +from google.cloud.notebooks_v1.types.execution import Execution |
| 35 | +from google.cloud.notebooks_v1.types.execution import ExecutionTemplate |
| 36 | +from google.cloud.notebooks_v1.types.instance import Instance |
| 37 | +from google.cloud.notebooks_v1.types.instance import ReservationAffinity |
| 38 | +from google.cloud.notebooks_v1.types.instance_config import InstanceConfig |
| 39 | +from google.cloud.notebooks_v1.types.managed_service import CreateRuntimeRequest |
| 40 | +from google.cloud.notebooks_v1.types.managed_service import DeleteRuntimeRequest |
| 41 | +from google.cloud.notebooks_v1.types.managed_service import GetRuntimeRequest |
| 42 | +from google.cloud.notebooks_v1.types.managed_service import ListRuntimesRequest |
| 43 | +from google.cloud.notebooks_v1.types.managed_service import ListRuntimesResponse |
| 44 | +from google.cloud.notebooks_v1.types.managed_service import ReportRuntimeEventRequest |
| 45 | +from google.cloud.notebooks_v1.types.managed_service import ResetRuntimeRequest |
| 46 | +from google.cloud.notebooks_v1.types.managed_service import StartRuntimeRequest |
| 47 | +from google.cloud.notebooks_v1.types.managed_service import StopRuntimeRequest |
| 48 | +from google.cloud.notebooks_v1.types.managed_service import SwitchRuntimeRequest |
| 49 | +from google.cloud.notebooks_v1.types.runtime import EncryptionConfig |
| 50 | +from google.cloud.notebooks_v1.types.runtime import LocalDisk |
| 51 | +from google.cloud.notebooks_v1.types.runtime import LocalDiskInitializeParams |
| 52 | +from google.cloud.notebooks_v1.types.runtime import Runtime |
| 53 | +from google.cloud.notebooks_v1.types.runtime import RuntimeAcceleratorConfig |
| 54 | +from google.cloud.notebooks_v1.types.runtime import RuntimeAccessConfig |
| 55 | +from google.cloud.notebooks_v1.types.runtime import RuntimeMetrics |
| 56 | +from google.cloud.notebooks_v1.types.runtime import RuntimeShieldedInstanceConfig |
| 57 | +from google.cloud.notebooks_v1.types.runtime import RuntimeSoftwareConfig |
| 58 | +from google.cloud.notebooks_v1.types.runtime import VirtualMachine |
| 59 | +from google.cloud.notebooks_v1.types.runtime import VirtualMachineConfig |
| 60 | +from google.cloud.notebooks_v1.types.schedule import Schedule |
| 61 | +from google.cloud.notebooks_v1.types.service import CreateEnvironmentRequest |
| 62 | +from google.cloud.notebooks_v1.types.service import CreateExecutionRequest |
| 63 | +from google.cloud.notebooks_v1.types.service import CreateInstanceRequest |
| 64 | +from google.cloud.notebooks_v1.types.service import CreateScheduleRequest |
| 65 | +from google.cloud.notebooks_v1.types.service import DeleteEnvironmentRequest |
| 66 | +from google.cloud.notebooks_v1.types.service import DeleteExecutionRequest |
| 67 | +from google.cloud.notebooks_v1.types.service import DeleteInstanceRequest |
| 68 | +from google.cloud.notebooks_v1.types.service import DeleteScheduleRequest |
| 69 | +from google.cloud.notebooks_v1.types.service import GetEnvironmentRequest |
| 70 | +from google.cloud.notebooks_v1.types.service import GetExecutionRequest |
| 71 | +from google.cloud.notebooks_v1.types.service import GetInstanceHealthRequest |
| 72 | +from google.cloud.notebooks_v1.types.service import GetInstanceHealthResponse |
| 73 | +from google.cloud.notebooks_v1.types.service import GetInstanceRequest |
| 74 | +from google.cloud.notebooks_v1.types.service import GetScheduleRequest |
| 75 | +from google.cloud.notebooks_v1.types.service import IsInstanceUpgradeableRequest |
| 76 | +from google.cloud.notebooks_v1.types.service import IsInstanceUpgradeableResponse |
| 77 | +from google.cloud.notebooks_v1.types.service import ListEnvironmentsRequest |
| 78 | +from google.cloud.notebooks_v1.types.service import ListEnvironmentsResponse |
| 79 | +from google.cloud.notebooks_v1.types.service import ListExecutionsRequest |
| 80 | +from google.cloud.notebooks_v1.types.service import ListExecutionsResponse |
| 81 | +from google.cloud.notebooks_v1.types.service import ListInstancesRequest |
| 82 | +from google.cloud.notebooks_v1.types.service import ListInstancesResponse |
| 83 | +from google.cloud.notebooks_v1.types.service import ListSchedulesRequest |
| 84 | +from google.cloud.notebooks_v1.types.service import ListSchedulesResponse |
| 85 | +from google.cloud.notebooks_v1.types.service import OperationMetadata |
| 86 | +from google.cloud.notebooks_v1.types.service import RegisterInstanceRequest |
| 87 | +from google.cloud.notebooks_v1.types.service import ReportInstanceInfoRequest |
| 88 | +from google.cloud.notebooks_v1.types.service import ResetInstanceRequest |
| 89 | +from google.cloud.notebooks_v1.types.service import RollbackInstanceRequest |
| 90 | +from google.cloud.notebooks_v1.types.service import SetInstanceAcceleratorRequest |
| 91 | +from google.cloud.notebooks_v1.types.service import SetInstanceLabelsRequest |
| 92 | +from google.cloud.notebooks_v1.types.service import SetInstanceMachineTypeRequest |
| 93 | +from google.cloud.notebooks_v1.types.service import StartInstanceRequest |
| 94 | +from google.cloud.notebooks_v1.types.service import StopInstanceRequest |
| 95 | +from google.cloud.notebooks_v1.types.service import TriggerScheduleRequest |
| 96 | +from google.cloud.notebooks_v1.types.service import UpdateInstanceConfigRequest |
| 97 | +from google.cloud.notebooks_v1.types.service import UpdateShieldedInstanceConfigRequest |
| 98 | +from google.cloud.notebooks_v1.types.service import UpgradeInstanceInternalRequest |
| 99 | +from google.cloud.notebooks_v1.types.service import UpgradeInstanceRequest |
51 | 100 |
|
52 | 101 | __all__ = (
|
| 102 | + "ManagedNotebookServiceClient", |
| 103 | + "ManagedNotebookServiceAsyncClient", |
53 | 104 | "NotebookServiceClient",
|
54 | 105 | "NotebookServiceAsyncClient",
|
55 | 106 | "ContainerImage",
|
56 | 107 | "Environment",
|
57 | 108 | "VmImage",
|
| 109 | + "Event", |
| 110 | + "Execution", |
| 111 | + "ExecutionTemplate", |
58 | 112 | "Instance",
|
| 113 | + "ReservationAffinity", |
| 114 | + "InstanceConfig", |
| 115 | + "CreateRuntimeRequest", |
| 116 | + "DeleteRuntimeRequest", |
| 117 | + "GetRuntimeRequest", |
| 118 | + "ListRuntimesRequest", |
| 119 | + "ListRuntimesResponse", |
| 120 | + "ReportRuntimeEventRequest", |
| 121 | + "ResetRuntimeRequest", |
| 122 | + "StartRuntimeRequest", |
| 123 | + "StopRuntimeRequest", |
| 124 | + "SwitchRuntimeRequest", |
| 125 | + "EncryptionConfig", |
| 126 | + "LocalDisk", |
| 127 | + "LocalDiskInitializeParams", |
| 128 | + "Runtime", |
| 129 | + "RuntimeAcceleratorConfig", |
| 130 | + "RuntimeAccessConfig", |
| 131 | + "RuntimeMetrics", |
| 132 | + "RuntimeShieldedInstanceConfig", |
| 133 | + "RuntimeSoftwareConfig", |
| 134 | + "VirtualMachine", |
| 135 | + "VirtualMachineConfig", |
| 136 | + "Schedule", |
59 | 137 | "CreateEnvironmentRequest",
|
| 138 | + "CreateExecutionRequest", |
60 | 139 | "CreateInstanceRequest",
|
| 140 | + "CreateScheduleRequest", |
61 | 141 | "DeleteEnvironmentRequest",
|
| 142 | + "DeleteExecutionRequest", |
62 | 143 | "DeleteInstanceRequest",
|
| 144 | + "DeleteScheduleRequest", |
63 | 145 | "GetEnvironmentRequest",
|
| 146 | + "GetExecutionRequest", |
| 147 | + "GetInstanceHealthRequest", |
| 148 | + "GetInstanceHealthResponse", |
64 | 149 | "GetInstanceRequest",
|
| 150 | + "GetScheduleRequest", |
65 | 151 | "IsInstanceUpgradeableRequest",
|
66 | 152 | "IsInstanceUpgradeableResponse",
|
67 | 153 | "ListEnvironmentsRequest",
|
68 | 154 | "ListEnvironmentsResponse",
|
| 155 | + "ListExecutionsRequest", |
| 156 | + "ListExecutionsResponse", |
69 | 157 | "ListInstancesRequest",
|
70 | 158 | "ListInstancesResponse",
|
| 159 | + "ListSchedulesRequest", |
| 160 | + "ListSchedulesResponse", |
71 | 161 | "OperationMetadata",
|
72 | 162 | "RegisterInstanceRequest",
|
73 | 163 | "ReportInstanceInfoRequest",
|
74 | 164 | "ResetInstanceRequest",
|
| 165 | + "RollbackInstanceRequest", |
75 | 166 | "SetInstanceAcceleratorRequest",
|
76 | 167 | "SetInstanceLabelsRequest",
|
77 | 168 | "SetInstanceMachineTypeRequest",
|
78 | 169 | "StartInstanceRequest",
|
79 | 170 | "StopInstanceRequest",
|
| 171 | + "TriggerScheduleRequest", |
| 172 | + "UpdateInstanceConfigRequest", |
| 173 | + "UpdateShieldedInstanceConfigRequest", |
80 | 174 | "UpgradeInstanceInternalRequest",
|
81 | 175 | "UpgradeInstanceRequest",
|
82 | 176 | )
|
0 commit comments