Home
last modified time | relevance | path

Searched refs:application_key_id (Results 1 – 25 of 27) sorted by relevance

12

/dports/devel/py-b2sdk/b2sdk-1.12.0/b2sdk/v1/
H A Daccount_info.py48 application_key_id=None, argument
69 application_key_id=application_key_id,
87 application_key_id=None argument
103 application_key_id=application_key_id,
157 realm, s3_api_url, allowed, application_key_id argument
H A Dsession.py41 def authorize_account(self, realm, application_key_id, application_key): argument
51 response = self.raw_api.authorize_account(realm_url, application_key_id, application_key)
70 application_key_id=application_key_id
H A Dapi.py205 def delete_key(self, application_key_id): argument
206 return super().delete_key_by_id(application_key_id).as_dict()
/dports/devel/py-b2sdk/b2sdk-1.12.0/b2sdk/
H A Dapplication_key.py20 application_key_id: str,
39 self.id_ = application_key_id
104 application_key_id: str,
127 application_key_id=application_key_id,
H A Dapi.py154 def authorize_account(self, realm, application_key_id, application_key): argument
162 self.session.authorize_account(realm, application_key_id, application_key)
465 def delete_key_by_id(self, application_key_id: str):
472 response = self.session.delete_key(application_key_id=application_key_id)
H A Dsession.py103 def authorize_account(self, realm, application_key_id, application_key): argument
113 response = self.raw_api.authorize_account(realm_url, application_key_id, application_key)
133 application_key_id=application_key_id
175 def delete_key(self, application_key_id): argument
176 return self._wrap_default_token(self.raw_api.delete_key, application_key_id)
H A Draw_simulator.py82 self.application_key_id = application_key_id
93 applicationKeyId=self.application_key_id,
1100 application_key_id=account_id,
1122 key_sim = self.key_id_to_key.get(application_key_id)
1217 application_key_id = 'appKeyId%d' % (index,)
1226 application_key_id=application_key_id,
1234 self.key_id_to_key[application_key_id] = key_sim
1323 def delete_key(self, api_url, account_auth_token, application_key_id): argument
1325 key_sim = self.key_id_to_key.pop(application_key_id, None)
1328 'application key does not exist: %s' % (application_key_id,),
[all …]
H A Draw_api.py73 def authorize_account(self, realm_url, application_key_id, application_key): argument
147 def delete_key(self, api_url, account_auth_token, application_key_id): argument
370 def authorize_account(self, realm_url, application_key_id, application_key): argument
372 ('%s:%s' % (application_key_id, application_key)).encode()
451 def delete_key(self, api_url, account_auth_token, application_key_id): argument
456 applicationKeyId=application_key_id,
/dports/devel/py-b2sdk/b2sdk-1.12.0/test/integration/
H A D__init__.py14 application_key_id = os.environ.get('B2_TEST_APPLICATION_KEY_ID')
15 if application_key_id is None:
21 return application_key_id, application_key
H A Dtest_raw_api.py41 application_key_id = os.environ.get('B2_TEST_APPLICATION_KEY_ID')
42 if application_key_id is None:
60 application_key_id = os.environ.get('B2_TEST_APPLICATION_KEY_ID')
61 if application_key_id is None:
72 auth_dict = raw_api.authorize_account(realm_url, application_key_id, application_key)
/dports/devel/py-b2sdk/b2sdk-1.12.0/b2sdk/account_info/
H A Dabstract.py103 def is_same_key(self, application_key_id, realm): argument
112 return self.get_application_key_id() == application_key_id and self.get_realm() == realm
244 application_key_id, argument
302 application_key_id
326 absolute_minimum_part_size, application_key, realm, s3_api_url, allowed, application_key_id argument
H A Dstub.py36 self.application_key_id = None
56 application_key_id, argument
68 self.application_key_id = application_key_id
95 return self.application_key_id
H A Din_memory.py65 absolute_minimum_part_size, application_key, realm, s3_api_url, allowed, application_key_id argument
68 self._application_key_id = application_key_id
H A Dsqlite_account_info.py373 application_key_id, argument
390 application_key_id,
/dports/devel/py-b2sdk/b2sdk-1.12.0/b2sdk/v0/
H A Daccount_info.py45 application_key_id=None, argument
59 application_key_id,
/dports/devel/py-b2sdk/b2sdk-1.12.0/test/unit/account_info/
H A Dfixtures.py34 application_key_id='application_key_id',
40 application_key_id='application_key_id',
H A Dtest_account_info.py58 def test_is_same_key(self, application_key_id, realm, expected): argument
62 assert account_info.is_same_key(application_key_id, realm) is expected
244 application_key_id='key_id'
277 application_key_id='key_id',
/dports/devel/py-b2sdk/b2sdk-1.12.0/test/unit/
H A Dtest_session.py37 application_key_id='123',
52 application_key_id='123',
/dports/devel/py-b2sdk/b2sdk-1.12.0/test/unit/v_all/
H A Dtest_api.py33 (self.application_key_id, self.master_key) = self.raw_api.create_account()
36 self.api.authorize_account('production', self.application_key_id, self.master_key)
/dports/devel/b2/B2_Command_Line_Tool-1.3.8/b2/
H A Dapi.py312 def delete_key(self, application_key_id): argument
314 response = self.session.delete_key(application_key_id=application_key_id)
H A Dconsole_tool.py415 application_key_id = response['applicationKeyId']
417 self._print(application_key_id + " " + application_key)
483 response = self.api.delete_key(application_key_id=args.applicationKeyId)
H A Draw_api.py228 def delete_key(self, api_url, account_auth_token, application_key_id): argument
233 applicationKeyId=application_key_id,
/dports/devel/py-b2sdk/b2sdk-1.12.0/test/unit/file_version/
H A Dtest_file_version.py46 (self.application_key_id, self.master_key) = self.raw_api.create_account()
47 self.api.authorize_account('production', self.application_key_id, self.master_key)
/dports/devel/py-b2sdk/b2sdk-1.12.0/doc/source/
H A Dtutorial.rst34 >>> application_key_id = '4a5b6c7d8e9f'
36 >>> b2_api.authorize_account("production", application_key_id, application_key)
/dports/devel/py-b2sdk/b2sdk-1.12.0/test/unit/api/
H A Dtest_api.py51 (self.application_key_id, self.master_key) = self.raw_api.create_account()
273 self.api.authorize_account('production', self.application_key_id, self.master_key)

12