feat: Add new gcloud commands, API clients, and third-party libraries across various services.

This commit is contained in:
2026-01-01 20:26:35 +01:00
parent 5e23cbece0
commit a19e592eb7
25221 changed files with 8324611 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
# -*- coding: utf-8 -*- #
# Copyright 2017 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Various functions intended to be used as argument processors."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
def RelativeName(ref):
"""Converts a resource reference into its relative name string."""
return ref.RelativeName() if ref else None
def URI(ref):
"""Converts a resource reference into its URI representation."""
return ref.SelfLink() if ref else None

View File

@@ -0,0 +1,54 @@
# -*- coding: utf-8 -*- #
# Copyright 2017 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Various functions to be used to modify a request before it is sent."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.command_lib.util.apis import arg_utils
def SetFieldFromArg(api_field, arg_name):
def Process(unused_ref, args, req):
arg_utils.SetFieldInMessage(
req, api_field, arg_utils.GetFromNamespace(args, arg_name))
return req
return Process
def SetFieldFromRelativeName(api_field):
def Process(ref, args, request):
del args # Unused in Process
arg_utils.SetFieldInMessage(request, api_field, ref.RelativeName())
return request
return Process
def SetFieldFromName(api_field):
def Process(ref, args, request):
del args # Unused in Process
arg_utils.SetFieldInMessage(request, api_field, ref.Name())
return request
return Process
def SetParentRequestHook(ref, args, request):
"""Declarative request hook to add relative parent to issued requests."""
del args # Unused
request.parent = ref.Parent().RelativeName()
return request

View File

@@ -0,0 +1,56 @@
# -*- coding: utf-8 -*- #
# Copyright 2017 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Various functions intended to be used as an argument type function."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.command_lib.util.apis import arg_utils
from googlecloudsdk.core import resources
import six
def Resource(collection, api_version=None):
"""A hook to do basic parsing of a resource in a single flag.
Args:
collection: str, The collection the resource is in.
api_version: str, An optional version to use to parse this resource.
Returns:
f(value) -> resource_ref, An argument processing function that returns the
parsed resource reference.
"""
collection_info = resources.REGISTRY.GetCollectionInfo(
collection, api_version=api_version)
params = collection_info.GetParams('')
def Parse(value):
if not value:
return None
ref = resources.REGISTRY.Parse(
value, collection=collection,
params={k: f for k, f in six.iteritems(arg_utils.DEFAULT_PARAMS)
if k in params})
return ref
return Parse
def LowerCaseType(value):
return value.lower()