google-cloud-network-connectivity 2.7.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- google/cloud/networkconnectivity/__init__.py +171 -0
- google/cloud/networkconnectivity/gapic_version.py +16 -0
- google/cloud/networkconnectivity/py.typed +2 -0
- google/cloud/networkconnectivity_v1/__init__.py +164 -0
- google/cloud/networkconnectivity_v1/gapic_metadata.json +287 -0
- google/cloud/networkconnectivity_v1/gapic_version.py +16 -0
- google/cloud/networkconnectivity_v1/py.typed +2 -0
- google/cloud/networkconnectivity_v1/services/__init__.py +15 -0
- google/cloud/networkconnectivity_v1/services/hub_service/__init__.py +22 -0
- google/cloud/networkconnectivity_v1/services/hub_service/async_client.py +3712 -0
- google/cloud/networkconnectivity_v1/services/hub_service/client.py +4258 -0
- google/cloud/networkconnectivity_v1/services/hub_service/pagers.py +1133 -0
- google/cloud/networkconnectivity_v1/services/hub_service/transports/__init__.py +32 -0
- google/cloud/networkconnectivity_v1/services/hub_service/transports/base.py +567 -0
- google/cloud/networkconnectivity_v1/services/hub_service/transports/grpc.py +1085 -0
- google/cloud/networkconnectivity_v1/services/hub_service/transports/grpc_asyncio.py +1264 -0
- google/cloud/networkconnectivity_v1/services/policy_based_routing_service/__init__.py +22 -0
- google/cloud/networkconnectivity_v1/services/policy_based_routing_service/async_client.py +1510 -0
- google/cloud/networkconnectivity_v1/services/policy_based_routing_service/client.py +1962 -0
- google/cloud/networkconnectivity_v1/services/policy_based_routing_service/pagers.py +201 -0
- google/cloud/networkconnectivity_v1/services/policy_based_routing_service/transports/__init__.py +34 -0
- google/cloud/networkconnectivity_v1/services/policy_based_routing_service/transports/base.py +347 -0
- google/cloud/networkconnectivity_v1/services/policy_based_routing_service/transports/grpc.py +656 -0
- google/cloud/networkconnectivity_v1/services/policy_based_routing_service/transports/grpc_asyncio.py +740 -0
- google/cloud/networkconnectivity_v1/types/__init__.py +150 -0
- google/cloud/networkconnectivity_v1/types/common.py +93 -0
- google/cloud/networkconnectivity_v1/types/hub.py +2683 -0
- google/cloud/networkconnectivity_v1/types/policy_based_routing.py +531 -0
- google/cloud/networkconnectivity_v1alpha1/__init__.py +62 -0
- google/cloud/networkconnectivity_v1alpha1/gapic_metadata.json +123 -0
- google/cloud/networkconnectivity_v1alpha1/gapic_version.py +16 -0
- google/cloud/networkconnectivity_v1alpha1/py.typed +2 -0
- google/cloud/networkconnectivity_v1alpha1/services/__init__.py +15 -0
- google/cloud/networkconnectivity_v1alpha1/services/hub_service/__init__.py +22 -0
- google/cloud/networkconnectivity_v1alpha1/services/hub_service/async_client.py +1643 -0
- google/cloud/networkconnectivity_v1alpha1/services/hub_service/client.py +2117 -0
- google/cloud/networkconnectivity_v1alpha1/services/hub_service/pagers.py +353 -0
- google/cloud/networkconnectivity_v1alpha1/services/hub_service/transports/__init__.py +32 -0
- google/cloud/networkconnectivity_v1alpha1/services/hub_service/transports/base.py +288 -0
- google/cloud/networkconnectivity_v1alpha1/services/hub_service/transports/grpc.py +603 -0
- google/cloud/networkconnectivity_v1alpha1/services/hub_service/transports/grpc_asyncio.py +676 -0
- google/cloud/networkconnectivity_v1alpha1/types/__init__.py +54 -0
- google/cloud/networkconnectivity_v1alpha1/types/common.py +93 -0
- google/cloud/networkconnectivity_v1alpha1/types/hub.py +731 -0
- google_cloud_network_connectivity-2.7.2.dist-info/LICENSE +202 -0
- google_cloud_network_connectivity-2.7.2.dist-info/METADATA +229 -0
- google_cloud_network_connectivity-2.7.2.dist-info/RECORD +49 -0
- google_cloud_network_connectivity-2.7.2.dist-info/WHEEL +5 -0
- google_cloud_network_connectivity-2.7.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 Google LLC
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
#
|
|
16
|
+
from google.cloud.networkconnectivity import gapic_version as package_version
|
|
17
|
+
|
|
18
|
+
__version__ = package_version.__version__
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
from google.cloud.networkconnectivity_v1.services.hub_service.async_client import (
|
|
22
|
+
HubServiceAsyncClient,
|
|
23
|
+
)
|
|
24
|
+
from google.cloud.networkconnectivity_v1.services.hub_service.client import (
|
|
25
|
+
HubServiceClient,
|
|
26
|
+
)
|
|
27
|
+
from google.cloud.networkconnectivity_v1.services.policy_based_routing_service.async_client import (
|
|
28
|
+
PolicyBasedRoutingServiceAsyncClient,
|
|
29
|
+
)
|
|
30
|
+
from google.cloud.networkconnectivity_v1.services.policy_based_routing_service.client import (
|
|
31
|
+
PolicyBasedRoutingServiceClient,
|
|
32
|
+
)
|
|
33
|
+
from google.cloud.networkconnectivity_v1.types.common import OperationMetadata
|
|
34
|
+
from google.cloud.networkconnectivity_v1.types.hub import (
|
|
35
|
+
AcceptHubSpokeRequest,
|
|
36
|
+
AcceptHubSpokeResponse,
|
|
37
|
+
AutoAccept,
|
|
38
|
+
CreateHubRequest,
|
|
39
|
+
CreateSpokeRequest,
|
|
40
|
+
DeleteHubRequest,
|
|
41
|
+
DeleteSpokeRequest,
|
|
42
|
+
GetGroupRequest,
|
|
43
|
+
GetHubRequest,
|
|
44
|
+
GetRouteRequest,
|
|
45
|
+
GetRouteTableRequest,
|
|
46
|
+
GetSpokeRequest,
|
|
47
|
+
Group,
|
|
48
|
+
Hub,
|
|
49
|
+
HubStatusEntry,
|
|
50
|
+
LinkedInterconnectAttachments,
|
|
51
|
+
LinkedProducerVpcNetwork,
|
|
52
|
+
LinkedRouterApplianceInstances,
|
|
53
|
+
LinkedVpcNetwork,
|
|
54
|
+
LinkedVpnTunnels,
|
|
55
|
+
ListGroupsRequest,
|
|
56
|
+
ListGroupsResponse,
|
|
57
|
+
ListHubSpokesRequest,
|
|
58
|
+
ListHubSpokesResponse,
|
|
59
|
+
ListHubsRequest,
|
|
60
|
+
ListHubsResponse,
|
|
61
|
+
ListRoutesRequest,
|
|
62
|
+
ListRoutesResponse,
|
|
63
|
+
ListRouteTablesRequest,
|
|
64
|
+
ListRouteTablesResponse,
|
|
65
|
+
ListSpokesRequest,
|
|
66
|
+
ListSpokesResponse,
|
|
67
|
+
LocationFeature,
|
|
68
|
+
LocationMetadata,
|
|
69
|
+
NextHopInterconnectAttachment,
|
|
70
|
+
NextHopRouterApplianceInstance,
|
|
71
|
+
NextHopVpcNetwork,
|
|
72
|
+
NextHopVPNTunnel,
|
|
73
|
+
PolicyMode,
|
|
74
|
+
PresetTopology,
|
|
75
|
+
PscPropagationStatus,
|
|
76
|
+
QueryHubStatusRequest,
|
|
77
|
+
QueryHubStatusResponse,
|
|
78
|
+
RejectHubSpokeRequest,
|
|
79
|
+
RejectHubSpokeResponse,
|
|
80
|
+
Route,
|
|
81
|
+
RouterApplianceInstance,
|
|
82
|
+
RouteTable,
|
|
83
|
+
RouteType,
|
|
84
|
+
RoutingVPC,
|
|
85
|
+
Spoke,
|
|
86
|
+
SpokeSummary,
|
|
87
|
+
SpokeType,
|
|
88
|
+
State,
|
|
89
|
+
UpdateGroupRequest,
|
|
90
|
+
UpdateHubRequest,
|
|
91
|
+
UpdateSpokeRequest,
|
|
92
|
+
)
|
|
93
|
+
from google.cloud.networkconnectivity_v1.types.policy_based_routing import (
|
|
94
|
+
CreatePolicyBasedRouteRequest,
|
|
95
|
+
DeletePolicyBasedRouteRequest,
|
|
96
|
+
GetPolicyBasedRouteRequest,
|
|
97
|
+
ListPolicyBasedRoutesRequest,
|
|
98
|
+
ListPolicyBasedRoutesResponse,
|
|
99
|
+
PolicyBasedRoute,
|
|
100
|
+
)
|
|
101
|
+
|
|
102
|
+
__all__ = (
|
|
103
|
+
"HubServiceClient",
|
|
104
|
+
"HubServiceAsyncClient",
|
|
105
|
+
"PolicyBasedRoutingServiceClient",
|
|
106
|
+
"PolicyBasedRoutingServiceAsyncClient",
|
|
107
|
+
"OperationMetadata",
|
|
108
|
+
"AcceptHubSpokeRequest",
|
|
109
|
+
"AcceptHubSpokeResponse",
|
|
110
|
+
"AutoAccept",
|
|
111
|
+
"CreateHubRequest",
|
|
112
|
+
"CreateSpokeRequest",
|
|
113
|
+
"DeleteHubRequest",
|
|
114
|
+
"DeleteSpokeRequest",
|
|
115
|
+
"GetGroupRequest",
|
|
116
|
+
"GetHubRequest",
|
|
117
|
+
"GetRouteRequest",
|
|
118
|
+
"GetRouteTableRequest",
|
|
119
|
+
"GetSpokeRequest",
|
|
120
|
+
"Group",
|
|
121
|
+
"Hub",
|
|
122
|
+
"HubStatusEntry",
|
|
123
|
+
"LinkedInterconnectAttachments",
|
|
124
|
+
"LinkedProducerVpcNetwork",
|
|
125
|
+
"LinkedRouterApplianceInstances",
|
|
126
|
+
"LinkedVpcNetwork",
|
|
127
|
+
"LinkedVpnTunnels",
|
|
128
|
+
"ListGroupsRequest",
|
|
129
|
+
"ListGroupsResponse",
|
|
130
|
+
"ListHubSpokesRequest",
|
|
131
|
+
"ListHubSpokesResponse",
|
|
132
|
+
"ListHubsRequest",
|
|
133
|
+
"ListHubsResponse",
|
|
134
|
+
"ListRoutesRequest",
|
|
135
|
+
"ListRoutesResponse",
|
|
136
|
+
"ListRouteTablesRequest",
|
|
137
|
+
"ListRouteTablesResponse",
|
|
138
|
+
"ListSpokesRequest",
|
|
139
|
+
"ListSpokesResponse",
|
|
140
|
+
"LocationMetadata",
|
|
141
|
+
"NextHopInterconnectAttachment",
|
|
142
|
+
"NextHopRouterApplianceInstance",
|
|
143
|
+
"NextHopVpcNetwork",
|
|
144
|
+
"NextHopVPNTunnel",
|
|
145
|
+
"PscPropagationStatus",
|
|
146
|
+
"QueryHubStatusRequest",
|
|
147
|
+
"QueryHubStatusResponse",
|
|
148
|
+
"RejectHubSpokeRequest",
|
|
149
|
+
"RejectHubSpokeResponse",
|
|
150
|
+
"Route",
|
|
151
|
+
"RouterApplianceInstance",
|
|
152
|
+
"RouteTable",
|
|
153
|
+
"RoutingVPC",
|
|
154
|
+
"Spoke",
|
|
155
|
+
"SpokeSummary",
|
|
156
|
+
"UpdateGroupRequest",
|
|
157
|
+
"UpdateHubRequest",
|
|
158
|
+
"UpdateSpokeRequest",
|
|
159
|
+
"LocationFeature",
|
|
160
|
+
"PolicyMode",
|
|
161
|
+
"PresetTopology",
|
|
162
|
+
"RouteType",
|
|
163
|
+
"SpokeType",
|
|
164
|
+
"State",
|
|
165
|
+
"CreatePolicyBasedRouteRequest",
|
|
166
|
+
"DeletePolicyBasedRouteRequest",
|
|
167
|
+
"GetPolicyBasedRouteRequest",
|
|
168
|
+
"ListPolicyBasedRoutesRequest",
|
|
169
|
+
"ListPolicyBasedRoutesResponse",
|
|
170
|
+
"PolicyBasedRoute",
|
|
171
|
+
)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 Google LLC
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
#
|
|
16
|
+
__version__ = "2.7.2" # {x-release-please-version}
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 Google LLC
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
#
|
|
16
|
+
from google.cloud.networkconnectivity_v1 import gapic_version as package_version
|
|
17
|
+
|
|
18
|
+
__version__ = package_version.__version__
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
from .services.hub_service import HubServiceAsyncClient, HubServiceClient
|
|
22
|
+
from .services.policy_based_routing_service import (
|
|
23
|
+
PolicyBasedRoutingServiceAsyncClient,
|
|
24
|
+
PolicyBasedRoutingServiceClient,
|
|
25
|
+
)
|
|
26
|
+
from .types.common import OperationMetadata
|
|
27
|
+
from .types.hub import (
|
|
28
|
+
AcceptHubSpokeRequest,
|
|
29
|
+
AcceptHubSpokeResponse,
|
|
30
|
+
AutoAccept,
|
|
31
|
+
CreateHubRequest,
|
|
32
|
+
CreateSpokeRequest,
|
|
33
|
+
DeleteHubRequest,
|
|
34
|
+
DeleteSpokeRequest,
|
|
35
|
+
GetGroupRequest,
|
|
36
|
+
GetHubRequest,
|
|
37
|
+
GetRouteRequest,
|
|
38
|
+
GetRouteTableRequest,
|
|
39
|
+
GetSpokeRequest,
|
|
40
|
+
Group,
|
|
41
|
+
Hub,
|
|
42
|
+
HubStatusEntry,
|
|
43
|
+
LinkedInterconnectAttachments,
|
|
44
|
+
LinkedProducerVpcNetwork,
|
|
45
|
+
LinkedRouterApplianceInstances,
|
|
46
|
+
LinkedVpcNetwork,
|
|
47
|
+
LinkedVpnTunnels,
|
|
48
|
+
ListGroupsRequest,
|
|
49
|
+
ListGroupsResponse,
|
|
50
|
+
ListHubSpokesRequest,
|
|
51
|
+
ListHubSpokesResponse,
|
|
52
|
+
ListHubsRequest,
|
|
53
|
+
ListHubsResponse,
|
|
54
|
+
ListRoutesRequest,
|
|
55
|
+
ListRoutesResponse,
|
|
56
|
+
ListRouteTablesRequest,
|
|
57
|
+
ListRouteTablesResponse,
|
|
58
|
+
ListSpokesRequest,
|
|
59
|
+
ListSpokesResponse,
|
|
60
|
+
LocationFeature,
|
|
61
|
+
LocationMetadata,
|
|
62
|
+
NextHopInterconnectAttachment,
|
|
63
|
+
NextHopRouterApplianceInstance,
|
|
64
|
+
NextHopVpcNetwork,
|
|
65
|
+
NextHopVPNTunnel,
|
|
66
|
+
PolicyMode,
|
|
67
|
+
PresetTopology,
|
|
68
|
+
PscPropagationStatus,
|
|
69
|
+
QueryHubStatusRequest,
|
|
70
|
+
QueryHubStatusResponse,
|
|
71
|
+
RejectHubSpokeRequest,
|
|
72
|
+
RejectHubSpokeResponse,
|
|
73
|
+
Route,
|
|
74
|
+
RouterApplianceInstance,
|
|
75
|
+
RouteTable,
|
|
76
|
+
RouteType,
|
|
77
|
+
RoutingVPC,
|
|
78
|
+
Spoke,
|
|
79
|
+
SpokeSummary,
|
|
80
|
+
SpokeType,
|
|
81
|
+
State,
|
|
82
|
+
UpdateGroupRequest,
|
|
83
|
+
UpdateHubRequest,
|
|
84
|
+
UpdateSpokeRequest,
|
|
85
|
+
)
|
|
86
|
+
from .types.policy_based_routing import (
|
|
87
|
+
CreatePolicyBasedRouteRequest,
|
|
88
|
+
DeletePolicyBasedRouteRequest,
|
|
89
|
+
GetPolicyBasedRouteRequest,
|
|
90
|
+
ListPolicyBasedRoutesRequest,
|
|
91
|
+
ListPolicyBasedRoutesResponse,
|
|
92
|
+
PolicyBasedRoute,
|
|
93
|
+
)
|
|
94
|
+
|
|
95
|
+
__all__ = (
|
|
96
|
+
"HubServiceAsyncClient",
|
|
97
|
+
"PolicyBasedRoutingServiceAsyncClient",
|
|
98
|
+
"AcceptHubSpokeRequest",
|
|
99
|
+
"AcceptHubSpokeResponse",
|
|
100
|
+
"AutoAccept",
|
|
101
|
+
"CreateHubRequest",
|
|
102
|
+
"CreatePolicyBasedRouteRequest",
|
|
103
|
+
"CreateSpokeRequest",
|
|
104
|
+
"DeleteHubRequest",
|
|
105
|
+
"DeletePolicyBasedRouteRequest",
|
|
106
|
+
"DeleteSpokeRequest",
|
|
107
|
+
"GetGroupRequest",
|
|
108
|
+
"GetHubRequest",
|
|
109
|
+
"GetPolicyBasedRouteRequest",
|
|
110
|
+
"GetRouteRequest",
|
|
111
|
+
"GetRouteTableRequest",
|
|
112
|
+
"GetSpokeRequest",
|
|
113
|
+
"Group",
|
|
114
|
+
"Hub",
|
|
115
|
+
"HubServiceClient",
|
|
116
|
+
"HubStatusEntry",
|
|
117
|
+
"LinkedInterconnectAttachments",
|
|
118
|
+
"LinkedProducerVpcNetwork",
|
|
119
|
+
"LinkedRouterApplianceInstances",
|
|
120
|
+
"LinkedVpcNetwork",
|
|
121
|
+
"LinkedVpnTunnels",
|
|
122
|
+
"ListGroupsRequest",
|
|
123
|
+
"ListGroupsResponse",
|
|
124
|
+
"ListHubSpokesRequest",
|
|
125
|
+
"ListHubSpokesResponse",
|
|
126
|
+
"ListHubsRequest",
|
|
127
|
+
"ListHubsResponse",
|
|
128
|
+
"ListPolicyBasedRoutesRequest",
|
|
129
|
+
"ListPolicyBasedRoutesResponse",
|
|
130
|
+
"ListRouteTablesRequest",
|
|
131
|
+
"ListRouteTablesResponse",
|
|
132
|
+
"ListRoutesRequest",
|
|
133
|
+
"ListRoutesResponse",
|
|
134
|
+
"ListSpokesRequest",
|
|
135
|
+
"ListSpokesResponse",
|
|
136
|
+
"LocationFeature",
|
|
137
|
+
"LocationMetadata",
|
|
138
|
+
"NextHopInterconnectAttachment",
|
|
139
|
+
"NextHopRouterApplianceInstance",
|
|
140
|
+
"NextHopVPNTunnel",
|
|
141
|
+
"NextHopVpcNetwork",
|
|
142
|
+
"OperationMetadata",
|
|
143
|
+
"PolicyBasedRoute",
|
|
144
|
+
"PolicyBasedRoutingServiceClient",
|
|
145
|
+
"PolicyMode",
|
|
146
|
+
"PresetTopology",
|
|
147
|
+
"PscPropagationStatus",
|
|
148
|
+
"QueryHubStatusRequest",
|
|
149
|
+
"QueryHubStatusResponse",
|
|
150
|
+
"RejectHubSpokeRequest",
|
|
151
|
+
"RejectHubSpokeResponse",
|
|
152
|
+
"Route",
|
|
153
|
+
"RouteTable",
|
|
154
|
+
"RouteType",
|
|
155
|
+
"RouterApplianceInstance",
|
|
156
|
+
"RoutingVPC",
|
|
157
|
+
"Spoke",
|
|
158
|
+
"SpokeSummary",
|
|
159
|
+
"SpokeType",
|
|
160
|
+
"State",
|
|
161
|
+
"UpdateGroupRequest",
|
|
162
|
+
"UpdateHubRequest",
|
|
163
|
+
"UpdateSpokeRequest",
|
|
164
|
+
)
|
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
{
|
|
2
|
+
"comment": "This file maps proto services/RPCs to the corresponding library clients/methods",
|
|
3
|
+
"language": "python",
|
|
4
|
+
"libraryPackage": "google.cloud.networkconnectivity_v1",
|
|
5
|
+
"protoPackage": "google.cloud.networkconnectivity.v1",
|
|
6
|
+
"schema": "1.0",
|
|
7
|
+
"services": {
|
|
8
|
+
"HubService": {
|
|
9
|
+
"clients": {
|
|
10
|
+
"grpc": {
|
|
11
|
+
"libraryClient": "HubServiceClient",
|
|
12
|
+
"rpcs": {
|
|
13
|
+
"AcceptHubSpoke": {
|
|
14
|
+
"methods": [
|
|
15
|
+
"accept_hub_spoke"
|
|
16
|
+
]
|
|
17
|
+
},
|
|
18
|
+
"CreateHub": {
|
|
19
|
+
"methods": [
|
|
20
|
+
"create_hub"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"CreateSpoke": {
|
|
24
|
+
"methods": [
|
|
25
|
+
"create_spoke"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"DeleteHub": {
|
|
29
|
+
"methods": [
|
|
30
|
+
"delete_hub"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
"DeleteSpoke": {
|
|
34
|
+
"methods": [
|
|
35
|
+
"delete_spoke"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"GetGroup": {
|
|
39
|
+
"methods": [
|
|
40
|
+
"get_group"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"GetHub": {
|
|
44
|
+
"methods": [
|
|
45
|
+
"get_hub"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
"GetRoute": {
|
|
49
|
+
"methods": [
|
|
50
|
+
"get_route"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
"GetRouteTable": {
|
|
54
|
+
"methods": [
|
|
55
|
+
"get_route_table"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"GetSpoke": {
|
|
59
|
+
"methods": [
|
|
60
|
+
"get_spoke"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
"ListGroups": {
|
|
64
|
+
"methods": [
|
|
65
|
+
"list_groups"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
"ListHubSpokes": {
|
|
69
|
+
"methods": [
|
|
70
|
+
"list_hub_spokes"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
"ListHubs": {
|
|
74
|
+
"methods": [
|
|
75
|
+
"list_hubs"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
"ListRouteTables": {
|
|
79
|
+
"methods": [
|
|
80
|
+
"list_route_tables"
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
"ListRoutes": {
|
|
84
|
+
"methods": [
|
|
85
|
+
"list_routes"
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
"ListSpokes": {
|
|
89
|
+
"methods": [
|
|
90
|
+
"list_spokes"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
"QueryHubStatus": {
|
|
94
|
+
"methods": [
|
|
95
|
+
"query_hub_status"
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
"RejectHubSpoke": {
|
|
99
|
+
"methods": [
|
|
100
|
+
"reject_hub_spoke"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
"UpdateGroup": {
|
|
104
|
+
"methods": [
|
|
105
|
+
"update_group"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
"UpdateHub": {
|
|
109
|
+
"methods": [
|
|
110
|
+
"update_hub"
|
|
111
|
+
]
|
|
112
|
+
},
|
|
113
|
+
"UpdateSpoke": {
|
|
114
|
+
"methods": [
|
|
115
|
+
"update_spoke"
|
|
116
|
+
]
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"grpc-async": {
|
|
121
|
+
"libraryClient": "HubServiceAsyncClient",
|
|
122
|
+
"rpcs": {
|
|
123
|
+
"AcceptHubSpoke": {
|
|
124
|
+
"methods": [
|
|
125
|
+
"accept_hub_spoke"
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
"CreateHub": {
|
|
129
|
+
"methods": [
|
|
130
|
+
"create_hub"
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
"CreateSpoke": {
|
|
134
|
+
"methods": [
|
|
135
|
+
"create_spoke"
|
|
136
|
+
]
|
|
137
|
+
},
|
|
138
|
+
"DeleteHub": {
|
|
139
|
+
"methods": [
|
|
140
|
+
"delete_hub"
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
"DeleteSpoke": {
|
|
144
|
+
"methods": [
|
|
145
|
+
"delete_spoke"
|
|
146
|
+
]
|
|
147
|
+
},
|
|
148
|
+
"GetGroup": {
|
|
149
|
+
"methods": [
|
|
150
|
+
"get_group"
|
|
151
|
+
]
|
|
152
|
+
},
|
|
153
|
+
"GetHub": {
|
|
154
|
+
"methods": [
|
|
155
|
+
"get_hub"
|
|
156
|
+
]
|
|
157
|
+
},
|
|
158
|
+
"GetRoute": {
|
|
159
|
+
"methods": [
|
|
160
|
+
"get_route"
|
|
161
|
+
]
|
|
162
|
+
},
|
|
163
|
+
"GetRouteTable": {
|
|
164
|
+
"methods": [
|
|
165
|
+
"get_route_table"
|
|
166
|
+
]
|
|
167
|
+
},
|
|
168
|
+
"GetSpoke": {
|
|
169
|
+
"methods": [
|
|
170
|
+
"get_spoke"
|
|
171
|
+
]
|
|
172
|
+
},
|
|
173
|
+
"ListGroups": {
|
|
174
|
+
"methods": [
|
|
175
|
+
"list_groups"
|
|
176
|
+
]
|
|
177
|
+
},
|
|
178
|
+
"ListHubSpokes": {
|
|
179
|
+
"methods": [
|
|
180
|
+
"list_hub_spokes"
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
"ListHubs": {
|
|
184
|
+
"methods": [
|
|
185
|
+
"list_hubs"
|
|
186
|
+
]
|
|
187
|
+
},
|
|
188
|
+
"ListRouteTables": {
|
|
189
|
+
"methods": [
|
|
190
|
+
"list_route_tables"
|
|
191
|
+
]
|
|
192
|
+
},
|
|
193
|
+
"ListRoutes": {
|
|
194
|
+
"methods": [
|
|
195
|
+
"list_routes"
|
|
196
|
+
]
|
|
197
|
+
},
|
|
198
|
+
"ListSpokes": {
|
|
199
|
+
"methods": [
|
|
200
|
+
"list_spokes"
|
|
201
|
+
]
|
|
202
|
+
},
|
|
203
|
+
"QueryHubStatus": {
|
|
204
|
+
"methods": [
|
|
205
|
+
"query_hub_status"
|
|
206
|
+
]
|
|
207
|
+
},
|
|
208
|
+
"RejectHubSpoke": {
|
|
209
|
+
"methods": [
|
|
210
|
+
"reject_hub_spoke"
|
|
211
|
+
]
|
|
212
|
+
},
|
|
213
|
+
"UpdateGroup": {
|
|
214
|
+
"methods": [
|
|
215
|
+
"update_group"
|
|
216
|
+
]
|
|
217
|
+
},
|
|
218
|
+
"UpdateHub": {
|
|
219
|
+
"methods": [
|
|
220
|
+
"update_hub"
|
|
221
|
+
]
|
|
222
|
+
},
|
|
223
|
+
"UpdateSpoke": {
|
|
224
|
+
"methods": [
|
|
225
|
+
"update_spoke"
|
|
226
|
+
]
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
"PolicyBasedRoutingService": {
|
|
233
|
+
"clients": {
|
|
234
|
+
"grpc": {
|
|
235
|
+
"libraryClient": "PolicyBasedRoutingServiceClient",
|
|
236
|
+
"rpcs": {
|
|
237
|
+
"CreatePolicyBasedRoute": {
|
|
238
|
+
"methods": [
|
|
239
|
+
"create_policy_based_route"
|
|
240
|
+
]
|
|
241
|
+
},
|
|
242
|
+
"DeletePolicyBasedRoute": {
|
|
243
|
+
"methods": [
|
|
244
|
+
"delete_policy_based_route"
|
|
245
|
+
]
|
|
246
|
+
},
|
|
247
|
+
"GetPolicyBasedRoute": {
|
|
248
|
+
"methods": [
|
|
249
|
+
"get_policy_based_route"
|
|
250
|
+
]
|
|
251
|
+
},
|
|
252
|
+
"ListPolicyBasedRoutes": {
|
|
253
|
+
"methods": [
|
|
254
|
+
"list_policy_based_routes"
|
|
255
|
+
]
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
"grpc-async": {
|
|
260
|
+
"libraryClient": "PolicyBasedRoutingServiceAsyncClient",
|
|
261
|
+
"rpcs": {
|
|
262
|
+
"CreatePolicyBasedRoute": {
|
|
263
|
+
"methods": [
|
|
264
|
+
"create_policy_based_route"
|
|
265
|
+
]
|
|
266
|
+
},
|
|
267
|
+
"DeletePolicyBasedRoute": {
|
|
268
|
+
"methods": [
|
|
269
|
+
"delete_policy_based_route"
|
|
270
|
+
]
|
|
271
|
+
},
|
|
272
|
+
"GetPolicyBasedRoute": {
|
|
273
|
+
"methods": [
|
|
274
|
+
"get_policy_based_route"
|
|
275
|
+
]
|
|
276
|
+
},
|
|
277
|
+
"ListPolicyBasedRoutes": {
|
|
278
|
+
"methods": [
|
|
279
|
+
"list_policy_based_routes"
|
|
280
|
+
]
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 Google LLC
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
#
|
|
16
|
+
__version__ = "2.7.2" # {x-release-please-version}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 Google LLC
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
#
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 Google LLC
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
#
|
|
16
|
+
from .async_client import HubServiceAsyncClient
|
|
17
|
+
from .client import HubServiceClient
|
|
18
|
+
|
|
19
|
+
__all__ = (
|
|
20
|
+
"HubServiceClient",
|
|
21
|
+
"HubServiceAsyncClient",
|
|
22
|
+
)
|