Skip to content

Commit b706a4b

Browse files
feat: Run the code generator (4907cb2)
1 parent 0ec49a9 commit b706a4b

File tree

9 files changed

+2248
-0
lines changed

9 files changed

+2248
-0
lines changed
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright 2025 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.events.cloud.apihub import gapic_version as package_version
17+
18+
__version__ = package_version.__version__
19+
20+
21+
22+
from google.events.cloud.apihub_v1.types.data import Api
23+
from google.events.cloud.apihub_v1.types.data import ApiEventData
24+
from google.events.cloud.apihub_v1.types.data import ApiHubInstance
25+
from google.events.cloud.apihub_v1.types.data import ApiHubInstanceEventData
26+
from google.events.cloud.apihub_v1.types.data import Attribute
27+
from google.events.cloud.apihub_v1.types.data import AttributeEventData
28+
from google.events.cloud.apihub_v1.types.data import AttributeValues
29+
from google.events.cloud.apihub_v1.types.data import Dependency
30+
from google.events.cloud.apihub_v1.types.data import DependencyEntityReference
31+
from google.events.cloud.apihub_v1.types.data import DependencyErrorDetail
32+
from google.events.cloud.apihub_v1.types.data import DependencyEventData
33+
from google.events.cloud.apihub_v1.types.data import Deployment
34+
from google.events.cloud.apihub_v1.types.data import DeploymentEventData
35+
from google.events.cloud.apihub_v1.types.data import Documentation
36+
from google.events.cloud.apihub_v1.types.data import ExternalApi
37+
from google.events.cloud.apihub_v1.types.data import ExternalApiEventData
38+
from google.events.cloud.apihub_v1.types.data import HostProjectRegistration
39+
from google.events.cloud.apihub_v1.types.data import HostProjectRegistrationEventData
40+
from google.events.cloud.apihub_v1.types.data import Issue
41+
from google.events.cloud.apihub_v1.types.data import LintResponse
42+
from google.events.cloud.apihub_v1.types.data import OpenApiSpecDetails
43+
from google.events.cloud.apihub_v1.types.data import Owner
44+
from google.events.cloud.apihub_v1.types.data import Point
45+
from google.events.cloud.apihub_v1.types.data import Range
46+
from google.events.cloud.apihub_v1.types.data import RuntimeProjectAttachment
47+
from google.events.cloud.apihub_v1.types.data import RuntimeProjectAttachmentEventData
48+
from google.events.cloud.apihub_v1.types.data import Spec
49+
from google.events.cloud.apihub_v1.types.data import SpecContents
50+
from google.events.cloud.apihub_v1.types.data import SpecDetails
51+
from google.events.cloud.apihub_v1.types.data import SpecEventData
52+
from google.events.cloud.apihub_v1.types.data import Version
53+
from google.events.cloud.apihub_v1.types.data import VersionEventData
54+
from google.events.cloud.apihub_v1.types.data import Linter
55+
from google.events.cloud.apihub_v1.types.data import LintState
56+
from google.events.cloud.apihub_v1.types.data import Severity
57+
58+
__all__ = ('Api',
59+
'ApiEventData',
60+
'ApiHubInstance',
61+
'ApiHubInstanceEventData',
62+
'Attribute',
63+
'AttributeEventData',
64+
'AttributeValues',
65+
'Dependency',
66+
'DependencyEntityReference',
67+
'DependencyErrorDetail',
68+
'DependencyEventData',
69+
'Deployment',
70+
'DeploymentEventData',
71+
'Documentation',
72+
'ExternalApi',
73+
'ExternalApiEventData',
74+
'HostProjectRegistration',
75+
'HostProjectRegistrationEventData',
76+
'Issue',
77+
'LintResponse',
78+
'OpenApiSpecDetails',
79+
'Owner',
80+
'Point',
81+
'Range',
82+
'RuntimeProjectAttachment',
83+
'RuntimeProjectAttachmentEventData',
84+
'Spec',
85+
'SpecContents',
86+
'SpecDetails',
87+
'SpecEventData',
88+
'Version',
89+
'VersionEventData',
90+
'Linter',
91+
'LintState',
92+
'Severity',
93+
)
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright 2025 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__ = "0.0.0" # {x-release-please-version}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Marker file for PEP 561.
2+
# The google-events-cloud-apihub package uses inline types.
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright 2025 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.events.cloud.apihub_v1 import gapic_version as package_version
17+
18+
__version__ = package_version.__version__
19+
20+
21+
22+
from .types.data import Api
23+
from .types.data import ApiEventData
24+
from .types.data import ApiHubInstance
25+
from .types.data import ApiHubInstanceEventData
26+
from .types.data import Attribute
27+
from .types.data import AttributeEventData
28+
from .types.data import AttributeValues
29+
from .types.data import Dependency
30+
from .types.data import DependencyEntityReference
31+
from .types.data import DependencyErrorDetail
32+
from .types.data import DependencyEventData
33+
from .types.data import Deployment
34+
from .types.data import DeploymentEventData
35+
from .types.data import Documentation
36+
from .types.data import ExternalApi
37+
from .types.data import ExternalApiEventData
38+
from .types.data import HostProjectRegistration
39+
from .types.data import HostProjectRegistrationEventData
40+
from .types.data import Issue
41+
from .types.data import LintResponse
42+
from .types.data import OpenApiSpecDetails
43+
from .types.data import Owner
44+
from .types.data import Point
45+
from .types.data import Range
46+
from .types.data import RuntimeProjectAttachment
47+
from .types.data import RuntimeProjectAttachmentEventData
48+
from .types.data import Spec
49+
from .types.data import SpecContents
50+
from .types.data import SpecDetails
51+
from .types.data import SpecEventData
52+
from .types.data import Version
53+
from .types.data import VersionEventData
54+
from .types.data import Linter
55+
from .types.data import LintState
56+
from .types.data import Severity
57+
58+
__all__ = (
59+
'Api',
60+
'ApiEventData',
61+
'ApiHubInstance',
62+
'ApiHubInstanceEventData',
63+
'Attribute',
64+
'AttributeEventData',
65+
'AttributeValues',
66+
'Dependency',
67+
'DependencyEntityReference',
68+
'DependencyErrorDetail',
69+
'DependencyEventData',
70+
'Deployment',
71+
'DeploymentEventData',
72+
'Documentation',
73+
'ExternalApi',
74+
'ExternalApiEventData',
75+
'HostProjectRegistration',
76+
'HostProjectRegistrationEventData',
77+
'Issue',
78+
'LintResponse',
79+
'LintState',
80+
'Linter',
81+
'OpenApiSpecDetails',
82+
'Owner',
83+
'Point',
84+
'Range',
85+
'RuntimeProjectAttachment',
86+
'RuntimeProjectAttachmentEventData',
87+
'Severity',
88+
'Spec',
89+
'SpecContents',
90+
'SpecDetails',
91+
'SpecEventData',
92+
'Version',
93+
'VersionEventData',
94+
)
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright 2025 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__ = "0.0.0" # {x-release-please-version}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Marker file for PEP 561.
2+
# The google-events-cloud-apihub package uses inline types.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright 2025 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+
#
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright 2025 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 .data import (
17+
Api,
18+
ApiEventData,
19+
ApiHubInstance,
20+
ApiHubInstanceEventData,
21+
Attribute,
22+
AttributeEventData,
23+
AttributeValues,
24+
Dependency,
25+
DependencyEntityReference,
26+
DependencyErrorDetail,
27+
DependencyEventData,
28+
Deployment,
29+
DeploymentEventData,
30+
Documentation,
31+
ExternalApi,
32+
ExternalApiEventData,
33+
HostProjectRegistration,
34+
HostProjectRegistrationEventData,
35+
Issue,
36+
LintResponse,
37+
OpenApiSpecDetails,
38+
Owner,
39+
Point,
40+
Range,
41+
RuntimeProjectAttachment,
42+
RuntimeProjectAttachmentEventData,
43+
Spec,
44+
SpecContents,
45+
SpecDetails,
46+
SpecEventData,
47+
Version,
48+
VersionEventData,
49+
Linter,
50+
LintState,
51+
Severity,
52+
)
53+
54+
__all__ = (
55+
'Api',
56+
'ApiEventData',
57+
'ApiHubInstance',
58+
'ApiHubInstanceEventData',
59+
'Attribute',
60+
'AttributeEventData',
61+
'AttributeValues',
62+
'Dependency',
63+
'DependencyEntityReference',
64+
'DependencyErrorDetail',
65+
'DependencyEventData',
66+
'Deployment',
67+
'DeploymentEventData',
68+
'Documentation',
69+
'ExternalApi',
70+
'ExternalApiEventData',
71+
'HostProjectRegistration',
72+
'HostProjectRegistrationEventData',
73+
'Issue',
74+
'LintResponse',
75+
'OpenApiSpecDetails',
76+
'Owner',
77+
'Point',
78+
'Range',
79+
'RuntimeProjectAttachment',
80+
'RuntimeProjectAttachmentEventData',
81+
'Spec',
82+
'SpecContents',
83+
'SpecDetails',
84+
'SpecEventData',
85+
'Version',
86+
'VersionEventData',
87+
'Linter',
88+
'LintState',
89+
'Severity',
90+
)

0 commit comments

Comments
 (0)