body_hash
stringlengths
64
64
body
stringlengths
23
109k
docstring
stringlengths
1
57k
path
stringlengths
4
198
name
stringlengths
1
115
repository_name
stringlengths
7
111
repository_stars
float64
0
191k
lang
stringclasses
1 value
body_without_docstring
stringlengths
14
108k
unified
stringlengths
45
133k
1d127512f50995e2d9488f5448cc03655a46d7f42f3cc850969bbf68b8508576
def main(): '\n Generates test cases data used in tests.\n ' for case_nro in range(0, 20): dimension_n = randint(3, 5) dimension_m = randint(3, 5) mapping = {'K': King, 'Q': Queen, 'R': Rook, 'B': Bishop, 'N': Knight} board = Board(dimension_n, dimension_m) pieces = [] number_of_pieces = randint(0, 6) for _ in range(0, number_of_pieces): pieces.append(mapping[choice([key for key in mapping.keys()])]()) inputs = {'n': dimension_n, 'm': dimension_m, 'pieces': [piece.piece_identification for piece in pieces]} print('Generate case with {0}'.format(inputs)) input_filename = os.path.join(TEST_DATA_PATH, 'params_{0}'.format(case_nro)) with open(input_filename, 'w') as input_params_file: input_params_file.write(json.dumps(inputs)) solution_filename = os.path.join(TEST_DATA_PATH, 'solution_{0}'.format(case_nro)) with open(solution_filename, 'a') as output_file: for board in backtracking(board, pieces.copy(), pieces, set()): output_file.write((board.to_json() + '\n'))
Generates test cases data used in tests.
tests/case_generator.py
main
llazzaro/chess_configurations
0
python
def main(): '\n \n ' for case_nro in range(0, 20): dimension_n = randint(3, 5) dimension_m = randint(3, 5) mapping = {'K': King, 'Q': Queen, 'R': Rook, 'B': Bishop, 'N': Knight} board = Board(dimension_n, dimension_m) pieces = [] number_of_pieces = randint(0, 6) for _ in range(0, number_of_pieces): pieces.append(mapping[choice([key for key in mapping.keys()])]()) inputs = {'n': dimension_n, 'm': dimension_m, 'pieces': [piece.piece_identification for piece in pieces]} print('Generate case with {0}'.format(inputs)) input_filename = os.path.join(TEST_DATA_PATH, 'params_{0}'.format(case_nro)) with open(input_filename, 'w') as input_params_file: input_params_file.write(json.dumps(inputs)) solution_filename = os.path.join(TEST_DATA_PATH, 'solution_{0}'.format(case_nro)) with open(solution_filename, 'a') as output_file: for board in backtracking(board, pieces.copy(), pieces, set()): output_file.write((board.to_json() + '\n'))
def main(): '\n \n ' for case_nro in range(0, 20): dimension_n = randint(3, 5) dimension_m = randint(3, 5) mapping = {'K': King, 'Q': Queen, 'R': Rook, 'B': Bishop, 'N': Knight} board = Board(dimension_n, dimension_m) pieces = [] number_of_pieces = randint(0, 6) for _ in range(0, number_of_pieces): pieces.append(mapping[choice([key for key in mapping.keys()])]()) inputs = {'n': dimension_n, 'm': dimension_m, 'pieces': [piece.piece_identification for piece in pieces]} print('Generate case with {0}'.format(inputs)) input_filename = os.path.join(TEST_DATA_PATH, 'params_{0}'.format(case_nro)) with open(input_filename, 'w') as input_params_file: input_params_file.write(json.dumps(inputs)) solution_filename = os.path.join(TEST_DATA_PATH, 'solution_{0}'.format(case_nro)) with open(solution_filename, 'a') as output_file: for board in backtracking(board, pieces.copy(), pieces, set()): output_file.write((board.to_json() + '\n'))<|docstring|>Generates test cases data used in tests.<|endoftext|>
59077147105774db328fd4a040b9606ec108cf1b9fade56d145a8e9d0de3678c
def create(self, request, *args, **kwargs): '\n Creates a Stock.\n If successful, response payload with:\n - status code: 201\n - data\n If unsuccessful, a response payload with:\n - status code: 400\n ' code = generate_code() ref_number = ('STK' + str((code * 9))) serializer_context = {'request': request, 'ref_number': ref_number} serializer = self.serializer_class(data=request.data, context=serializer_context) if serializer.is_valid(): serializer.save(ref_number=ref_number) return Response(serializer.data, status=status.HTTP_201_CREATED) data = {'status': 'error'} data.update({'data': serializer.errors}) status_code = status.HTTP_400_BAD_REQUEST return Response(data, status=status_code)
Creates a Stock. If successful, response payload with: - status code: 201 - data If unsuccessful, a response payload with: - status code: 400
apps/stock/views/stocks.py
create
kwanj-k/ctrim_api
1
python
def create(self, request, *args, **kwargs): '\n Creates a Stock.\n If successful, response payload with:\n - status code: 201\n - data\n If unsuccessful, a response payload with:\n - status code: 400\n ' code = generate_code() ref_number = ('STK' + str((code * 9))) serializer_context = {'request': request, 'ref_number': ref_number} serializer = self.serializer_class(data=request.data, context=serializer_context) if serializer.is_valid(): serializer.save(ref_number=ref_number) return Response(serializer.data, status=status.HTTP_201_CREATED) data = {'status': 'error'} data.update({'data': serializer.errors}) status_code = status.HTTP_400_BAD_REQUEST return Response(data, status=status_code)
def create(self, request, *args, **kwargs): '\n Creates a Stock.\n If successful, response payload with:\n - status code: 201\n - data\n If unsuccessful, a response payload with:\n - status code: 400\n ' code = generate_code() ref_number = ('STK' + str((code * 9))) serializer_context = {'request': request, 'ref_number': ref_number} serializer = self.serializer_class(data=request.data, context=serializer_context) if serializer.is_valid(): serializer.save(ref_number=ref_number) return Response(serializer.data, status=status.HTTP_201_CREATED) data = {'status': 'error'} data.update({'data': serializer.errors}) status_code = status.HTTP_400_BAD_REQUEST return Response(data, status=status_code)<|docstring|>Creates a Stock. If successful, response payload with: - status code: 201 - data If unsuccessful, a response payload with: - status code: 400<|endoftext|>
ff474add9cf7d0b7fa69dd9a3891ccd871b91b68720bdfc89870a192635eb83d
def retrieve(self, request, pk=None): '\n Get a Stock.\n If successful, response payload with:\n - status code: 200\n - data\n \n If unsuccessful, a response payload with:\n - status code: 404\n ' return Response(*check_resource(Stock, StockSerializer, pk, request, 'Stock'))
Get a Stock. If successful, response payload with: - status code: 200 - data If unsuccessful, a response payload with: - status code: 404
apps/stock/views/stocks.py
retrieve
kwanj-k/ctrim_api
1
python
def retrieve(self, request, pk=None): '\n Get a Stock.\n If successful, response payload with:\n - status code: 200\n - data\n \n If unsuccessful, a response payload with:\n - status code: 404\n ' return Response(*check_resource(Stock, StockSerializer, pk, request, 'Stock'))
def retrieve(self, request, pk=None): '\n Get a Stock.\n If successful, response payload with:\n - status code: 200\n - data\n \n If unsuccessful, a response payload with:\n - status code: 404\n ' return Response(*check_resource(Stock, StockSerializer, pk, request, 'Stock'))<|docstring|>Get a Stock. If successful, response payload with: - status code: 200 - data If unsuccessful, a response payload with: - status code: 404<|endoftext|>
f54f4d12f90635851c1de72f74a0397f777c3e2402bbaa53571c8687bcfda332
def destroy(self, request, pk=None): '\n Delete a Stock.\n If unsuccessful, a response payload with:\n - status code: 404\n If successful, a response payload with:\n - status code: 200\n - messsage: stock deleted successful\n ' stock = resource_exists(Stock, pk) if (not stock): response_attr = {'format_str': 'Stock', 'error_key': 'not_found'} data = get_response(**response_attr) return Response(data, status=status.HTTP_404_NOT_FOUND) stock.delete() data = {'status': 'success', 'message': 'stock deleted successfully'} return Response(data, status=status.HTTP_200_OK)
Delete a Stock. If unsuccessful, a response payload with: - status code: 404 If successful, a response payload with: - status code: 200 - messsage: stock deleted successful
apps/stock/views/stocks.py
destroy
kwanj-k/ctrim_api
1
python
def destroy(self, request, pk=None): '\n Delete a Stock.\n If unsuccessful, a response payload with:\n - status code: 404\n If successful, a response payload with:\n - status code: 200\n - messsage: stock deleted successful\n ' stock = resource_exists(Stock, pk) if (not stock): response_attr = {'format_str': 'Stock', 'error_key': 'not_found'} data = get_response(**response_attr) return Response(data, status=status.HTTP_404_NOT_FOUND) stock.delete() data = {'status': 'success', 'message': 'stock deleted successfully'} return Response(data, status=status.HTTP_200_OK)
def destroy(self, request, pk=None): '\n Delete a Stock.\n If unsuccessful, a response payload with:\n - status code: 404\n If successful, a response payload with:\n - status code: 200\n - messsage: stock deleted successful\n ' stock = resource_exists(Stock, pk) if (not stock): response_attr = {'format_str': 'Stock', 'error_key': 'not_found'} data = get_response(**response_attr) return Response(data, status=status.HTTP_404_NOT_FOUND) stock.delete() data = {'status': 'success', 'message': 'stock deleted successfully'} return Response(data, status=status.HTTP_200_OK)<|docstring|>Delete a Stock. If unsuccessful, a response payload with: - status code: 404 If successful, a response payload with: - status code: 200 - messsage: stock deleted successful<|endoftext|>
e947441ba9c5268f09f1486373f0fc708b2c7dc774936ec669a1fa0deb4fe094
def partial_update(self, request, pk=None): '\n Update a stock.\n If successful, response payload with:\n - status code: 200\n - data\n If unsuccessful, a response payload with:\n - status\n - error\n ' stock = resource_exists(Stock, pk) if (not stock): response_attr = {'error_key': 'not_found', 'format_str': 'Stock'} data = get_response(**response_attr) return Response(data, status.HTTP_404_NOT_FOUND) serializer = StockSerializer(stock, context={'request': request}, data=request.data, partial=True) if serializer.is_valid(): data = save_serializer(serializer) return Response(data, status.HTTP_200_OK) data = {'status': 'error', 'error': serializer.errors, 'message': 'Stock failed to edit due to the above error/s'} return Response(data, status.HTTP_400_BAD_REQUEST)
Update a stock. If successful, response payload with: - status code: 200 - data If unsuccessful, a response payload with: - status - error
apps/stock/views/stocks.py
partial_update
kwanj-k/ctrim_api
1
python
def partial_update(self, request, pk=None): '\n Update a stock.\n If successful, response payload with:\n - status code: 200\n - data\n If unsuccessful, a response payload with:\n - status\n - error\n ' stock = resource_exists(Stock, pk) if (not stock): response_attr = {'error_key': 'not_found', 'format_str': 'Stock'} data = get_response(**response_attr) return Response(data, status.HTTP_404_NOT_FOUND) serializer = StockSerializer(stock, context={'request': request}, data=request.data, partial=True) if serializer.is_valid(): data = save_serializer(serializer) return Response(data, status.HTTP_200_OK) data = {'status': 'error', 'error': serializer.errors, 'message': 'Stock failed to edit due to the above error/s'} return Response(data, status.HTTP_400_BAD_REQUEST)
def partial_update(self, request, pk=None): '\n Update a stock.\n If successful, response payload with:\n - status code: 200\n - data\n If unsuccessful, a response payload with:\n - status\n - error\n ' stock = resource_exists(Stock, pk) if (not stock): response_attr = {'error_key': 'not_found', 'format_str': 'Stock'} data = get_response(**response_attr) return Response(data, status.HTTP_404_NOT_FOUND) serializer = StockSerializer(stock, context={'request': request}, data=request.data, partial=True) if serializer.is_valid(): data = save_serializer(serializer) return Response(data, status.HTTP_200_OK) data = {'status': 'error', 'error': serializer.errors, 'message': 'Stock failed to edit due to the above error/s'} return Response(data, status.HTTP_400_BAD_REQUEST)<|docstring|>Update a stock. If successful, response payload with: - status code: 200 - data If unsuccessful, a response payload with: - status - error<|endoftext|>
7987421446761d309495cb109aca776cad45c89a8640b6c0464ded45a6fa8b52
def list(self, request): '\n Get all Stocks.\n Returns\n -------\n If successful:\n A response payload with:\n - status code: 200\n - data\n If unsuccessful:\n A response payload with:\n - status code: 404\n ' stocks = Stock.objects.all() serializer = StockSerializer(stocks, many=True) return Response(serializer.data, status.HTTP_200_OK)
Get all Stocks. Returns ------- If successful: A response payload with: - status code: 200 - data If unsuccessful: A response payload with: - status code: 404
apps/stock/views/stocks.py
list
kwanj-k/ctrim_api
1
python
def list(self, request): '\n Get all Stocks.\n Returns\n -------\n If successful:\n A response payload with:\n - status code: 200\n - data\n If unsuccessful:\n A response payload with:\n - status code: 404\n ' stocks = Stock.objects.all() serializer = StockSerializer(stocks, many=True) return Response(serializer.data, status.HTTP_200_OK)
def list(self, request): '\n Get all Stocks.\n Returns\n -------\n If successful:\n A response payload with:\n - status code: 200\n - data\n If unsuccessful:\n A response payload with:\n - status code: 404\n ' stocks = Stock.objects.all() serializer = StockSerializer(stocks, many=True) return Response(serializer.data, status.HTTP_200_OK)<|docstring|>Get all Stocks. Returns ------- If successful: A response payload with: - status code: 200 - data If unsuccessful: A response payload with: - status code: 404<|endoftext|>
30873f84e8c8fd31b0f5e898b6256a4fd2c711b9b80a4b4ab3aab41d1750c040
def extract_segment(path, sector_list, sector_variable, sector_name): 'Takes official data from a path and returns a segment of interest.\n We will use it to produce indicators about cultural activities in different NUTS2 regions.\n\n Arguments:\n path (str): path to csv\n sector_list (list of strs): is the list of codes we are interested in - could be segments or sectors\n sector_variable (str): is the variable that we use to identify sectors. It could be\n the sic code or the Nesta segment.\n sector_name (str): name of sector e.g high tech\n\n ' all_sectors = pd.read_csv(path, dtype={'SIC4': str}) sector = all_sectors.loc[[(x in sector_list) for x in all_sectors[sector_variable]]].reset_index(drop=True) sector_agg = sector.groupby(['geo_nm', 'geo_cd', 'year'])['value'].sum() sector_agg.name = sector_name return pd.DataFrame(sector_agg)
Takes official data from a path and returns a segment of interest. We will use it to produce indicators about cultural activities in different NUTS2 regions. Arguments: path (str): path to csv sector_list (list of strs): is the list of codes we are interested in - could be segments or sectors sector_variable (str): is the variable that we use to identify sectors. It could be the sic code or the Nesta segment. sector_name (str): name of sector e.g high tech
ds/beis_indicators/industry/make_industry_indicators_bres.py
extract_segment
nestauk/beis-indicators
4
python
def extract_segment(path, sector_list, sector_variable, sector_name): 'Takes official data from a path and returns a segment of interest.\n We will use it to produce indicators about cultural activities in different NUTS2 regions.\n\n Arguments:\n path (str): path to csv\n sector_list (list of strs): is the list of codes we are interested in - could be segments or sectors\n sector_variable (str): is the variable that we use to identify sectors. It could be\n the sic code or the Nesta segment.\n sector_name (str): name of sector e.g high tech\n\n ' all_sectors = pd.read_csv(path, dtype={'SIC4': str}) sector = all_sectors.loc[[(x in sector_list) for x in all_sectors[sector_variable]]].reset_index(drop=True) sector_agg = sector.groupby(['geo_nm', 'geo_cd', 'year'])['value'].sum() sector_agg.name = sector_name return pd.DataFrame(sector_agg)
def extract_segment(path, sector_list, sector_variable, sector_name): 'Takes official data from a path and returns a segment of interest.\n We will use it to produce indicators about cultural activities in different NUTS2 regions.\n\n Arguments:\n path (str): path to csv\n sector_list (list of strs): is the list of codes we are interested in - could be segments or sectors\n sector_variable (str): is the variable that we use to identify sectors. It could be\n the sic code or the Nesta segment.\n sector_name (str): name of sector e.g high tech\n\n ' all_sectors = pd.read_csv(path, dtype={'SIC4': str}) sector = all_sectors.loc[[(x in sector_list) for x in all_sectors[sector_variable]]].reset_index(drop=True) sector_agg = sector.groupby(['geo_nm', 'geo_cd', 'year'])['value'].sum() sector_agg.name = sector_name return pd.DataFrame(sector_agg)<|docstring|>Takes official data from a path and returns a segment of interest. We will use it to produce indicators about cultural activities in different NUTS2 regions. Arguments: path (str): path to csv sector_list (list of strs): is the list of codes we are interested in - could be segments or sectors sector_variable (str): is the variable that we use to identify sectors. It could be the sic code or the Nesta segment. sector_name (str): name of sector e.g high tech<|endoftext|>
2c83310a541a125832187f47b492c4a9cb3df95bad4ea081b5bb77751efa3970
def sector_location_quotient(path, sector_list, sector_variable, sector_name): "Calculates location quotient for sector of interest.\n The sector location quotient measures the regional concentration\n of employment for the sector of interest compared to nationally.\n\n Args:\n path (str): path to csv\n sector_list (list of strs): 'SIC4' codes or 'cluster_name's that define the sector\n sector_variable (str): the variable used to define sector, 'cluster_name' or 'SIC4'\n sector_name (str): name of sector e.g high tech\n " all_sectors = pd.read_csv(path, dtype={'SIC4': str}, index_col=0).groupby(['geo_nm', 'geo_cd', 'year'])['value'].sum().reset_index().rename(columns={'value': 'all_sectors'}) sector = extract_segment(path, sector_list, sector_variable, sector_name) merged = pd.merge(sector, all_sectors, on=['geo_nm', 'geo_cd', 'year']) merged['lq_num'] = (merged[sector_name] / merged['all_sectors']) merged['lq_denom'] = (merged[sector_name].sum() / merged['all_sectors'].sum()) merged[f'location_quotient_{sector_name}'] = (merged['lq_num'] / merged['lq_denom']) return merged.drop(columns=[sector_name, 'all_sectors', 'lq_num', 'lq_denom'], inplace=False)
Calculates location quotient for sector of interest. The sector location quotient measures the regional concentration of employment for the sector of interest compared to nationally. Args: path (str): path to csv sector_list (list of strs): 'SIC4' codes or 'cluster_name's that define the sector sector_variable (str): the variable used to define sector, 'cluster_name' or 'SIC4' sector_name (str): name of sector e.g high tech
ds/beis_indicators/industry/make_industry_indicators_bres.py
sector_location_quotient
nestauk/beis-indicators
4
python
def sector_location_quotient(path, sector_list, sector_variable, sector_name): "Calculates location quotient for sector of interest.\n The sector location quotient measures the regional concentration\n of employment for the sector of interest compared to nationally.\n\n Args:\n path (str): path to csv\n sector_list (list of strs): 'SIC4' codes or 'cluster_name's that define the sector\n sector_variable (str): the variable used to define sector, 'cluster_name' or 'SIC4'\n sector_name (str): name of sector e.g high tech\n " all_sectors = pd.read_csv(path, dtype={'SIC4': str}, index_col=0).groupby(['geo_nm', 'geo_cd', 'year'])['value'].sum().reset_index().rename(columns={'value': 'all_sectors'}) sector = extract_segment(path, sector_list, sector_variable, sector_name) merged = pd.merge(sector, all_sectors, on=['geo_nm', 'geo_cd', 'year']) merged['lq_num'] = (merged[sector_name] / merged['all_sectors']) merged['lq_denom'] = (merged[sector_name].sum() / merged['all_sectors'].sum()) merged[f'location_quotient_{sector_name}'] = (merged['lq_num'] / merged['lq_denom']) return merged.drop(columns=[sector_name, 'all_sectors', 'lq_num', 'lq_denom'], inplace=False)
def sector_location_quotient(path, sector_list, sector_variable, sector_name): "Calculates location quotient for sector of interest.\n The sector location quotient measures the regional concentration\n of employment for the sector of interest compared to nationally.\n\n Args:\n path (str): path to csv\n sector_list (list of strs): 'SIC4' codes or 'cluster_name's that define the sector\n sector_variable (str): the variable used to define sector, 'cluster_name' or 'SIC4'\n sector_name (str): name of sector e.g high tech\n " all_sectors = pd.read_csv(path, dtype={'SIC4': str}, index_col=0).groupby(['geo_nm', 'geo_cd', 'year'])['value'].sum().reset_index().rename(columns={'value': 'all_sectors'}) sector = extract_segment(path, sector_list, sector_variable, sector_name) merged = pd.merge(sector, all_sectors, on=['geo_nm', 'geo_cd', 'year']) merged['lq_num'] = (merged[sector_name] / merged['all_sectors']) merged['lq_denom'] = (merged[sector_name].sum() / merged['all_sectors'].sum()) merged[f'location_quotient_{sector_name}'] = (merged['lq_num'] / merged['lq_denom']) return merged.drop(columns=[sector_name, 'all_sectors', 'lq_num', 'lq_denom'], inplace=False)<|docstring|>Calculates location quotient for sector of interest. The sector location quotient measures the regional concentration of employment for the sector of interest compared to nationally. Args: path (str): path to csv sector_list (list of strs): 'SIC4' codes or 'cluster_name's that define the sector sector_variable (str): the variable used to define sector, 'cluster_name' or 'SIC4' sector_name (str): name of sector e.g high tech<|endoftext|>
3d226e13c343b64efdcb5cf528b41c8d75e591ddcc2a2f6374e4d200689559ed
def _read_bres_file(y): 'Reads the bres file for one year' return f'{INTERIM_PATH}/nomis_BRES_{y}_TYPE450.csv'
Reads the bres file for one year
ds/beis_indicators/industry/make_industry_indicators_bres.py
_read_bres_file
nestauk/beis-indicators
4
python
def _read_bres_file(y): return f'{INTERIM_PATH}/nomis_BRES_{y}_TYPE450.csv'
def _read_bres_file(y): return f'{INTERIM_PATH}/nomis_BRES_{y}_TYPE450.csv'<|docstring|>Reads the bres file for one year<|endoftext|>
31ef39534f8f30f727698a0aef702b7b36c246f887d713d72e49ecae5106b6d2
def setUp(self): 'Set up fault domain test.' self.start_agents_once = False self.start_servers_once = False self.setup_start_agents = False self.setup_start_servers = False super().setUp()
Set up fault domain test.
src/tests/ftest/fault_domain/fault_domain.py
setUp
daos-stack/daos
429
python
def setUp(self): self.start_agents_once = False self.start_servers_once = False self.setup_start_agents = False self.setup_start_servers = False super().setUp()
def setUp(self): self.start_agents_once = False self.start_servers_once = False self.setup_start_agents = False self.setup_start_servers = False super().setUp()<|docstring|>Set up fault domain test.<|endoftext|>
3cfd5d83afd875629ce54af9ada1f5827f88f98cc3965bc0f6b28c311c048a76
def test_pools_in_different_domains(self): 'This aims to:\n Be able to configure daos servers using different fault domains.\n Created pools must be in different fault domains.\n\n Not coded, should be available when DAOS-7919 is resolved.\n If a pool has the same fault domains, a debug message\n should be expected.\n\n :avocado: tags=all,full_regression\n :avocado: tags=vm\n :avocado: tags=fault_domain,fault_domain_different_domains\n ' test_passed = True rank = None error_messages = list() fault_paths = self.params.get('fault_path', '/run/*') number_pools = self.params.get('number_pools', '/run/*') for (counter, server) in enumerate(self.hostlist_servers): self.add_server_manager() self.configure_manager('daos_server', self.server_managers[counter], [server], self.hostfile_servers_slots) self.server_managers[counter].set_config_value('fault_path', fault_paths[counter]) for server in self.server_managers: server.start() self.start_agents() self.pool = [] for index in range(number_pools): namespace = '/run/pool_{}/*'.format(index) self.log.info(namespace) self.pool.append(self.get_pool(namespace=namespace, connect=False)) for pool in self.pool: pool_fault_path = [] for rank in pool.svc_ranks: rank = int(rank) fault_path = fault_paths[rank] pool_fault_path.append(fault_path) if (len(pool_fault_path) != len(set(pool_fault_path))): test_passed = False if (rank is None): rank = len(pool.svc_ranks) error_message = f'The pool {pool} with ranks {rank} has thefollowing fault paths: {pool_fault_path}, and must be unique.' error_messages.append(error_message) self.log.error(error_message) self.assertTrue(test_passed, error_messages)
This aims to: Be able to configure daos servers using different fault domains. Created pools must be in different fault domains. Not coded, should be available when DAOS-7919 is resolved. If a pool has the same fault domains, a debug message should be expected. :avocado: tags=all,full_regression :avocado: tags=vm :avocado: tags=fault_domain,fault_domain_different_domains
src/tests/ftest/fault_domain/fault_domain.py
test_pools_in_different_domains
daos-stack/daos
429
python
def test_pools_in_different_domains(self): 'This aims to:\n Be able to configure daos servers using different fault domains.\n Created pools must be in different fault domains.\n\n Not coded, should be available when DAOS-7919 is resolved.\n If a pool has the same fault domains, a debug message\n should be expected.\n\n :avocado: tags=all,full_regression\n :avocado: tags=vm\n :avocado: tags=fault_domain,fault_domain_different_domains\n ' test_passed = True rank = None error_messages = list() fault_paths = self.params.get('fault_path', '/run/*') number_pools = self.params.get('number_pools', '/run/*') for (counter, server) in enumerate(self.hostlist_servers): self.add_server_manager() self.configure_manager('daos_server', self.server_managers[counter], [server], self.hostfile_servers_slots) self.server_managers[counter].set_config_value('fault_path', fault_paths[counter]) for server in self.server_managers: server.start() self.start_agents() self.pool = [] for index in range(number_pools): namespace = '/run/pool_{}/*'.format(index) self.log.info(namespace) self.pool.append(self.get_pool(namespace=namespace, connect=False)) for pool in self.pool: pool_fault_path = [] for rank in pool.svc_ranks: rank = int(rank) fault_path = fault_paths[rank] pool_fault_path.append(fault_path) if (len(pool_fault_path) != len(set(pool_fault_path))): test_passed = False if (rank is None): rank = len(pool.svc_ranks) error_message = f'The pool {pool} with ranks {rank} has thefollowing fault paths: {pool_fault_path}, and must be unique.' error_messages.append(error_message) self.log.error(error_message) self.assertTrue(test_passed, error_messages)
def test_pools_in_different_domains(self): 'This aims to:\n Be able to configure daos servers using different fault domains.\n Created pools must be in different fault domains.\n\n Not coded, should be available when DAOS-7919 is resolved.\n If a pool has the same fault domains, a debug message\n should be expected.\n\n :avocado: tags=all,full_regression\n :avocado: tags=vm\n :avocado: tags=fault_domain,fault_domain_different_domains\n ' test_passed = True rank = None error_messages = list() fault_paths = self.params.get('fault_path', '/run/*') number_pools = self.params.get('number_pools', '/run/*') for (counter, server) in enumerate(self.hostlist_servers): self.add_server_manager() self.configure_manager('daos_server', self.server_managers[counter], [server], self.hostfile_servers_slots) self.server_managers[counter].set_config_value('fault_path', fault_paths[counter]) for server in self.server_managers: server.start() self.start_agents() self.pool = [] for index in range(number_pools): namespace = '/run/pool_{}/*'.format(index) self.log.info(namespace) self.pool.append(self.get_pool(namespace=namespace, connect=False)) for pool in self.pool: pool_fault_path = [] for rank in pool.svc_ranks: rank = int(rank) fault_path = fault_paths[rank] pool_fault_path.append(fault_path) if (len(pool_fault_path) != len(set(pool_fault_path))): test_passed = False if (rank is None): rank = len(pool.svc_ranks) error_message = f'The pool {pool} with ranks {rank} has thefollowing fault paths: {pool_fault_path}, and must be unique.' error_messages.append(error_message) self.log.error(error_message) self.assertTrue(test_passed, error_messages)<|docstring|>This aims to: Be able to configure daos servers using different fault domains. Created pools must be in different fault domains. Not coded, should be available when DAOS-7919 is resolved. If a pool has the same fault domains, a debug message should be expected. :avocado: tags=all,full_regression :avocado: tags=vm :avocado: tags=fault_domain,fault_domain_different_domains<|endoftext|>
e556955f72aa5ca46a51f0ad3bc6bf57f2248d70f0b9cc87fcb143eefbd6506c
def __init__(self, url='', credentials=None, get_credentials=True, http=None, model=None, log_request=False, log_response=False, credentials_args=None, default_global_params=None, additional_http_headers=None): 'Create a new compute handle.' url = (url or self.BASE_URL) super(ComputeAlpha, self).__init__(url, credentials=credentials, get_credentials=get_credentials, http=http, model=model, log_request=log_request, log_response=log_response, credentials_args=credentials_args, default_global_params=default_global_params, additional_http_headers=additional_http_headers) self.acceleratorTypes = self.AcceleratorTypesService(self) self.addresses = self.AddressesService(self) self.autoscalers = self.AutoscalersService(self) self.backendBuckets = self.BackendBucketsService(self) self.backendServices = self.BackendServicesService(self) self.clientSslPolicies = self.ClientSslPoliciesService(self) self.commitments = self.CommitmentsService(self) self.diskTypes = self.DiskTypesService(self) self.disks = self.DisksService(self) self.firewalls = self.FirewallsService(self) self.forwardingRules = self.ForwardingRulesService(self) self.globalAddresses = self.GlobalAddressesService(self) self.globalForwardingRules = self.GlobalForwardingRulesService(self) self.globalOperations = self.GlobalOperationsService(self) self.healthChecks = self.HealthChecksService(self) self.hostTypes = self.HostTypesService(self) self.hosts = self.HostsService(self) self.httpHealthChecks = self.HttpHealthChecksService(self) self.httpsHealthChecks = self.HttpsHealthChecksService(self) self.images = self.ImagesService(self) self.instanceGroupManagers = self.InstanceGroupManagersService(self) self.instanceGroups = self.InstanceGroupsService(self) self.instanceTemplates = self.InstanceTemplatesService(self) self.instances = self.InstancesService(self) self.licenses = self.LicensesService(self) self.machineTypes = self.MachineTypesService(self) self.networks = self.NetworksService(self) self.projects = self.ProjectsService(self) self.regionAutoscalers = self.RegionAutoscalersService(self) self.regionBackendServices = self.RegionBackendServicesService(self) self.regionDiskTypes = self.RegionDiskTypesService(self) self.regionDisks = self.RegionDisksService(self) self.regionInstanceGroupManagers = self.RegionInstanceGroupManagersService(self) self.regionInstanceGroups = self.RegionInstanceGroupsService(self) self.regionOperations = self.RegionOperationsService(self) self.regions = self.RegionsService(self) self.routers = self.RoutersService(self) self.routes = self.RoutesService(self) self.snapshots = self.SnapshotsService(self) self.sslCertificates = self.SslCertificatesService(self) self.subnetworks = self.SubnetworksService(self) self.targetHttpProxies = self.TargetHttpProxiesService(self) self.targetHttpsProxies = self.TargetHttpsProxiesService(self) self.targetInstances = self.TargetInstancesService(self) self.targetPools = self.TargetPoolsService(self) self.targetSslProxies = self.TargetSslProxiesService(self) self.targetTcpProxies = self.TargetTcpProxiesService(self) self.targetVpnGateways = self.TargetVpnGatewaysService(self) self.urlMaps = self.UrlMapsService(self) self.vpnTunnels = self.VpnTunnelsService(self) self.zoneOperations = self.ZoneOperationsService(self) self.zones = self.ZonesService(self)
Create a new compute handle.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
__init__
KaranToor/MA450
1
python
def __init__(self, url=, credentials=None, get_credentials=True, http=None, model=None, log_request=False, log_response=False, credentials_args=None, default_global_params=None, additional_http_headers=None): url = (url or self.BASE_URL) super(ComputeAlpha, self).__init__(url, credentials=credentials, get_credentials=get_credentials, http=http, model=model, log_request=log_request, log_response=log_response, credentials_args=credentials_args, default_global_params=default_global_params, additional_http_headers=additional_http_headers) self.acceleratorTypes = self.AcceleratorTypesService(self) self.addresses = self.AddressesService(self) self.autoscalers = self.AutoscalersService(self) self.backendBuckets = self.BackendBucketsService(self) self.backendServices = self.BackendServicesService(self) self.clientSslPolicies = self.ClientSslPoliciesService(self) self.commitments = self.CommitmentsService(self) self.diskTypes = self.DiskTypesService(self) self.disks = self.DisksService(self) self.firewalls = self.FirewallsService(self) self.forwardingRules = self.ForwardingRulesService(self) self.globalAddresses = self.GlobalAddressesService(self) self.globalForwardingRules = self.GlobalForwardingRulesService(self) self.globalOperations = self.GlobalOperationsService(self) self.healthChecks = self.HealthChecksService(self) self.hostTypes = self.HostTypesService(self) self.hosts = self.HostsService(self) self.httpHealthChecks = self.HttpHealthChecksService(self) self.httpsHealthChecks = self.HttpsHealthChecksService(self) self.images = self.ImagesService(self) self.instanceGroupManagers = self.InstanceGroupManagersService(self) self.instanceGroups = self.InstanceGroupsService(self) self.instanceTemplates = self.InstanceTemplatesService(self) self.instances = self.InstancesService(self) self.licenses = self.LicensesService(self) self.machineTypes = self.MachineTypesService(self) self.networks = self.NetworksService(self) self.projects = self.ProjectsService(self) self.regionAutoscalers = self.RegionAutoscalersService(self) self.regionBackendServices = self.RegionBackendServicesService(self) self.regionDiskTypes = self.RegionDiskTypesService(self) self.regionDisks = self.RegionDisksService(self) self.regionInstanceGroupManagers = self.RegionInstanceGroupManagersService(self) self.regionInstanceGroups = self.RegionInstanceGroupsService(self) self.regionOperations = self.RegionOperationsService(self) self.regions = self.RegionsService(self) self.routers = self.RoutersService(self) self.routes = self.RoutesService(self) self.snapshots = self.SnapshotsService(self) self.sslCertificates = self.SslCertificatesService(self) self.subnetworks = self.SubnetworksService(self) self.targetHttpProxies = self.TargetHttpProxiesService(self) self.targetHttpsProxies = self.TargetHttpsProxiesService(self) self.targetInstances = self.TargetInstancesService(self) self.targetPools = self.TargetPoolsService(self) self.targetSslProxies = self.TargetSslProxiesService(self) self.targetTcpProxies = self.TargetTcpProxiesService(self) self.targetVpnGateways = self.TargetVpnGatewaysService(self) self.urlMaps = self.UrlMapsService(self) self.vpnTunnels = self.VpnTunnelsService(self) self.zoneOperations = self.ZoneOperationsService(self) self.zones = self.ZonesService(self)
def __init__(self, url=, credentials=None, get_credentials=True, http=None, model=None, log_request=False, log_response=False, credentials_args=None, default_global_params=None, additional_http_headers=None): url = (url or self.BASE_URL) super(ComputeAlpha, self).__init__(url, credentials=credentials, get_credentials=get_credentials, http=http, model=model, log_request=log_request, log_response=log_response, credentials_args=credentials_args, default_global_params=default_global_params, additional_http_headers=additional_http_headers) self.acceleratorTypes = self.AcceleratorTypesService(self) self.addresses = self.AddressesService(self) self.autoscalers = self.AutoscalersService(self) self.backendBuckets = self.BackendBucketsService(self) self.backendServices = self.BackendServicesService(self) self.clientSslPolicies = self.ClientSslPoliciesService(self) self.commitments = self.CommitmentsService(self) self.diskTypes = self.DiskTypesService(self) self.disks = self.DisksService(self) self.firewalls = self.FirewallsService(self) self.forwardingRules = self.ForwardingRulesService(self) self.globalAddresses = self.GlobalAddressesService(self) self.globalForwardingRules = self.GlobalForwardingRulesService(self) self.globalOperations = self.GlobalOperationsService(self) self.healthChecks = self.HealthChecksService(self) self.hostTypes = self.HostTypesService(self) self.hosts = self.HostsService(self) self.httpHealthChecks = self.HttpHealthChecksService(self) self.httpsHealthChecks = self.HttpsHealthChecksService(self) self.images = self.ImagesService(self) self.instanceGroupManagers = self.InstanceGroupManagersService(self) self.instanceGroups = self.InstanceGroupsService(self) self.instanceTemplates = self.InstanceTemplatesService(self) self.instances = self.InstancesService(self) self.licenses = self.LicensesService(self) self.machineTypes = self.MachineTypesService(self) self.networks = self.NetworksService(self) self.projects = self.ProjectsService(self) self.regionAutoscalers = self.RegionAutoscalersService(self) self.regionBackendServices = self.RegionBackendServicesService(self) self.regionDiskTypes = self.RegionDiskTypesService(self) self.regionDisks = self.RegionDisksService(self) self.regionInstanceGroupManagers = self.RegionInstanceGroupManagersService(self) self.regionInstanceGroups = self.RegionInstanceGroupsService(self) self.regionOperations = self.RegionOperationsService(self) self.regions = self.RegionsService(self) self.routers = self.RoutersService(self) self.routes = self.RoutesService(self) self.snapshots = self.SnapshotsService(self) self.sslCertificates = self.SslCertificatesService(self) self.subnetworks = self.SubnetworksService(self) self.targetHttpProxies = self.TargetHttpProxiesService(self) self.targetHttpsProxies = self.TargetHttpsProxiesService(self) self.targetInstances = self.TargetInstancesService(self) self.targetPools = self.TargetPoolsService(self) self.targetSslProxies = self.TargetSslProxiesService(self) self.targetTcpProxies = self.TargetTcpProxiesService(self) self.targetVpnGateways = self.TargetVpnGatewaysService(self) self.urlMaps = self.UrlMapsService(self) self.vpnTunnels = self.VpnTunnelsService(self) self.zoneOperations = self.ZoneOperationsService(self) self.zones = self.ZonesService(self)<|docstring|>Create a new compute handle.<|endoftext|>
2dfe5c4dc243940238d18c1a1bf5090f1e1fc63a0057bffab55e4c9006fdafb9
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of accelerator types.\n\n Args:\n request: (ComputeAcceleratorTypesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AcceleratorTypeAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
Retrieves an aggregated list of accelerator types. Args: request: (ComputeAcceleratorTypesAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AcceleratorTypeAggregatedList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
AggregatedList
KaranToor/MA450
1
python
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of accelerator types.\n\n Args:\n request: (ComputeAcceleratorTypesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AcceleratorTypeAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of accelerator types.\n\n Args:\n request: (ComputeAcceleratorTypesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AcceleratorTypeAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves an aggregated list of accelerator types. Args: request: (ComputeAcceleratorTypesAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AcceleratorTypeAggregatedList) The response message.<|endoftext|>
f900cdd8ad5720efdb6b1a90b3549c970b594f25bb3e481da378f542f8ba984d
def Get(self, request, global_params=None): 'Returns the specified accelerator type. Get a list of available accelerator types by making a list() request.\n\n Args:\n request: (ComputeAcceleratorTypesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AcceleratorType) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
Returns the specified accelerator type. Get a list of available accelerator types by making a list() request. Args: request: (ComputeAcceleratorTypesGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AcceleratorType) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Get
KaranToor/MA450
1
python
def Get(self, request, global_params=None): 'Returns the specified accelerator type. Get a list of available accelerator types by making a list() request.\n\n Args:\n request: (ComputeAcceleratorTypesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AcceleratorType) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
def Get(self, request, global_params=None): 'Returns the specified accelerator type. Get a list of available accelerator types by making a list() request.\n\n Args:\n request: (ComputeAcceleratorTypesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AcceleratorType) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns the specified accelerator type. Get a list of available accelerator types by making a list() request. Args: request: (ComputeAcceleratorTypesGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AcceleratorType) The response message.<|endoftext|>
e713b33a86583ae6ecc97f111a15e63e83f660098d0e4c62e57b60aec511e3f1
def List(self, request, global_params=None): 'Retrieves a list of accelerator types available to the specified project.\n\n Args:\n request: (ComputeAcceleratorTypesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AcceleratorTypeList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
Retrieves a list of accelerator types available to the specified project. Args: request: (ComputeAcceleratorTypesListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AcceleratorTypeList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
List
KaranToor/MA450
1
python
def List(self, request, global_params=None): 'Retrieves a list of accelerator types available to the specified project.\n\n Args:\n request: (ComputeAcceleratorTypesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AcceleratorTypeList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
def List(self, request, global_params=None): 'Retrieves a list of accelerator types available to the specified project.\n\n Args:\n request: (ComputeAcceleratorTypesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AcceleratorTypeList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves a list of accelerator types available to the specified project. Args: request: (ComputeAcceleratorTypesListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AcceleratorTypeList) The response message.<|endoftext|>
9e294b9a57ce5a3d765e132182091a902fef2cd4c62c3b796e14a14257f57040
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of addresses.\n\n Args:\n request: (ComputeAddressesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AddressAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
Retrieves an aggregated list of addresses. Args: request: (ComputeAddressesAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AddressAggregatedList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
AggregatedList
KaranToor/MA450
1
python
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of addresses.\n\n Args:\n request: (ComputeAddressesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AddressAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of addresses.\n\n Args:\n request: (ComputeAddressesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AddressAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves an aggregated list of addresses. Args: request: (ComputeAddressesAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AddressAggregatedList) The response message.<|endoftext|>
b22adda1ceef3b226801d6da39c46f7e1c5aa026aff65c2d0b2c2920572735de
def Delete(self, request, global_params=None): 'Deletes the specified address resource.\n\n Args:\n request: (ComputeAddressesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
Deletes the specified address resource. Args: request: (ComputeAddressesDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Delete
KaranToor/MA450
1
python
def Delete(self, request, global_params=None): 'Deletes the specified address resource.\n\n Args:\n request: (ComputeAddressesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
def Delete(self, request, global_params=None): 'Deletes the specified address resource.\n\n Args:\n request: (ComputeAddressesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Deletes the specified address resource. Args: request: (ComputeAddressesDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
4c30914c686331600f2a3087a3e453225635c187f398291c58d6bef7d14475ec
def Get(self, request, global_params=None): 'Returns the specified address resource.\n\n Args:\n request: (ComputeAddressesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Address) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
Returns the specified address resource. Args: request: (ComputeAddressesGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Address) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Get
KaranToor/MA450
1
python
def Get(self, request, global_params=None): 'Returns the specified address resource.\n\n Args:\n request: (ComputeAddressesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Address) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
def Get(self, request, global_params=None): 'Returns the specified address resource.\n\n Args:\n request: (ComputeAddressesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Address) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns the specified address resource. Args: request: (ComputeAddressesGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Address) The response message.<|endoftext|>
a3537525d5b6b85253fde6df07b04389af0c02adb696742ca9daa729d7a8a730
def Insert(self, request, global_params=None): 'Creates an address resource in the specified project using the data included in the request.\n\n Args:\n request: (ComputeAddressesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
Creates an address resource in the specified project using the data included in the request. Args: request: (ComputeAddressesInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Insert
KaranToor/MA450
1
python
def Insert(self, request, global_params=None): 'Creates an address resource in the specified project using the data included in the request.\n\n Args:\n request: (ComputeAddressesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
def Insert(self, request, global_params=None): 'Creates an address resource in the specified project using the data included in the request.\n\n Args:\n request: (ComputeAddressesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Creates an address resource in the specified project using the data included in the request. Args: request: (ComputeAddressesInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
517ec47a2dbbdcc1787ed2b3833a1e57dd06236340f914b84f731da0f6ee3e88
def List(self, request, global_params=None): 'Retrieves a list of addresses contained within the specified region.\n\n Args:\n request: (ComputeAddressesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AddressList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
Retrieves a list of addresses contained within the specified region. Args: request: (ComputeAddressesListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AddressList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
List
KaranToor/MA450
1
python
def List(self, request, global_params=None): 'Retrieves a list of addresses contained within the specified region.\n\n Args:\n request: (ComputeAddressesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AddressList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
def List(self, request, global_params=None): 'Retrieves a list of addresses contained within the specified region.\n\n Args:\n request: (ComputeAddressesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AddressList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves a list of addresses contained within the specified region. Args: request: (ComputeAddressesListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AddressList) The response message.<|endoftext|>
a44f1161a2a7dd16f918c925679145bb74f2663868890c3327d739ab4e428a4c
def SetLabels(self, request, global_params=None): 'Sets the labels on an Address. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeAddressesSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)
Sets the labels on an Address. To learn more about labels, read the Labeling or Tagging Resources documentation. Args: request: (ComputeAddressesSetLabelsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
SetLabels
KaranToor/MA450
1
python
def SetLabels(self, request, global_params=None): 'Sets the labels on an Address. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeAddressesSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)
def SetLabels(self, request, global_params=None): 'Sets the labels on an Address. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeAddressesSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Sets the labels on an Address. To learn more about labels, read the Labeling or Tagging Resources documentation. Args: request: (ComputeAddressesSetLabelsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
50aa6d50239a7728eea04a66cbc95490ae9938daf25855386ca230d260ec12ff
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeAddressesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
Returns permissions that a caller has on the specified resource. Args: request: (ComputeAddressesTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
TestIamPermissions
KaranToor/MA450
1
python
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeAddressesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeAddressesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns permissions that a caller has on the specified resource. Args: request: (ComputeAddressesTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.<|endoftext|>
792dfb155d6b6f8c8e465c69e7a5b91789a98fa8bbff9fe35d2091feb4b43266
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of autoscalers.\n\n Args:\n request: (ComputeAutoscalersAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AutoscalerAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
Retrieves an aggregated list of autoscalers. Args: request: (ComputeAutoscalersAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AutoscalerAggregatedList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
AggregatedList
KaranToor/MA450
1
python
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of autoscalers.\n\n Args:\n request: (ComputeAutoscalersAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AutoscalerAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of autoscalers.\n\n Args:\n request: (ComputeAutoscalersAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AutoscalerAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves an aggregated list of autoscalers. Args: request: (ComputeAutoscalersAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AutoscalerAggregatedList) The response message.<|endoftext|>
9c786b75e36734fc67a3426c657804feaba60f3ddf71a1e750d799e1c22e15e7
def Delete(self, request, global_params=None): 'Deletes the specified autoscaler.\n\n Args:\n request: (ComputeAutoscalersDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
Deletes the specified autoscaler. Args: request: (ComputeAutoscalersDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Delete
KaranToor/MA450
1
python
def Delete(self, request, global_params=None): 'Deletes the specified autoscaler.\n\n Args:\n request: (ComputeAutoscalersDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
def Delete(self, request, global_params=None): 'Deletes the specified autoscaler.\n\n Args:\n request: (ComputeAutoscalersDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Deletes the specified autoscaler. Args: request: (ComputeAutoscalersDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
149398121109f3c0ddb5038a208ce86335f20b1a0788817463c2887ba2326869
def Get(self, request, global_params=None): 'Returns the specified autoscaler resource. Get a list of available autoscalers by making a list() request.\n\n Args:\n request: (ComputeAutoscalersGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Autoscaler) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
Returns the specified autoscaler resource. Get a list of available autoscalers by making a list() request. Args: request: (ComputeAutoscalersGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Autoscaler) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Get
KaranToor/MA450
1
python
def Get(self, request, global_params=None): 'Returns the specified autoscaler resource. Get a list of available autoscalers by making a list() request.\n\n Args:\n request: (ComputeAutoscalersGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Autoscaler) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
def Get(self, request, global_params=None): 'Returns the specified autoscaler resource. Get a list of available autoscalers by making a list() request.\n\n Args:\n request: (ComputeAutoscalersGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Autoscaler) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns the specified autoscaler resource. Get a list of available autoscalers by making a list() request. Args: request: (ComputeAutoscalersGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Autoscaler) The response message.<|endoftext|>
93260f2ad5e1cfb5d5c451c8552a4a7ff90d2e9d55fb32223ec685d1445d9dc6
def Insert(self, request, global_params=None): 'Creates an autoscaler in the specified project using the data included in the request.\n\n Args:\n request: (ComputeAutoscalersInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
Creates an autoscaler in the specified project using the data included in the request. Args: request: (ComputeAutoscalersInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Insert
KaranToor/MA450
1
python
def Insert(self, request, global_params=None): 'Creates an autoscaler in the specified project using the data included in the request.\n\n Args:\n request: (ComputeAutoscalersInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
def Insert(self, request, global_params=None): 'Creates an autoscaler in the specified project using the data included in the request.\n\n Args:\n request: (ComputeAutoscalersInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Creates an autoscaler in the specified project using the data included in the request. Args: request: (ComputeAutoscalersInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
b71c54666bac67ffa602206457c03c98eabef9f1aaa9f39ce5f1199ef161bfcf
def List(self, request, global_params=None): 'Retrieves a list of autoscalers contained within the specified zone.\n\n Args:\n request: (ComputeAutoscalersListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AutoscalerList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
Retrieves a list of autoscalers contained within the specified zone. Args: request: (ComputeAutoscalersListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AutoscalerList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
List
KaranToor/MA450
1
python
def List(self, request, global_params=None): 'Retrieves a list of autoscalers contained within the specified zone.\n\n Args:\n request: (ComputeAutoscalersListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AutoscalerList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
def List(self, request, global_params=None): 'Retrieves a list of autoscalers contained within the specified zone.\n\n Args:\n request: (ComputeAutoscalersListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AutoscalerList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves a list of autoscalers contained within the specified zone. Args: request: (ComputeAutoscalersListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AutoscalerList) The response message.<|endoftext|>
da740b31b2cea423f67241effc44405ca68b75b1c43c7a75473ff03e3c1b9b5b
def Patch(self, request, global_params=None): 'Updates an autoscaler in the specified project using the data included in the request. This method supports patch semantics.\n\n Args:\n request: (ComputeAutoscalersPatchRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Patch') return self._RunMethod(config, request, global_params=global_params)
Updates an autoscaler in the specified project using the data included in the request. This method supports patch semantics. Args: request: (ComputeAutoscalersPatchRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Patch
KaranToor/MA450
1
python
def Patch(self, request, global_params=None): 'Updates an autoscaler in the specified project using the data included in the request. This method supports patch semantics.\n\n Args:\n request: (ComputeAutoscalersPatchRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Patch') return self._RunMethod(config, request, global_params=global_params)
def Patch(self, request, global_params=None): 'Updates an autoscaler in the specified project using the data included in the request. This method supports patch semantics.\n\n Args:\n request: (ComputeAutoscalersPatchRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Patch') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Updates an autoscaler in the specified project using the data included in the request. This method supports patch semantics. Args: request: (ComputeAutoscalersPatchRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
7ee06c5a640b904f220db961f16670d8185dc1ddf4f63cd45e0aeca0d41bc54d
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeAutoscalersTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
Returns permissions that a caller has on the specified resource. Args: request: (ComputeAutoscalersTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
TestIamPermissions
KaranToor/MA450
1
python
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeAutoscalersTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeAutoscalersTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns permissions that a caller has on the specified resource. Args: request: (ComputeAutoscalersTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.<|endoftext|>
acc150c91854fb979412b4ca7bebf88d1b809b3d690a126b15a0629b2130889c
def Update(self, request, global_params=None): 'Updates an autoscaler in the specified project using the data included in the request.\n\n Args:\n request: (ComputeAutoscalersUpdateRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Update') return self._RunMethod(config, request, global_params=global_params)
Updates an autoscaler in the specified project using the data included in the request. Args: request: (ComputeAutoscalersUpdateRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Update
KaranToor/MA450
1
python
def Update(self, request, global_params=None): 'Updates an autoscaler in the specified project using the data included in the request.\n\n Args:\n request: (ComputeAutoscalersUpdateRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Update') return self._RunMethod(config, request, global_params=global_params)
def Update(self, request, global_params=None): 'Updates an autoscaler in the specified project using the data included in the request.\n\n Args:\n request: (ComputeAutoscalersUpdateRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Update') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Updates an autoscaler in the specified project using the data included in the request. Args: request: (ComputeAutoscalersUpdateRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
4f6b05c00dcbf161b85c1a89ea0e23a272638b227114c29fbc7141e8dbbf2750
def Delete(self, request, global_params=None): 'Deletes the specified BackendBucket resource.\n\n Args:\n request: (ComputeBackendBucketsDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
Deletes the specified BackendBucket resource. Args: request: (ComputeBackendBucketsDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Delete
KaranToor/MA450
1
python
def Delete(self, request, global_params=None): 'Deletes the specified BackendBucket resource.\n\n Args:\n request: (ComputeBackendBucketsDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
def Delete(self, request, global_params=None): 'Deletes the specified BackendBucket resource.\n\n Args:\n request: (ComputeBackendBucketsDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Deletes the specified BackendBucket resource. Args: request: (ComputeBackendBucketsDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
4ade1898076ddd7f42e567bd592b2fa255c561ce159de2390e321a5bc36a5448
def Get(self, request, global_params=None): 'Returns the specified BackendBucket resource. Get a list of available backend buckets by making a list() request.\n\n Args:\n request: (ComputeBackendBucketsGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendBucket) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
Returns the specified BackendBucket resource. Get a list of available backend buckets by making a list() request. Args: request: (ComputeBackendBucketsGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (BackendBucket) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Get
KaranToor/MA450
1
python
def Get(self, request, global_params=None): 'Returns the specified BackendBucket resource. Get a list of available backend buckets by making a list() request.\n\n Args:\n request: (ComputeBackendBucketsGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendBucket) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
def Get(self, request, global_params=None): 'Returns the specified BackendBucket resource. Get a list of available backend buckets by making a list() request.\n\n Args:\n request: (ComputeBackendBucketsGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendBucket) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns the specified BackendBucket resource. Get a list of available backend buckets by making a list() request. Args: request: (ComputeBackendBucketsGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (BackendBucket) The response message.<|endoftext|>
0cd74aec8a8845919a92fa2e67b7873c3125b207e3e1de8518e1c41a3d372e89
def GetIamPolicy(self, request, global_params=None): 'Gets the access control policy for a resource. May be empty if no such policy or resource exists.\n\n Args:\n request: (ComputeBackendBucketsGetIamPolicyRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Policy) The response message.\n ' config = self.GetMethodConfig('GetIamPolicy') return self._RunMethod(config, request, global_params=global_params)
Gets the access control policy for a resource. May be empty if no such policy or resource exists. Args: request: (ComputeBackendBucketsGetIamPolicyRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Policy) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
GetIamPolicy
KaranToor/MA450
1
python
def GetIamPolicy(self, request, global_params=None): 'Gets the access control policy for a resource. May be empty if no such policy or resource exists.\n\n Args:\n request: (ComputeBackendBucketsGetIamPolicyRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Policy) The response message.\n ' config = self.GetMethodConfig('GetIamPolicy') return self._RunMethod(config, request, global_params=global_params)
def GetIamPolicy(self, request, global_params=None): 'Gets the access control policy for a resource. May be empty if no such policy or resource exists.\n\n Args:\n request: (ComputeBackendBucketsGetIamPolicyRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Policy) The response message.\n ' config = self.GetMethodConfig('GetIamPolicy') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Gets the access control policy for a resource. May be empty if no such policy or resource exists. Args: request: (ComputeBackendBucketsGetIamPolicyRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Policy) The response message.<|endoftext|>
8aa75ac2fc7cf128d664b40cc3c269f67b45a1b2e8667a9d6544eeaafdd8b742
def Insert(self, request, global_params=None): 'Creates a BackendBucket resource in the specified project using the data included in the request.\n\n Args:\n request: (ComputeBackendBucketsInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
Creates a BackendBucket resource in the specified project using the data included in the request. Args: request: (ComputeBackendBucketsInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Insert
KaranToor/MA450
1
python
def Insert(self, request, global_params=None): 'Creates a BackendBucket resource in the specified project using the data included in the request.\n\n Args:\n request: (ComputeBackendBucketsInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
def Insert(self, request, global_params=None): 'Creates a BackendBucket resource in the specified project using the data included in the request.\n\n Args:\n request: (ComputeBackendBucketsInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Creates a BackendBucket resource in the specified project using the data included in the request. Args: request: (ComputeBackendBucketsInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
fd58adf663a209b04b11504e055c047b66909c90d486673472fd2032294b384c
def List(self, request, global_params=None): 'Retrieves the list of BackendBucket resources available to the specified project.\n\n Args:\n request: (ComputeBackendBucketsListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendBucketList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
Retrieves the list of BackendBucket resources available to the specified project. Args: request: (ComputeBackendBucketsListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (BackendBucketList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
List
KaranToor/MA450
1
python
def List(self, request, global_params=None): 'Retrieves the list of BackendBucket resources available to the specified project.\n\n Args:\n request: (ComputeBackendBucketsListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendBucketList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
def List(self, request, global_params=None): 'Retrieves the list of BackendBucket resources available to the specified project.\n\n Args:\n request: (ComputeBackendBucketsListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendBucketList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves the list of BackendBucket resources available to the specified project. Args: request: (ComputeBackendBucketsListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (BackendBucketList) The response message.<|endoftext|>
fc56cb9464fa8ce43dc515b84de7e2d5e147174bc1ccd7e56ea4c1d98f406cc2
def Patch(self, request, global_params=None): 'Updates the specified BackendBucket resource with the data included in the request. This method supports patch semantics.\n\n Args:\n request: (ComputeBackendBucketsPatchRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Patch') return self._RunMethod(config, request, global_params=global_params)
Updates the specified BackendBucket resource with the data included in the request. This method supports patch semantics. Args: request: (ComputeBackendBucketsPatchRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Patch
KaranToor/MA450
1
python
def Patch(self, request, global_params=None): 'Updates the specified BackendBucket resource with the data included in the request. This method supports patch semantics.\n\n Args:\n request: (ComputeBackendBucketsPatchRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Patch') return self._RunMethod(config, request, global_params=global_params)
def Patch(self, request, global_params=None): 'Updates the specified BackendBucket resource with the data included in the request. This method supports patch semantics.\n\n Args:\n request: (ComputeBackendBucketsPatchRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Patch') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Updates the specified BackendBucket resource with the data included in the request. This method supports patch semantics. Args: request: (ComputeBackendBucketsPatchRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
d55c69629d4bf77f25893b46d39bb784bab3c4acdd745414b05adb569caea31b
def SetIamPolicy(self, request, global_params=None): 'Sets the access control policy on the specified resource. Replaces any existing policy.\n\n Args:\n request: (ComputeBackendBucketsSetIamPolicyRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Policy) The response message.\n ' config = self.GetMethodConfig('SetIamPolicy') return self._RunMethod(config, request, global_params=global_params)
Sets the access control policy on the specified resource. Replaces any existing policy. Args: request: (ComputeBackendBucketsSetIamPolicyRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Policy) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
SetIamPolicy
KaranToor/MA450
1
python
def SetIamPolicy(self, request, global_params=None): 'Sets the access control policy on the specified resource. Replaces any existing policy.\n\n Args:\n request: (ComputeBackendBucketsSetIamPolicyRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Policy) The response message.\n ' config = self.GetMethodConfig('SetIamPolicy') return self._RunMethod(config, request, global_params=global_params)
def SetIamPolicy(self, request, global_params=None): 'Sets the access control policy on the specified resource. Replaces any existing policy.\n\n Args:\n request: (ComputeBackendBucketsSetIamPolicyRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Policy) The response message.\n ' config = self.GetMethodConfig('SetIamPolicy') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Sets the access control policy on the specified resource. Replaces any existing policy. Args: request: (ComputeBackendBucketsSetIamPolicyRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Policy) The response message.<|endoftext|>
8a3509d2539ce3361dce47f35bb60fcdf22099616ab39510d8797b84ecec5b20
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeBackendBucketsTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
Returns permissions that a caller has on the specified resource. Args: request: (ComputeBackendBucketsTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
TestIamPermissions
KaranToor/MA450
1
python
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeBackendBucketsTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeBackendBucketsTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns permissions that a caller has on the specified resource. Args: request: (ComputeBackendBucketsTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.<|endoftext|>
4d1b4944a90fcd6cb25466db83ba541e3f7b600d0f7926b0f3eefebe40bae4f7
def Update(self, request, global_params=None): 'Updates the specified BackendBucket resource with the data included in the request.\n\n Args:\n request: (ComputeBackendBucketsUpdateRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Update') return self._RunMethod(config, request, global_params=global_params)
Updates the specified BackendBucket resource with the data included in the request. Args: request: (ComputeBackendBucketsUpdateRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Update
KaranToor/MA450
1
python
def Update(self, request, global_params=None): 'Updates the specified BackendBucket resource with the data included in the request.\n\n Args:\n request: (ComputeBackendBucketsUpdateRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Update') return self._RunMethod(config, request, global_params=global_params)
def Update(self, request, global_params=None): 'Updates the specified BackendBucket resource with the data included in the request.\n\n Args:\n request: (ComputeBackendBucketsUpdateRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Update') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Updates the specified BackendBucket resource with the data included in the request. Args: request: (ComputeBackendBucketsUpdateRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
cc561c9e9c106f950100fb0eca240aa784bc4abe45c5c07ba3726b4c9800a458
def AggregatedList(self, request, global_params=None): 'Retrieves the list of all BackendService resources, regional and global, available to the specified project.\n\n Args:\n request: (ComputeBackendServicesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendServiceAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
Retrieves the list of all BackendService resources, regional and global, available to the specified project. Args: request: (ComputeBackendServicesAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (BackendServiceAggregatedList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
AggregatedList
KaranToor/MA450
1
python
def AggregatedList(self, request, global_params=None): 'Retrieves the list of all BackendService resources, regional and global, available to the specified project.\n\n Args:\n request: (ComputeBackendServicesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendServiceAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
def AggregatedList(self, request, global_params=None): 'Retrieves the list of all BackendService resources, regional and global, available to the specified project.\n\n Args:\n request: (ComputeBackendServicesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendServiceAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves the list of all BackendService resources, regional and global, available to the specified project. Args: request: (ComputeBackendServicesAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (BackendServiceAggregatedList) The response message.<|endoftext|>
83a7cadb355e22585fed167030e8c94aa84115a2c32049155742d119f74c4888
def Delete(self, request, global_params=None): 'Deletes the specified BackendService resource.\n\n Args:\n request: (ComputeBackendServicesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
Deletes the specified BackendService resource. Args: request: (ComputeBackendServicesDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Delete
KaranToor/MA450
1
python
def Delete(self, request, global_params=None): 'Deletes the specified BackendService resource.\n\n Args:\n request: (ComputeBackendServicesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
def Delete(self, request, global_params=None): 'Deletes the specified BackendService resource.\n\n Args:\n request: (ComputeBackendServicesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Deletes the specified BackendService resource. Args: request: (ComputeBackendServicesDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
9079cfeaca976c8451fdad56c519d747be144a4b9b3316430d29a32fb77858c1
def Get(self, request, global_params=None): 'Returns the specified BackendService resource. Get a list of available backend services by making a list() request.\n\n Args:\n request: (ComputeBackendServicesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendService) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
Returns the specified BackendService resource. Get a list of available backend services by making a list() request. Args: request: (ComputeBackendServicesGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (BackendService) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Get
KaranToor/MA450
1
python
def Get(self, request, global_params=None): 'Returns the specified BackendService resource. Get a list of available backend services by making a list() request.\n\n Args:\n request: (ComputeBackendServicesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendService) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
def Get(self, request, global_params=None): 'Returns the specified BackendService resource. Get a list of available backend services by making a list() request.\n\n Args:\n request: (ComputeBackendServicesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendService) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns the specified BackendService resource. Get a list of available backend services by making a list() request. Args: request: (ComputeBackendServicesGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (BackendService) The response message.<|endoftext|>
6c11c03b4f1dd3ab743878ba7c5222a6cae94d8971da687afb1e3482d725dc09
def GetHealth(self, request, global_params=None): 'Gets the most recent health check results for this BackendService.\n\n Args:\n request: (ComputeBackendServicesGetHealthRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendServiceGroupHealth) The response message.\n ' config = self.GetMethodConfig('GetHealth') return self._RunMethod(config, request, global_params=global_params)
Gets the most recent health check results for this BackendService. Args: request: (ComputeBackendServicesGetHealthRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (BackendServiceGroupHealth) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
GetHealth
KaranToor/MA450
1
python
def GetHealth(self, request, global_params=None): 'Gets the most recent health check results for this BackendService.\n\n Args:\n request: (ComputeBackendServicesGetHealthRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendServiceGroupHealth) The response message.\n ' config = self.GetMethodConfig('GetHealth') return self._RunMethod(config, request, global_params=global_params)
def GetHealth(self, request, global_params=None): 'Gets the most recent health check results for this BackendService.\n\n Args:\n request: (ComputeBackendServicesGetHealthRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendServiceGroupHealth) The response message.\n ' config = self.GetMethodConfig('GetHealth') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Gets the most recent health check results for this BackendService. Args: request: (ComputeBackendServicesGetHealthRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (BackendServiceGroupHealth) The response message.<|endoftext|>
b89e67bd5c708fdf70ea5c3f5a842af2c7f32e95483dbdd0f1408cb198f620ac
def Insert(self, request, global_params=None): 'Creates a BackendService resource in the specified project using the data included in the request. There are several restrictions and guidelines to keep in mind when creating a backend service. Read Restrictions and Guidelines for more information.\n\n Args:\n request: (ComputeBackendServicesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
Creates a BackendService resource in the specified project using the data included in the request. There are several restrictions and guidelines to keep in mind when creating a backend service. Read Restrictions and Guidelines for more information. Args: request: (ComputeBackendServicesInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Insert
KaranToor/MA450
1
python
def Insert(self, request, global_params=None): 'Creates a BackendService resource in the specified project using the data included in the request. There are several restrictions and guidelines to keep in mind when creating a backend service. Read Restrictions and Guidelines for more information.\n\n Args:\n request: (ComputeBackendServicesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
def Insert(self, request, global_params=None): 'Creates a BackendService resource in the specified project using the data included in the request. There are several restrictions and guidelines to keep in mind when creating a backend service. Read Restrictions and Guidelines for more information.\n\n Args:\n request: (ComputeBackendServicesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Creates a BackendService resource in the specified project using the data included in the request. There are several restrictions and guidelines to keep in mind when creating a backend service. Read Restrictions and Guidelines for more information. Args: request: (ComputeBackendServicesInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
87eed4e94fadf5d200c03972f274e3adab3bfca1ecf499f0491cad2d07e75c70
def List(self, request, global_params=None): 'Retrieves the list of BackendService resources available to the specified project.\n\n Args:\n request: (ComputeBackendServicesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendServiceList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
Retrieves the list of BackendService resources available to the specified project. Args: request: (ComputeBackendServicesListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (BackendServiceList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
List
KaranToor/MA450
1
python
def List(self, request, global_params=None): 'Retrieves the list of BackendService resources available to the specified project.\n\n Args:\n request: (ComputeBackendServicesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendServiceList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
def List(self, request, global_params=None): 'Retrieves the list of BackendService resources available to the specified project.\n\n Args:\n request: (ComputeBackendServicesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (BackendServiceList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves the list of BackendService resources available to the specified project. Args: request: (ComputeBackendServicesListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (BackendServiceList) The response message.<|endoftext|>
5b66c9fac86b655c4e85ae3656879870361a6ddd08192b2a7ec9d139fb4c8282
def Patch(self, request, global_params=None): 'Updates the specified BackendService resource with the data included in the request. There are several restrictions and guidelines to keep in mind when updating a backend service. Read Restrictions and Guidelines for more information. This method supports patch semantics.\n\n Args:\n request: (ComputeBackendServicesPatchRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Patch') return self._RunMethod(config, request, global_params=global_params)
Updates the specified BackendService resource with the data included in the request. There are several restrictions and guidelines to keep in mind when updating a backend service. Read Restrictions and Guidelines for more information. This method supports patch semantics. Args: request: (ComputeBackendServicesPatchRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Patch
KaranToor/MA450
1
python
def Patch(self, request, global_params=None): 'Updates the specified BackendService resource with the data included in the request. There are several restrictions and guidelines to keep in mind when updating a backend service. Read Restrictions and Guidelines for more information. This method supports patch semantics.\n\n Args:\n request: (ComputeBackendServicesPatchRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Patch') return self._RunMethod(config, request, global_params=global_params)
def Patch(self, request, global_params=None): 'Updates the specified BackendService resource with the data included in the request. There are several restrictions and guidelines to keep in mind when updating a backend service. Read Restrictions and Guidelines for more information. This method supports patch semantics.\n\n Args:\n request: (ComputeBackendServicesPatchRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Patch') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Updates the specified BackendService resource with the data included in the request. There are several restrictions and guidelines to keep in mind when updating a backend service. Read Restrictions and Guidelines for more information. This method supports patch semantics. Args: request: (ComputeBackendServicesPatchRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
017f060616a0b4c11c399d9a05cc177cccf2ce74218f75fe54d8edaf75fb4d5c
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeBackendServicesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
Returns permissions that a caller has on the specified resource. Args: request: (ComputeBackendServicesTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
TestIamPermissions
KaranToor/MA450
1
python
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeBackendServicesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeBackendServicesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns permissions that a caller has on the specified resource. Args: request: (ComputeBackendServicesTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.<|endoftext|>
402586cb57ff27e26c7ab989e87723be82198a9d919477fba4021be918278627
def Update(self, request, global_params=None): 'Updates the specified BackendService resource with the data included in the request. There are several restrictions and guidelines to keep in mind when updating a backend service. Read Restrictions and Guidelines for more information.\n\n Args:\n request: (ComputeBackendServicesUpdateRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Update') return self._RunMethod(config, request, global_params=global_params)
Updates the specified BackendService resource with the data included in the request. There are several restrictions and guidelines to keep in mind when updating a backend service. Read Restrictions and Guidelines for more information. Args: request: (ComputeBackendServicesUpdateRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Update
KaranToor/MA450
1
python
def Update(self, request, global_params=None): 'Updates the specified BackendService resource with the data included in the request. There are several restrictions and guidelines to keep in mind when updating a backend service. Read Restrictions and Guidelines for more information.\n\n Args:\n request: (ComputeBackendServicesUpdateRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Update') return self._RunMethod(config, request, global_params=global_params)
def Update(self, request, global_params=None): 'Updates the specified BackendService resource with the data included in the request. There are several restrictions and guidelines to keep in mind when updating a backend service. Read Restrictions and Guidelines for more information.\n\n Args:\n request: (ComputeBackendServicesUpdateRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Update') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Updates the specified BackendService resource with the data included in the request. There are several restrictions and guidelines to keep in mind when updating a backend service. Read Restrictions and Guidelines for more information. Args: request: (ComputeBackendServicesUpdateRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
ab5bd4511bd5c02a6c140e62a5df0c57a89a29f41b4e43c2553ad4929400fcec
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeClientSslPoliciesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
Returns permissions that a caller has on the specified resource. Args: request: (ComputeClientSslPoliciesTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
TestIamPermissions
KaranToor/MA450
1
python
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeClientSslPoliciesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeClientSslPoliciesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns permissions that a caller has on the specified resource. Args: request: (ComputeClientSslPoliciesTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.<|endoftext|>
a678eb605f3704f9220c0b08c88ea283cbc8d4ba2b3020fefbf407f4121dbdc4
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of commitments.\n\n Args:\n request: (ComputeCommitmentsAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (CommitmentAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
Retrieves an aggregated list of commitments. Args: request: (ComputeCommitmentsAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (CommitmentAggregatedList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
AggregatedList
KaranToor/MA450
1
python
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of commitments.\n\n Args:\n request: (ComputeCommitmentsAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (CommitmentAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of commitments.\n\n Args:\n request: (ComputeCommitmentsAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (CommitmentAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves an aggregated list of commitments. Args: request: (ComputeCommitmentsAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (CommitmentAggregatedList) The response message.<|endoftext|>
ac96b16b69179fdfdd1795d578f535a70963395fb31abadd27dd07b407dc9bf9
def Get(self, request, global_params=None): 'Returns the specified commitment resource. Get a list of available commitments by making a list() request.\n\n Args:\n request: (ComputeCommitmentsGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Commitment) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
Returns the specified commitment resource. Get a list of available commitments by making a list() request. Args: request: (ComputeCommitmentsGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Commitment) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Get
KaranToor/MA450
1
python
def Get(self, request, global_params=None): 'Returns the specified commitment resource. Get a list of available commitments by making a list() request.\n\n Args:\n request: (ComputeCommitmentsGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Commitment) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
def Get(self, request, global_params=None): 'Returns the specified commitment resource. Get a list of available commitments by making a list() request.\n\n Args:\n request: (ComputeCommitmentsGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Commitment) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns the specified commitment resource. Get a list of available commitments by making a list() request. Args: request: (ComputeCommitmentsGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Commitment) The response message.<|endoftext|>
c1744a6c5c4a00184b6d38e6403ab5ffd0dd7ea21fb700c195e98d5d6c3cf70c
def Insert(self, request, global_params=None): 'Creates an commitment in the specified project using the data included in the request.\n\n Args:\n request: (ComputeCommitmentsInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
Creates an commitment in the specified project using the data included in the request. Args: request: (ComputeCommitmentsInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Insert
KaranToor/MA450
1
python
def Insert(self, request, global_params=None): 'Creates an commitment in the specified project using the data included in the request.\n\n Args:\n request: (ComputeCommitmentsInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
def Insert(self, request, global_params=None): 'Creates an commitment in the specified project using the data included in the request.\n\n Args:\n request: (ComputeCommitmentsInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Creates an commitment in the specified project using the data included in the request. Args: request: (ComputeCommitmentsInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
952f1eec0c4e15abb6e8a862abd321feeeebb5bdc6d9922690dacf2de4aa3cd8
def List(self, request, global_params=None): 'Retrieves a list of commitments contained within the specified zone.\n\n Args:\n request: (ComputeCommitmentsListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (CommitmentList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
Retrieves a list of commitments contained within the specified zone. Args: request: (ComputeCommitmentsListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (CommitmentList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
List
KaranToor/MA450
1
python
def List(self, request, global_params=None): 'Retrieves a list of commitments contained within the specified zone.\n\n Args:\n request: (ComputeCommitmentsListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (CommitmentList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
def List(self, request, global_params=None): 'Retrieves a list of commitments contained within the specified zone.\n\n Args:\n request: (ComputeCommitmentsListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (CommitmentList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves a list of commitments contained within the specified zone. Args: request: (ComputeCommitmentsListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (CommitmentList) The response message.<|endoftext|>
e4bbeac7770816b94375217dd7a2f5ae0de49adb283f50415ffd217b909607a1
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeCommitmentsTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
Returns permissions that a caller has on the specified resource. Args: request: (ComputeCommitmentsTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
TestIamPermissions
KaranToor/MA450
1
python
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeCommitmentsTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeCommitmentsTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns permissions that a caller has on the specified resource. Args: request: (ComputeCommitmentsTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.<|endoftext|>
e3d270ce237fcbb3f9779bd5f2047940f9d11f74f7a12b136c985ae7fb32fd5a
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of disk types.\n\n Args:\n request: (ComputeDiskTypesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskTypeAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
Retrieves an aggregated list of disk types. Args: request: (ComputeDiskTypesAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (DiskTypeAggregatedList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
AggregatedList
KaranToor/MA450
1
python
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of disk types.\n\n Args:\n request: (ComputeDiskTypesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskTypeAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of disk types.\n\n Args:\n request: (ComputeDiskTypesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskTypeAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves an aggregated list of disk types. Args: request: (ComputeDiskTypesAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (DiskTypeAggregatedList) The response message.<|endoftext|>
d7bd89da9a401f86083b1f3c027505af28c7fd44e678295d9de1e14d3d6d0264
def Get(self, request, global_params=None): 'Returns the specified disk type. Get a list of available disk types by making a list() request.\n\n Args:\n request: (ComputeDiskTypesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskType) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
Returns the specified disk type. Get a list of available disk types by making a list() request. Args: request: (ComputeDiskTypesGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (DiskType) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Get
KaranToor/MA450
1
python
def Get(self, request, global_params=None): 'Returns the specified disk type. Get a list of available disk types by making a list() request.\n\n Args:\n request: (ComputeDiskTypesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskType) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
def Get(self, request, global_params=None): 'Returns the specified disk type. Get a list of available disk types by making a list() request.\n\n Args:\n request: (ComputeDiskTypesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskType) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns the specified disk type. Get a list of available disk types by making a list() request. Args: request: (ComputeDiskTypesGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (DiskType) The response message.<|endoftext|>
5d2804389d25d0e77f3720fa4fb40246dcce2e4897f364c3e7ad3fe1e6c9d1f3
def List(self, request, global_params=None): 'Retrieves a list of disk types available to the specified project.\n\n Args:\n request: (ComputeDiskTypesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskTypeList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
Retrieves a list of disk types available to the specified project. Args: request: (ComputeDiskTypesListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (DiskTypeList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
List
KaranToor/MA450
1
python
def List(self, request, global_params=None): 'Retrieves a list of disk types available to the specified project.\n\n Args:\n request: (ComputeDiskTypesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskTypeList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
def List(self, request, global_params=None): 'Retrieves a list of disk types available to the specified project.\n\n Args:\n request: (ComputeDiskTypesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskTypeList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves a list of disk types available to the specified project. Args: request: (ComputeDiskTypesListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (DiskTypeList) The response message.<|endoftext|>
3050eff756b26f633ad7152514b50c6f0b09da481c8226af5f69ff3d2d979181
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of persistent disks.\n\n Args:\n request: (ComputeDisksAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
Retrieves an aggregated list of persistent disks. Args: request: (ComputeDisksAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (DiskAggregatedList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
AggregatedList
KaranToor/MA450
1
python
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of persistent disks.\n\n Args:\n request: (ComputeDisksAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of persistent disks.\n\n Args:\n request: (ComputeDisksAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves an aggregated list of persistent disks. Args: request: (ComputeDisksAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (DiskAggregatedList) The response message.<|endoftext|>
9490dabd8d611d272db680820a7e9e14bd36d4f41648153c8183485ad03457f3
def CreateSnapshot(self, request, global_params=None): 'Creates a snapshot of a specified persistent disk.\n\n Args:\n request: (ComputeDisksCreateSnapshotRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('CreateSnapshot') return self._RunMethod(config, request, global_params=global_params)
Creates a snapshot of a specified persistent disk. Args: request: (ComputeDisksCreateSnapshotRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
CreateSnapshot
KaranToor/MA450
1
python
def CreateSnapshot(self, request, global_params=None): 'Creates a snapshot of a specified persistent disk.\n\n Args:\n request: (ComputeDisksCreateSnapshotRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('CreateSnapshot') return self._RunMethod(config, request, global_params=global_params)
def CreateSnapshot(self, request, global_params=None): 'Creates a snapshot of a specified persistent disk.\n\n Args:\n request: (ComputeDisksCreateSnapshotRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('CreateSnapshot') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Creates a snapshot of a specified persistent disk. Args: request: (ComputeDisksCreateSnapshotRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
ca1003a43ce6b36b67fa4677508f75c63dcf01a734c3c3d6263326b3e6943fbc
def Delete(self, request, global_params=None): 'Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots.\n\n Args:\n request: (ComputeDisksDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots. Args: request: (ComputeDisksDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Delete
KaranToor/MA450
1
python
def Delete(self, request, global_params=None): 'Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots.\n\n Args:\n request: (ComputeDisksDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
def Delete(self, request, global_params=None): 'Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots.\n\n Args:\n request: (ComputeDisksDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Deletes the specified persistent disk. Deleting a disk removes its data permanently and is irreversible. However, deleting a disk does not delete any snapshots previously made from the disk. You must separately delete snapshots. Args: request: (ComputeDisksDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
9f6fcb1f83d6120982d908270f2535710ff341d326a7b094a7f604d13d401a68
def Get(self, request, global_params=None): 'Returns a specified persistent disk. Get a list of available persistent disks by making a list() request.\n\n Args:\n request: (ComputeDisksGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Disk) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
Returns a specified persistent disk. Get a list of available persistent disks by making a list() request. Args: request: (ComputeDisksGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Disk) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Get
KaranToor/MA450
1
python
def Get(self, request, global_params=None): 'Returns a specified persistent disk. Get a list of available persistent disks by making a list() request.\n\n Args:\n request: (ComputeDisksGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Disk) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
def Get(self, request, global_params=None): 'Returns a specified persistent disk. Get a list of available persistent disks by making a list() request.\n\n Args:\n request: (ComputeDisksGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Disk) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns a specified persistent disk. Get a list of available persistent disks by making a list() request. Args: request: (ComputeDisksGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Disk) The response message.<|endoftext|>
9a127ced5fb769d100b40f8288d7a99fc3d3b199f91bbb9438c4ee6238698edd
def Insert(self, request, global_params=None): 'Creates a persistent disk in the specified project using the data in the request. You can create a disk with a sourceImage, a sourceSnapshot, or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.\n\n Args:\n request: (ComputeDisksInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
Creates a persistent disk in the specified project using the data in the request. You can create a disk with a sourceImage, a sourceSnapshot, or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property. Args: request: (ComputeDisksInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Insert
KaranToor/MA450
1
python
def Insert(self, request, global_params=None): 'Creates a persistent disk in the specified project using the data in the request. You can create a disk with a sourceImage, a sourceSnapshot, or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.\n\n Args:\n request: (ComputeDisksInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
def Insert(self, request, global_params=None): 'Creates a persistent disk in the specified project using the data in the request. You can create a disk with a sourceImage, a sourceSnapshot, or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property.\n\n Args:\n request: (ComputeDisksInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Creates a persistent disk in the specified project using the data in the request. You can create a disk with a sourceImage, a sourceSnapshot, or create an empty 500 GB data disk by omitting all properties. You can also create a disk that is larger than the default size by specifying the sizeGb property. Args: request: (ComputeDisksInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
5c08ce12e2b616f3ba43a13bd73700f85aab364d0bbafe105cb66ee9c2b8bcac
def List(self, request, global_params=None): 'Retrieves a list of persistent disks contained within the specified zone.\n\n Args:\n request: (ComputeDisksListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
Retrieves a list of persistent disks contained within the specified zone. Args: request: (ComputeDisksListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (DiskList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
List
KaranToor/MA450
1
python
def List(self, request, global_params=None): 'Retrieves a list of persistent disks contained within the specified zone.\n\n Args:\n request: (ComputeDisksListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
def List(self, request, global_params=None): 'Retrieves a list of persistent disks contained within the specified zone.\n\n Args:\n request: (ComputeDisksListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (DiskList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves a list of persistent disks contained within the specified zone. Args: request: (ComputeDisksListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (DiskList) The response message.<|endoftext|>
a075e6bf7b272938d7a5a0ad1100bc5689ec319e266c4add9a0aaf091f42aa15
def Resize(self, request, global_params=None): 'Resizes the specified persistent disk.\n\n Args:\n request: (ComputeDisksResizeRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Resize') return self._RunMethod(config, request, global_params=global_params)
Resizes the specified persistent disk. Args: request: (ComputeDisksResizeRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Resize
KaranToor/MA450
1
python
def Resize(self, request, global_params=None): 'Resizes the specified persistent disk.\n\n Args:\n request: (ComputeDisksResizeRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Resize') return self._RunMethod(config, request, global_params=global_params)
def Resize(self, request, global_params=None): 'Resizes the specified persistent disk.\n\n Args:\n request: (ComputeDisksResizeRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Resize') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Resizes the specified persistent disk. Args: request: (ComputeDisksResizeRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
a673633d8089c2f31a39b52c7fd860c16206afcc1d23547e4ce58d0bdb327fe0
def SetLabels(self, request, global_params=None): 'Sets the labels on a disk. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeDisksSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)
Sets the labels on a disk. To learn more about labels, read the Labeling or Tagging Resources documentation. Args: request: (ComputeDisksSetLabelsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
SetLabels
KaranToor/MA450
1
python
def SetLabels(self, request, global_params=None): 'Sets the labels on a disk. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeDisksSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)
def SetLabels(self, request, global_params=None): 'Sets the labels on a disk. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeDisksSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Sets the labels on a disk. To learn more about labels, read the Labeling or Tagging Resources documentation. Args: request: (ComputeDisksSetLabelsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
7e3d380d199df822ec1f2afe041b5938d62a32b9e067b9751d9b16099256587d
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeDisksTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
Returns permissions that a caller has on the specified resource. Args: request: (ComputeDisksTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
TestIamPermissions
KaranToor/MA450
1
python
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeDisksTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeDisksTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns permissions that a caller has on the specified resource. Args: request: (ComputeDisksTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.<|endoftext|>
6772d8d4951ac32f6043c96bcc07d4acdf527719aec78d3833088346d541c67f
def Delete(self, request, global_params=None): 'Deletes the specified firewall.\n\n Args:\n request: (ComputeFirewallsDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
Deletes the specified firewall. Args: request: (ComputeFirewallsDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Delete
KaranToor/MA450
1
python
def Delete(self, request, global_params=None): 'Deletes the specified firewall.\n\n Args:\n request: (ComputeFirewallsDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
def Delete(self, request, global_params=None): 'Deletes the specified firewall.\n\n Args:\n request: (ComputeFirewallsDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Deletes the specified firewall. Args: request: (ComputeFirewallsDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
a4d01d9ca1e5d6a3f5018ffdd9b77923ea0fd47b96384eb3775e09d49d4029a7
def Get(self, request, global_params=None): 'Returns the specified firewall.\n\n Args:\n request: (ComputeFirewallsGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Firewall) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
Returns the specified firewall. Args: request: (ComputeFirewallsGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Firewall) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Get
KaranToor/MA450
1
python
def Get(self, request, global_params=None): 'Returns the specified firewall.\n\n Args:\n request: (ComputeFirewallsGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Firewall) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
def Get(self, request, global_params=None): 'Returns the specified firewall.\n\n Args:\n request: (ComputeFirewallsGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Firewall) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns the specified firewall. Args: request: (ComputeFirewallsGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Firewall) The response message.<|endoftext|>
3f3121aa6d90bce7867c1f9dabd51d9b4eec73022ab646c4a48ae290a71e6998
def Insert(self, request, global_params=None): 'Creates a firewall rule in the specified project using the data included in the request.\n\n Args:\n request: (ComputeFirewallsInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
Creates a firewall rule in the specified project using the data included in the request. Args: request: (ComputeFirewallsInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Insert
KaranToor/MA450
1
python
def Insert(self, request, global_params=None): 'Creates a firewall rule in the specified project using the data included in the request.\n\n Args:\n request: (ComputeFirewallsInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
def Insert(self, request, global_params=None): 'Creates a firewall rule in the specified project using the data included in the request.\n\n Args:\n request: (ComputeFirewallsInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Creates a firewall rule in the specified project using the data included in the request. Args: request: (ComputeFirewallsInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
9eb46d11734216f5e52607f79c521c1b6ca5372966eadb33efb70d624a06d142
def List(self, request, global_params=None): 'Retrieves the list of firewall rules available to the specified project.\n\n Args:\n request: (ComputeFirewallsListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (FirewallList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
Retrieves the list of firewall rules available to the specified project. Args: request: (ComputeFirewallsListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (FirewallList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
List
KaranToor/MA450
1
python
def List(self, request, global_params=None): 'Retrieves the list of firewall rules available to the specified project.\n\n Args:\n request: (ComputeFirewallsListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (FirewallList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
def List(self, request, global_params=None): 'Retrieves the list of firewall rules available to the specified project.\n\n Args:\n request: (ComputeFirewallsListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (FirewallList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves the list of firewall rules available to the specified project. Args: request: (ComputeFirewallsListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (FirewallList) The response message.<|endoftext|>
894463a1e9c58ad782ab2ef9e2541f628b63df61c73d9bb2bc1453820de63a35
def Patch(self, request, global_params=None): 'Updates the specified firewall rule with the data included in the request. This method supports patch semantics.\n\n Args:\n request: (ComputeFirewallsPatchRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Patch') return self._RunMethod(config, request, global_params=global_params)
Updates the specified firewall rule with the data included in the request. This method supports patch semantics. Args: request: (ComputeFirewallsPatchRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Patch
KaranToor/MA450
1
python
def Patch(self, request, global_params=None): 'Updates the specified firewall rule with the data included in the request. This method supports patch semantics.\n\n Args:\n request: (ComputeFirewallsPatchRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Patch') return self._RunMethod(config, request, global_params=global_params)
def Patch(self, request, global_params=None): 'Updates the specified firewall rule with the data included in the request. This method supports patch semantics.\n\n Args:\n request: (ComputeFirewallsPatchRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Patch') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Updates the specified firewall rule with the data included in the request. This method supports patch semantics. Args: request: (ComputeFirewallsPatchRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
90d39e1613fbca3f34ae014bd7821b6351c409d58e1efb7f19d172350dcdde5f
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeFirewallsTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
Returns permissions that a caller has on the specified resource. Args: request: (ComputeFirewallsTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
TestIamPermissions
KaranToor/MA450
1
python
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeFirewallsTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeFirewallsTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns permissions that a caller has on the specified resource. Args: request: (ComputeFirewallsTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.<|endoftext|>
e81607a6099a0bac91a2eddb2793807d6420333e0ec158503e82e6c1555d90cb
def Update(self, request, global_params=None): 'Updates the specified firewall rule with the data included in the request.\n\n Args:\n request: (ComputeFirewallsUpdateRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Update') return self._RunMethod(config, request, global_params=global_params)
Updates the specified firewall rule with the data included in the request. Args: request: (ComputeFirewallsUpdateRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Update
KaranToor/MA450
1
python
def Update(self, request, global_params=None): 'Updates the specified firewall rule with the data included in the request.\n\n Args:\n request: (ComputeFirewallsUpdateRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Update') return self._RunMethod(config, request, global_params=global_params)
def Update(self, request, global_params=None): 'Updates the specified firewall rule with the data included in the request.\n\n Args:\n request: (ComputeFirewallsUpdateRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Update') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Updates the specified firewall rule with the data included in the request. Args: request: (ComputeFirewallsUpdateRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
5b789e6d0788ac7c3641d959601e6a82fb0e5a87f754d65e6e2e2eb51f337ce2
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of forwarding rules.\n\n Args:\n request: (ComputeForwardingRulesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRuleAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
Retrieves an aggregated list of forwarding rules. Args: request: (ComputeForwardingRulesAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (ForwardingRuleAggregatedList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
AggregatedList
KaranToor/MA450
1
python
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of forwarding rules.\n\n Args:\n request: (ComputeForwardingRulesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRuleAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of forwarding rules.\n\n Args:\n request: (ComputeForwardingRulesAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRuleAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves an aggregated list of forwarding rules. Args: request: (ComputeForwardingRulesAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (ForwardingRuleAggregatedList) The response message.<|endoftext|>
127efe9b029b9e354f0b2472d644d2eeb06aaec4156128ceaedc32d1d2253c9c
def Delete(self, request, global_params=None): 'Deletes the specified ForwardingRule resource.\n\n Args:\n request: (ComputeForwardingRulesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
Deletes the specified ForwardingRule resource. Args: request: (ComputeForwardingRulesDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Delete
KaranToor/MA450
1
python
def Delete(self, request, global_params=None): 'Deletes the specified ForwardingRule resource.\n\n Args:\n request: (ComputeForwardingRulesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
def Delete(self, request, global_params=None): 'Deletes the specified ForwardingRule resource.\n\n Args:\n request: (ComputeForwardingRulesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Deletes the specified ForwardingRule resource. Args: request: (ComputeForwardingRulesDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
95ef9435ca19de6d998a998ef0c3d1be346cf15973631b3ddafa8e9e70300806
def Get(self, request, global_params=None): 'Returns the specified ForwardingRule resource.\n\n Args:\n request: (ComputeForwardingRulesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRule) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
Returns the specified ForwardingRule resource. Args: request: (ComputeForwardingRulesGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (ForwardingRule) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Get
KaranToor/MA450
1
python
def Get(self, request, global_params=None): 'Returns the specified ForwardingRule resource.\n\n Args:\n request: (ComputeForwardingRulesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRule) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
def Get(self, request, global_params=None): 'Returns the specified ForwardingRule resource.\n\n Args:\n request: (ComputeForwardingRulesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRule) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns the specified ForwardingRule resource. Args: request: (ComputeForwardingRulesGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (ForwardingRule) The response message.<|endoftext|>
27b16f097fc4fd5a2a5e4dcf5b62bd1cfeab66d293a8cb554e3fff4dc6ee27fb
def Insert(self, request, global_params=None): 'Creates a ForwardingRule resource in the specified project and region using the data included in the request.\n\n Args:\n request: (ComputeForwardingRulesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
Creates a ForwardingRule resource in the specified project and region using the data included in the request. Args: request: (ComputeForwardingRulesInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Insert
KaranToor/MA450
1
python
def Insert(self, request, global_params=None): 'Creates a ForwardingRule resource in the specified project and region using the data included in the request.\n\n Args:\n request: (ComputeForwardingRulesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
def Insert(self, request, global_params=None): 'Creates a ForwardingRule resource in the specified project and region using the data included in the request.\n\n Args:\n request: (ComputeForwardingRulesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Creates a ForwardingRule resource in the specified project and region using the data included in the request. Args: request: (ComputeForwardingRulesInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
f3ae08d83c73deeb885c12e6cd9d3a3506392c416467308cf7e808ccbd343bef
def List(self, request, global_params=None): 'Retrieves a list of ForwardingRule resources available to the specified project and region.\n\n Args:\n request: (ComputeForwardingRulesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRuleList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
Retrieves a list of ForwardingRule resources available to the specified project and region. Args: request: (ComputeForwardingRulesListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (ForwardingRuleList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
List
KaranToor/MA450
1
python
def List(self, request, global_params=None): 'Retrieves a list of ForwardingRule resources available to the specified project and region.\n\n Args:\n request: (ComputeForwardingRulesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRuleList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
def List(self, request, global_params=None): 'Retrieves a list of ForwardingRule resources available to the specified project and region.\n\n Args:\n request: (ComputeForwardingRulesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRuleList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves a list of ForwardingRule resources available to the specified project and region. Args: request: (ComputeForwardingRulesListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (ForwardingRuleList) The response message.<|endoftext|>
b6df7ce18f0cf5d5c515bd5f02630410f3816618fa7187232ff173b109595ea8
def SetLabels(self, request, global_params=None): 'Sets the labels on the specified resource. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeForwardingRulesSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)
Sets the labels on the specified resource. To learn more about labels, read the Labeling or Tagging Resources documentation. Args: request: (ComputeForwardingRulesSetLabelsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
SetLabels
KaranToor/MA450
1
python
def SetLabels(self, request, global_params=None): 'Sets the labels on the specified resource. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeForwardingRulesSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)
def SetLabels(self, request, global_params=None): 'Sets the labels on the specified resource. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeForwardingRulesSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Sets the labels on the specified resource. To learn more about labels, read the Labeling or Tagging Resources documentation. Args: request: (ComputeForwardingRulesSetLabelsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
2d42560853fc4785c50869ad79f7aa115b823458a2e647a85e964e70c3d65dd9
def SetTarget(self, request, global_params=None): 'Changes target URL for forwarding rule. The new target should be of the same type as the old target.\n\n Args:\n request: (ComputeForwardingRulesSetTargetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetTarget') return self._RunMethod(config, request, global_params=global_params)
Changes target URL for forwarding rule. The new target should be of the same type as the old target. Args: request: (ComputeForwardingRulesSetTargetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
SetTarget
KaranToor/MA450
1
python
def SetTarget(self, request, global_params=None): 'Changes target URL for forwarding rule. The new target should be of the same type as the old target.\n\n Args:\n request: (ComputeForwardingRulesSetTargetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetTarget') return self._RunMethod(config, request, global_params=global_params)
def SetTarget(self, request, global_params=None): 'Changes target URL for forwarding rule. The new target should be of the same type as the old target.\n\n Args:\n request: (ComputeForwardingRulesSetTargetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetTarget') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Changes target URL for forwarding rule. The new target should be of the same type as the old target. Args: request: (ComputeForwardingRulesSetTargetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
1eef8f348567e69bd64b511b3b7006d96cf96c0686fbd6311c8d638bc6b58c2a
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeForwardingRulesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
Returns permissions that a caller has on the specified resource. Args: request: (ComputeForwardingRulesTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
TestIamPermissions
KaranToor/MA450
1
python
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeForwardingRulesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeForwardingRulesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns permissions that a caller has on the specified resource. Args: request: (ComputeForwardingRulesTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.<|endoftext|>
8363e63094cc15eae4458a6332224b2df271b3f84130d429424dcfbd0b978df7
def Delete(self, request, global_params=None): 'Deletes the specified address resource.\n\n Args:\n request: (ComputeGlobalAddressesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
Deletes the specified address resource. Args: request: (ComputeGlobalAddressesDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Delete
KaranToor/MA450
1
python
def Delete(self, request, global_params=None): 'Deletes the specified address resource.\n\n Args:\n request: (ComputeGlobalAddressesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
def Delete(self, request, global_params=None): 'Deletes the specified address resource.\n\n Args:\n request: (ComputeGlobalAddressesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Deletes the specified address resource. Args: request: (ComputeGlobalAddressesDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
8905a2c5cade14414c13e56005e1348b48ae068b61ecc19365f748bdc6adc7a0
def Get(self, request, global_params=None): 'Returns the specified address resource. Get a list of available addresses by making a list() request.\n\n Args:\n request: (ComputeGlobalAddressesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Address) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
Returns the specified address resource. Get a list of available addresses by making a list() request. Args: request: (ComputeGlobalAddressesGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Address) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Get
KaranToor/MA450
1
python
def Get(self, request, global_params=None): 'Returns the specified address resource. Get a list of available addresses by making a list() request.\n\n Args:\n request: (ComputeGlobalAddressesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Address) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
def Get(self, request, global_params=None): 'Returns the specified address resource. Get a list of available addresses by making a list() request.\n\n Args:\n request: (ComputeGlobalAddressesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Address) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns the specified address resource. Get a list of available addresses by making a list() request. Args: request: (ComputeGlobalAddressesGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Address) The response message.<|endoftext|>
a93a62370e87381467d6fa5cf78fd3cbfa6897cd1f4ee42d4a0105d0fd4a2198
def Insert(self, request, global_params=None): 'Creates an address resource in the specified project using the data included in the request.\n\n Args:\n request: (ComputeGlobalAddressesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
Creates an address resource in the specified project using the data included in the request. Args: request: (ComputeGlobalAddressesInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Insert
KaranToor/MA450
1
python
def Insert(self, request, global_params=None): 'Creates an address resource in the specified project using the data included in the request.\n\n Args:\n request: (ComputeGlobalAddressesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
def Insert(self, request, global_params=None): 'Creates an address resource in the specified project using the data included in the request.\n\n Args:\n request: (ComputeGlobalAddressesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Creates an address resource in the specified project using the data included in the request. Args: request: (ComputeGlobalAddressesInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
c4c7d02a98615d37c3099b1d4379eee36a108ec1ca26d684f37f6bf7f064ca3f
def List(self, request, global_params=None): 'Retrieves a list of global addresses.\n\n Args:\n request: (ComputeGlobalAddressesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AddressList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
Retrieves a list of global addresses. Args: request: (ComputeGlobalAddressesListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AddressList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
List
KaranToor/MA450
1
python
def List(self, request, global_params=None): 'Retrieves a list of global addresses.\n\n Args:\n request: (ComputeGlobalAddressesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AddressList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
def List(self, request, global_params=None): 'Retrieves a list of global addresses.\n\n Args:\n request: (ComputeGlobalAddressesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (AddressList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves a list of global addresses. Args: request: (ComputeGlobalAddressesListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (AddressList) The response message.<|endoftext|>
cdda55d5f9dc687681e6c3c92578ec6871478484d40bcf3c198991465889e7aa
def SetLabels(self, request, global_params=None): 'Sets the labels on a GlobalAddress. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeGlobalAddressesSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)
Sets the labels on a GlobalAddress. To learn more about labels, read the Labeling or Tagging Resources documentation. Args: request: (ComputeGlobalAddressesSetLabelsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
SetLabels
KaranToor/MA450
1
python
def SetLabels(self, request, global_params=None): 'Sets the labels on a GlobalAddress. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeGlobalAddressesSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)
def SetLabels(self, request, global_params=None): 'Sets the labels on a GlobalAddress. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeGlobalAddressesSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Sets the labels on a GlobalAddress. To learn more about labels, read the Labeling or Tagging Resources documentation. Args: request: (ComputeGlobalAddressesSetLabelsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
a7ad5a1c9c4ec535edbde18323b9c5a25f48f8757b378e21a53e61959f948226
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeGlobalAddressesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
Returns permissions that a caller has on the specified resource. Args: request: (ComputeGlobalAddressesTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
TestIamPermissions
KaranToor/MA450
1
python
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeGlobalAddressesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeGlobalAddressesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns permissions that a caller has on the specified resource. Args: request: (ComputeGlobalAddressesTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.<|endoftext|>
13996e110a83c118d566f22804a8d618fc0ccef91e2e86ce054b1463fed9e4fc
def Delete(self, request, global_params=None): 'Deletes the specified ForwardingRule resource.\n\n Args:\n request: (ComputeGlobalForwardingRulesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
Deletes the specified ForwardingRule resource. Args: request: (ComputeGlobalForwardingRulesDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Delete
KaranToor/MA450
1
python
def Delete(self, request, global_params=None): 'Deletes the specified ForwardingRule resource.\n\n Args:\n request: (ComputeGlobalForwardingRulesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
def Delete(self, request, global_params=None): 'Deletes the specified ForwardingRule resource.\n\n Args:\n request: (ComputeGlobalForwardingRulesDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Deletes the specified ForwardingRule resource. Args: request: (ComputeGlobalForwardingRulesDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
b0b063aa2d4a495089d4988dcbdd0ecd03af89fded34c18e3be729e01555380c
def Get(self, request, global_params=None): 'Returns the specified ForwardingRule resource. Get a list of available forwarding rules by making a list() request.\n\n Args:\n request: (ComputeGlobalForwardingRulesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRule) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
Returns the specified ForwardingRule resource. Get a list of available forwarding rules by making a list() request. Args: request: (ComputeGlobalForwardingRulesGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (ForwardingRule) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Get
KaranToor/MA450
1
python
def Get(self, request, global_params=None): 'Returns the specified ForwardingRule resource. Get a list of available forwarding rules by making a list() request.\n\n Args:\n request: (ComputeGlobalForwardingRulesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRule) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
def Get(self, request, global_params=None): 'Returns the specified ForwardingRule resource. Get a list of available forwarding rules by making a list() request.\n\n Args:\n request: (ComputeGlobalForwardingRulesGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRule) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns the specified ForwardingRule resource. Get a list of available forwarding rules by making a list() request. Args: request: (ComputeGlobalForwardingRulesGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (ForwardingRule) The response message.<|endoftext|>
10e031090192f351bce965a9eb6e1e9acbe0d97a8137128c165234ce7fc8a963
def Insert(self, request, global_params=None): 'Creates a ForwardingRule resource in the specified project and region using the data included in the request.\n\n Args:\n request: (ComputeGlobalForwardingRulesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
Creates a ForwardingRule resource in the specified project and region using the data included in the request. Args: request: (ComputeGlobalForwardingRulesInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Insert
KaranToor/MA450
1
python
def Insert(self, request, global_params=None): 'Creates a ForwardingRule resource in the specified project and region using the data included in the request.\n\n Args:\n request: (ComputeGlobalForwardingRulesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)
def Insert(self, request, global_params=None): 'Creates a ForwardingRule resource in the specified project and region using the data included in the request.\n\n Args:\n request: (ComputeGlobalForwardingRulesInsertRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Insert') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Creates a ForwardingRule resource in the specified project and region using the data included in the request. Args: request: (ComputeGlobalForwardingRulesInsertRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
3253d749da1b99b8d03682184c2219b3baaab5b159b9a01d589b8705bb0333b9
def List(self, request, global_params=None): 'Retrieves a list of ForwardingRule resources available to the specified project.\n\n Args:\n request: (ComputeGlobalForwardingRulesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRuleList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
Retrieves a list of ForwardingRule resources available to the specified project. Args: request: (ComputeGlobalForwardingRulesListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (ForwardingRuleList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
List
KaranToor/MA450
1
python
def List(self, request, global_params=None): 'Retrieves a list of ForwardingRule resources available to the specified project.\n\n Args:\n request: (ComputeGlobalForwardingRulesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRuleList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
def List(self, request, global_params=None): 'Retrieves a list of ForwardingRule resources available to the specified project.\n\n Args:\n request: (ComputeGlobalForwardingRulesListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ForwardingRuleList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves a list of ForwardingRule resources available to the specified project. Args: request: (ComputeGlobalForwardingRulesListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (ForwardingRuleList) The response message.<|endoftext|>
72516da62f19b6d36474997addc0199d32920836f160924d2171362a3278e7fc
def SetLabels(self, request, global_params=None): 'Sets the labels on the specified resource. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeGlobalForwardingRulesSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)
Sets the labels on the specified resource. To learn more about labels, read the Labeling or Tagging Resources documentation. Args: request: (ComputeGlobalForwardingRulesSetLabelsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
SetLabels
KaranToor/MA450
1
python
def SetLabels(self, request, global_params=None): 'Sets the labels on the specified resource. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeGlobalForwardingRulesSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)
def SetLabels(self, request, global_params=None): 'Sets the labels on the specified resource. To learn more about labels, read the Labeling or Tagging Resources documentation.\n\n Args:\n request: (ComputeGlobalForwardingRulesSetLabelsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetLabels') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Sets the labels on the specified resource. To learn more about labels, read the Labeling or Tagging Resources documentation. Args: request: (ComputeGlobalForwardingRulesSetLabelsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
d408559289cb1cd254aa74e88684e9ccfb81c542fa06769142f6c4df50cc0c6c
def SetTarget(self, request, global_params=None): 'Changes target URL for forwarding rule. The new target should be of the same type as the old target.\n\n Args:\n request: (ComputeGlobalForwardingRulesSetTargetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetTarget') return self._RunMethod(config, request, global_params=global_params)
Changes target URL for forwarding rule. The new target should be of the same type as the old target. Args: request: (ComputeGlobalForwardingRulesSetTargetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
SetTarget
KaranToor/MA450
1
python
def SetTarget(self, request, global_params=None): 'Changes target URL for forwarding rule. The new target should be of the same type as the old target.\n\n Args:\n request: (ComputeGlobalForwardingRulesSetTargetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetTarget') return self._RunMethod(config, request, global_params=global_params)
def SetTarget(self, request, global_params=None): 'Changes target URL for forwarding rule. The new target should be of the same type as the old target.\n\n Args:\n request: (ComputeGlobalForwardingRulesSetTargetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('SetTarget') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Changes target URL for forwarding rule. The new target should be of the same type as the old target. Args: request: (ComputeGlobalForwardingRulesSetTargetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
29f66fbd88456cdcf3432a3f20a5e381f91efcfcfb0c0f4259a8b1977f9ac18c
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeGlobalForwardingRulesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
Returns permissions that a caller has on the specified resource. Args: request: (ComputeGlobalForwardingRulesTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
TestIamPermissions
KaranToor/MA450
1
python
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeGlobalForwardingRulesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)
def TestIamPermissions(self, request, global_params=None): 'Returns permissions that a caller has on the specified resource.\n\n Args:\n request: (ComputeGlobalForwardingRulesTestIamPermissionsRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (TestPermissionsResponse) The response message.\n ' config = self.GetMethodConfig('TestIamPermissions') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns permissions that a caller has on the specified resource. Args: request: (ComputeGlobalForwardingRulesTestIamPermissionsRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (TestPermissionsResponse) The response message.<|endoftext|>
d9569202af8b07ecb6b4b8f445a279a2842f4375c75550965ccd184e4570f550
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of all operations.\n\n Args:\n request: (ComputeGlobalOperationsAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (OperationAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
Retrieves an aggregated list of all operations. Args: request: (ComputeGlobalOperationsAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (OperationAggregatedList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
AggregatedList
KaranToor/MA450
1
python
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of all operations.\n\n Args:\n request: (ComputeGlobalOperationsAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (OperationAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)
def AggregatedList(self, request, global_params=None): 'Retrieves an aggregated list of all operations.\n\n Args:\n request: (ComputeGlobalOperationsAggregatedListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (OperationAggregatedList) The response message.\n ' config = self.GetMethodConfig('AggregatedList') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves an aggregated list of all operations. Args: request: (ComputeGlobalOperationsAggregatedListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (OperationAggregatedList) The response message.<|endoftext|>
f14c04bd68bf393acb84772306f071f6a8401197c4ed60f2853bf824be0e50c1
def Delete(self, request, global_params=None): 'Deletes the specified Operations resource.\n\n Args:\n request: (ComputeGlobalOperationsDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ComputeGlobalOperationsDeleteResponse) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
Deletes the specified Operations resource. Args: request: (ComputeGlobalOperationsDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (ComputeGlobalOperationsDeleteResponse) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Delete
KaranToor/MA450
1
python
def Delete(self, request, global_params=None): 'Deletes the specified Operations resource.\n\n Args:\n request: (ComputeGlobalOperationsDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ComputeGlobalOperationsDeleteResponse) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
def Delete(self, request, global_params=None): 'Deletes the specified Operations resource.\n\n Args:\n request: (ComputeGlobalOperationsDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (ComputeGlobalOperationsDeleteResponse) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Deletes the specified Operations resource. Args: request: (ComputeGlobalOperationsDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (ComputeGlobalOperationsDeleteResponse) The response message.<|endoftext|>
c28257dcaa74dbb74b24458d1f7917bf4e7bfa4213ee00ea303ce3d5ab5a036a
def Get(self, request, global_params=None): 'Retrieves the specified Operations resource. Get a list of operations by making a list() request.\n\n Args:\n request: (ComputeGlobalOperationsGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
Retrieves the specified Operations resource. Get a list of operations by making a list() request. Args: request: (ComputeGlobalOperationsGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Get
KaranToor/MA450
1
python
def Get(self, request, global_params=None): 'Retrieves the specified Operations resource. Get a list of operations by making a list() request.\n\n Args:\n request: (ComputeGlobalOperationsGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
def Get(self, request, global_params=None): 'Retrieves the specified Operations resource. Get a list of operations by making a list() request.\n\n Args:\n request: (ComputeGlobalOperationsGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves the specified Operations resource. Get a list of operations by making a list() request. Args: request: (ComputeGlobalOperationsGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
333f2dbef4f9752f51d865e47b5a025d7beb48ba5e9dbd7bffaa643976647947
def List(self, request, global_params=None): 'Retrieves a list of Operation resources contained within the specified project.\n\n Args:\n request: (ComputeGlobalOperationsListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (OperationList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
Retrieves a list of Operation resources contained within the specified project. Args: request: (ComputeGlobalOperationsListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (OperationList) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
List
KaranToor/MA450
1
python
def List(self, request, global_params=None): 'Retrieves a list of Operation resources contained within the specified project.\n\n Args:\n request: (ComputeGlobalOperationsListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (OperationList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)
def List(self, request, global_params=None): 'Retrieves a list of Operation resources contained within the specified project.\n\n Args:\n request: (ComputeGlobalOperationsListRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (OperationList) The response message.\n ' config = self.GetMethodConfig('List') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Retrieves a list of Operation resources contained within the specified project. Args: request: (ComputeGlobalOperationsListRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (OperationList) The response message.<|endoftext|>
75a94aaa31c5900342cf37a8a1680705af97293e0816fb7f980f8193950fc50d
def Delete(self, request, global_params=None): 'Deletes the specified HealthCheck resource.\n\n Args:\n request: (ComputeHealthChecksDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
Deletes the specified HealthCheck resource. Args: request: (ComputeHealthChecksDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Delete
KaranToor/MA450
1
python
def Delete(self, request, global_params=None): 'Deletes the specified HealthCheck resource.\n\n Args:\n request: (ComputeHealthChecksDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)
def Delete(self, request, global_params=None): 'Deletes the specified HealthCheck resource.\n\n Args:\n request: (ComputeHealthChecksDeleteRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (Operation) The response message.\n ' config = self.GetMethodConfig('Delete') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Deletes the specified HealthCheck resource. Args: request: (ComputeHealthChecksDeleteRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (Operation) The response message.<|endoftext|>
04ff7709ec44a89419e831dcea6a857886698ae08386a75daa97dd08e1c86b25
def Get(self, request, global_params=None): 'Returns the specified HealthCheck resource. Get a list of available health checks by making a list() request.\n\n Args:\n request: (ComputeHealthChecksGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (HealthCheck) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
Returns the specified HealthCheck resource. Get a list of available health checks by making a list() request. Args: request: (ComputeHealthChecksGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (HealthCheck) The response message.
google-cloud-sdk/.install/.backup/lib/googlecloudsdk/third_party/apis/compute/alpha/compute_alpha_client.py
Get
KaranToor/MA450
1
python
def Get(self, request, global_params=None): 'Returns the specified HealthCheck resource. Get a list of available health checks by making a list() request.\n\n Args:\n request: (ComputeHealthChecksGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (HealthCheck) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)
def Get(self, request, global_params=None): 'Returns the specified HealthCheck resource. Get a list of available health checks by making a list() request.\n\n Args:\n request: (ComputeHealthChecksGetRequest) input message\n global_params: (StandardQueryParameters, default: None) global arguments\n Returns:\n (HealthCheck) The response message.\n ' config = self.GetMethodConfig('Get') return self._RunMethod(config, request, global_params=global_params)<|docstring|>Returns the specified HealthCheck resource. Get a list of available health checks by making a list() request. Args: request: (ComputeHealthChecksGetRequest) input message global_params: (StandardQueryParameters, default: None) global arguments Returns: (HealthCheck) The response message.<|endoftext|>