当前位置: 首页>>代码示例>>Python>>正文


Python ProductSearchClient.product_set_path方法代码示例

本文整理汇总了Python中google.cloud.vision_v1.ProductSearchClient.product_set_path方法的典型用法代码示例。如果您正苦于以下问题:Python ProductSearchClient.product_set_path方法的具体用法?Python ProductSearchClient.product_set_path怎么用?Python ProductSearchClient.product_set_path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在google.cloud.vision_v1.ProductSearchClient的用法示例。


在下文中一共展示了ProductSearchClient.product_set_path方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_update_productset_no_explicit_name

# 需要导入模块: from google.cloud.vision_v1 import ProductSearchClient [as 别名]
# 或者: from google.cloud.vision_v1.ProductSearchClient import product_set_path [as 别名]
 def test_update_productset_no_explicit_name(self, get_conn):
     # Given
     product_set = ProductSet()
     update_product_set_method = get_conn.return_value.update_product_set
     update_product_set_method.return_value = product_set
     productset_name = ProductSearchClient.product_set_path(
         PROJECT_ID_TEST, LOC_ID_TEST, PRODUCTSET_ID_TEST
     )
     # When
     result = self.hook.update_product_set(
         location=LOC_ID_TEST,
         product_set_id=PRODUCTSET_ID_TEST,
         product_set=product_set,
         update_mask=None,
         project_id=PROJECT_ID_TEST,
         retry=None,
         timeout=None,
         metadata=None,
     )
     # Then
     self.assertEqual(result, MessageToDict(product_set))
     update_product_set_method.assert_called_once_with(
         product_set=ProductSet(name=productset_name),
         metadata=None,
         retry=None,
         timeout=None,
         update_mask=None,
     )
开发者ID:Fokko,项目名称:incubator-airflow,代码行数:30,代码来源:test_gcp_vision_hook.py

示例2: test_update_productset_explicit_name_missing_params_for_constructed_name

# 需要导入模块: from google.cloud.vision_v1 import ProductSearchClient [as 别名]
# 或者: from google.cloud.vision_v1.ProductSearchClient import product_set_path [as 别名]
 def test_update_productset_explicit_name_missing_params_for_constructed_name(
     self, location, product_set_id, get_conn
 ):
     # Given
     explicit_ps_name = ProductSearchClient.product_set_path(
         PROJECT_ID_TEST_2, LOC_ID_TEST_2, PRODUCTSET_ID_TEST_2
     )
     product_set = ProductSet(name=explicit_ps_name)
     update_product_set_method = get_conn.return_value.update_product_set
     update_product_set_method.return_value = product_set
     # When
     result = self.hook.update_product_set(
         location=location,
         product_set_id=product_set_id,
         product_set=product_set,
         update_mask=None,
         project_id=PROJECT_ID_TEST,
         retry=None,
         timeout=None,
         metadata=None,
     )
     # Then
     self.assertEqual(result, MessageToDict(product_set))
     update_product_set_method.assert_called_once_with(
         product_set=ProductSet(name=explicit_ps_name),
         metadata=None,
         retry=None,
         timeout=None,
         update_mask=None,
     )
开发者ID:Fokko,项目名称:incubator-airflow,代码行数:32,代码来源:test_gcp_vision_hook.py

示例3: test_create_productset_autogenerated_id

# 需要导入模块: from google.cloud.vision_v1 import ProductSearchClient [as 别名]
# 或者: from google.cloud.vision_v1.ProductSearchClient import product_set_path [as 别名]
 def test_create_productset_autogenerated_id(self, get_conn):
     # Given
     autogenerated_id = 'autogen-id'
     response_product_set = ProductSet(
         name=ProductSearchClient.product_set_path(PROJECT_ID_TEST, LOC_ID_TEST, autogenerated_id)
     )
     create_product_set_method = get_conn.return_value.create_product_set
     create_product_set_method.return_value = response_product_set
     parent = ProductSearchClient.location_path(PROJECT_ID_TEST, LOC_ID_TEST)
     product_set = ProductSet()
     # When
     result = self.hook.create_product_set(
         location=LOC_ID_TEST, product_set_id=None, product_set=product_set, project_id=PROJECT_ID_TEST
     )
     # Then
     # ProductSet ID was not provided in the method call above. Should be extracted from the API response
     # and returned.
     self.assertEqual(result, autogenerated_id)
     create_product_set_method.assert_called_once_with(
         parent=parent,
         product_set=product_set,
         product_set_id=None,
         retry=None,
         timeout=None,
         metadata=None,
     )
开发者ID:Fokko,项目名称:incubator-airflow,代码行数:28,代码来源:test_gcp_vision_hook.py

示例4: remove_product_from_product_set

# 需要导入模块: from google.cloud.vision_v1 import ProductSearchClient [as 别名]
# 或者: from google.cloud.vision_v1.ProductSearchClient import product_set_path [as 别名]
    def remove_product_from_product_set(
        self,
        product_set_id,
        product_id,
        location=None,
        project_id=None,
        retry=None,
        timeout=None,
        metadata=None,
    ):
        """
        For the documentation see:
        :py:class:`~airflow.contrib.operators.gcp_vision_operator.CloudVisionRemoveProductFromProductSetOperator`
        """
        client = self.get_conn()

        product_name = ProductSearchClient.product_path(project_id, location, product_id)
        product_set_name = ProductSearchClient.product_set_path(project_id, location, product_set_id)

        self.log.info('Remove Product[name=%s] from Product Set[name=%s]', product_name, product_set_name)

        client.remove_product_from_product_set(
            name=product_set_name, product=product_name, retry=retry, timeout=timeout, metadata=metadata
        )

        self.log.info('Product removed from Product Set')
开发者ID:sekikn,项目名称:incubator-airflow,代码行数:28,代码来源:gcp_vision_hook.py

示例5: test_delete_productset

# 需要导入模块: from google.cloud.vision_v1 import ProductSearchClient [as 别名]
# 或者: from google.cloud.vision_v1.ProductSearchClient import product_set_path [as 别名]
 def test_delete_productset(self, get_conn):
     # Given
     delete_product_set_method = get_conn.return_value.delete_product_set
     delete_product_set_method.return_value = None
     name = ProductSearchClient.product_set_path(PROJECT_ID_TEST, LOC_ID_TEST, PRODUCTSET_ID_TEST)
     # When
     response = self.hook.delete_product_set(
         location=LOC_ID_TEST, product_set_id=PRODUCTSET_ID_TEST, project_id=PROJECT_ID_TEST
     )
     # Then
     self.assertIsNone(response)
     delete_product_set_method.assert_called_once_with(name=name, retry=None, timeout=None, metadata=None)
开发者ID:Fokko,项目名称:incubator-airflow,代码行数:14,代码来源:test_gcp_vision_hook.py

示例6: delete_product_set

# 需要导入模块: from google.cloud.vision_v1 import ProductSearchClient [as 别名]
# 或者: from google.cloud.vision_v1.ProductSearchClient import product_set_path [as 别名]
 def delete_product_set(
     self, location, product_set_id, project_id=None, retry=None, timeout=None, metadata=None
 ):
     """
     For the documentation see:
     :class:`~airflow.contrib.operators.gcp_vision_operator.CloudVisionProductSetDeleteOperator`
     """
     client = self.get_conn()
     name = ProductSearchClient.product_set_path(project_id, location, product_set_id)
     self.log.info('Deleting ProductSet: %s', name)
     client.delete_product_set(name=name, retry=retry, timeout=timeout, metadata=metadata)
     self.log.info('ProductSet with the name [%s] deleted.', name)
开发者ID:sekikn,项目名称:incubator-airflow,代码行数:14,代码来源:gcp_vision_hook.py

示例7: test_update_productset_explicit_name_different_from_constructed

# 需要导入模块: from google.cloud.vision_v1 import ProductSearchClient [as 别名]
# 或者: from google.cloud.vision_v1.ProductSearchClient import product_set_path [as 别名]
 def test_update_productset_explicit_name_different_from_constructed(self, get_conn):
     # Given
     update_product_set_method = get_conn.return_value.update_product_set
     update_product_set_method.return_value = None
     hook = self.vision_hook_default_project_id
     explicit_ps_name = ProductSearchClient.product_set_path(
         PROJECT_ID_TEST_2, LOC_ID_TEST_2, PRODUCTSET_ID_TEST_2
     )
     product_set = ProductSet(name=explicit_ps_name)
     template_ps_name = ProductSearchClient.product_set_path(
         PROJECT_ID_TEST, LOC_ID_TEST, PRODUCTSET_ID_TEST
     )
     # When
     # Location and product_set_id are passed in addition to a ProductSet with an explicit name,
     # but both names differ (constructed != explicit).
     # Should throw AirflowException in this case.
     with self.assertRaises(AirflowException) as cm:
         hook.update_product_set(
             location=LOC_ID_TEST,
             product_set_id=PRODUCTSET_ID_TEST,
             product_set=product_set,
             update_mask=None,
             project_id=PROJECT_ID_TEST,
             retry=None,
             timeout=None,
             metadata=None,
         )
     err = cm.exception
     # self.assertIn("The required parameter 'project_id' is missing", str(err))
     self.assertTrue(err)
     self.assertIn(
         "The ProductSet name provided in the object ({}) is different than the name "
         "created from the input parameters ({}). Please either: 1) Remove the ProductSet "
         "name, 2) Remove the location and productset_id parameters, 3) Unify the "
         "ProductSet name and input parameters.".format(explicit_ps_name, template_ps_name),
         str(err),
     )
     update_product_set_method.assert_not_called()
开发者ID:wooga,项目名称:airflow,代码行数:40,代码来源:test_gcp_vision_hook.py

示例8: test_get_productset

# 需要导入模块: from google.cloud.vision_v1 import ProductSearchClient [as 别名]
# 或者: from google.cloud.vision_v1.ProductSearchClient import product_set_path [as 别名]
 def test_get_productset(self, get_conn):
     # Given
     name = ProductSearchClient.product_set_path(PROJECT_ID_TEST, LOC_ID_TEST, PRODUCTSET_ID_TEST)
     response_product_set = ProductSet(name=name)
     get_product_set_method = get_conn.return_value.get_product_set
     get_product_set_method.return_value = response_product_set
     # When
     response = self.hook.get_product_set(
         location=LOC_ID_TEST, product_set_id=PRODUCTSET_ID_TEST, project_id=PROJECT_ID_TEST
     )
     # Then
     self.assertTrue(response)
     self.assertEqual(response, MessageToDict(response_product_set))
     get_product_set_method.assert_called_once_with(name=name, retry=None, timeout=None, metadata=None)
开发者ID:Fokko,项目名称:incubator-airflow,代码行数:16,代码来源:test_gcp_vision_hook.py

示例9: get_product_set

# 需要导入模块: from google.cloud.vision_v1 import ProductSearchClient [as 别名]
# 或者: from google.cloud.vision_v1.ProductSearchClient import product_set_path [as 别名]
 def get_product_set(
     self, location, product_set_id, project_id=None, retry=None, timeout=None, metadata=None
 ):
     """
     For the documentation see:
     :class:`~airflow.contrib.operators.gcp_vision_operator.CloudVisionProductSetGetOperator`
     """
     client = self.get_conn()
     name = ProductSearchClient.product_set_path(project_id, location, product_set_id)
     self.log.info('Retrieving ProductSet: %s', name)
     response = client.get_product_set(name=name, retry=retry, timeout=timeout, metadata=metadata)
     self.log.info('ProductSet retrieved.')
     self.log.debug('ProductSet retrieved:\n%s', response)
     return MessageToDict(response)
开发者ID:sekikn,项目名称:incubator-airflow,代码行数:16,代码来源:gcp_vision_hook.py

示例10: _get_entity_name

# 需要导入模块: from google.cloud.vision_v1 import ProductSearchClient [as 别名]
# 或者: from google.cloud.vision_v1.ProductSearchClient import product_set_path [as 别名]
 def _get_entity_name(is_product, project_id, location, entity_id):
     if is_product:
         return ProductSearchClient.product_path(project_id, location, entity_id)
     else:
         return ProductSearchClient.product_set_path(project_id, location, entity_id)
开发者ID:wooga,项目名称:airflow,代码行数:7,代码来源:gcp_vision_hook.py


注:本文中的google.cloud.vision_v1.ProductSearchClient.product_set_path方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。