Skip to content

Commit 5fd46f9

Browse files
committed
Generate v21 stubs
Change-Id: Idcaa6aba4da6bf71e81bfec8ab51ed3f5bd11614
1 parent b1bb6b1 commit 5fd46f9

File tree

1,687 files changed

+408842
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,687 files changed

+408842
-1
lines changed

google/ads/googleads/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
_SERVICE_CLIENT_TEMPLATE = "{}Client"
3333

34-
_VALID_API_VERSIONS = ["v20", "v19", "v18"]
34+
_VALID_API_VERSIONS = ["v21", "v20", "v19", "v18"]
3535
_MESSAGE_TYPES = ["common", "enums", "errors", "resources", "services"]
3636
_DEFAULT_VERSION = _VALID_API_VERSIONS[0]
3737

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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.ads.googleads.v21 import gapic_version as package_version
17+
18+
__version__ = package_version.__version__
19+
20+
from . import common
21+
from . import enums
22+
from . import errors
23+
from . import resources
24+
from . import services
25+
26+
27+
__all__ = (
28+
"common",
29+
"enums",
30+
"errors",
31+
"resources",
32+
"services",
33+
)

google/ads/googleads/v21/common/__init__.py

Lines changed: 707 additions & 0 deletions
Large diffs are not rendered by default.
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+
#

0 commit comments

Comments
 (0)