常见问题

leda_register_and_online_by_device_name leda_register_and_online_by_local_name 有什么区别?答:by_device_name 表示用此接口实现设备注册的设备名称device_name,必须与在阿里云物联网平台创建设备时的名称一样。by_local_name ...

常见问题

leda_register_and_online_by_device_name leda_register_and_online_by_local_name 有什么区别?答:by_device_name 表示用此接口实现设备注册的设备名称device_name,必须与在阿里云物联网平台创建设备时的名称一样。by_local_name ...

Fn:Jq

您需要根据过滤器条件先查看Key为parameters的值,再在返回值中查找满足Key为name和Key为type的值作为最终返回值,当条件中的值不存在时则为null。Jq-All-'.parameters[]|{"param_name":.name,"param_type":.type}'-changeSet:items:[]kind...

模型推理

如何配置ANOMALY_DETECT函数中的field_name、model_name和params,请参见 ANOMALY_DETECT函数(时序异常检测)。返回值说明 任务类型 返回值类型 返回值说明 时序预测 DOUBLE 时序预测结果。时序异常检测 BOOLEAN 时序异常检测结果。具体...

分词模糊查询使用指南

其中,name name_1 字段为非分词字段类型,SQL语句中不添加 LIMIT 关键字时,默认最多查询10000条数据。分词查询(match_text查询)分词查询示例如下:/*polar4ai*/SELECT*FROM table_name WHERE match_text(content,'创')AND type=1 ...

ALTER SUBSCRIPTION

允许的选项是 slot_name synchronous_commit。new_owner 订阅的新所有者的用户名。new_name 订阅的新名称。示例 将订阅的发布更改为 insert_only:ALTER SUBSCRIPTION mysub SET PUBLICATION insert_only;禁用(停止)订阅:ALTER ...

明文密文的转换

明文转换密文时,可仅配置 column_name 参数,或可同时配置 column_name keyname。表 1.类型转换函数说明 明文类型 密文类型 明文到密文转换函数 密文到明文转换函数 int4 enc_int4 encdb.enc_int4_encrypt encdb.decrypt int8 enc_int8...

明文密文的转换

明文转换密文时,可仅配置 column_name 参数,或可同时配置 column_name keyname。表 1.类型转换函数说明 明文类型 密文类型 明文到密文转换函数 密文到明文转换函数 int4 enc_int4 encdb.enc_int4_encrypt encdb.decrypt int8 enc_int8...

CREATE FOREIGN TABLE

OPTIONS 您需要指定 project_name table_name。如果您MaxCompute的Project是三层模型模式,您仍使用两层模型的写法调用,则会报错,报错样例如下。failed to import foreign schema:Table not found-table_xxx MaxCompute两层模型:...

配置文件说明

app_name app_name_prefix都定义了的情况下,以app_name为准。area_id:"cn-hangzhou" # 模板的地域。一个模板有多个地域的版本,指定area_id可以指定某个地域版本。resource_group_id:"rg-oiwerlasdfiwer"#资源组ID,指定资源组ID可以将...

自定义 OAM 模板

包含组件所有可配置的参数,可在appconfig中component[].parameterValues处通过name和value进行配置 parameters:name:imageName#参数名称:每个组件内必须唯一 required:false#在appconfig中配置该组件时是否必须提供value fieldPaths:#...

流程定义介绍

true 重要 YAML格式的同一个流程定义中,字段Name的值不能重复,包括代表流程名称的Name和代表状态名称的Name。状态作用域 云工作流 的状态(State)之间可以组合嵌套,作用域则是支撑复杂逻辑嵌套的基础。如果一个状态包含另一个状态,则...

排序、去重、采样、数据变换

df.min_max_scale(columns=['fid'],group=['name'])name id fid 0 name1 4 1.000000 1 name1 4 0.645161 2 name1 3 0.000000 3 name1 3 0.612903 4 name2 2 1.000000 5 name2 3 0.000000 结果显示,name1 name2 两组均按组中的最值进行...

使用cqlsh访问Cassandra

其中包含了first_name和last_name两个字段,类型都是text,并且first_name是这张表的PRIMARY KEY。当然,您也可以通过下述命令在test_keyspace里面建表:cqlsh>CREATE TABLE test_keyspace.test_user(first_name text,last_name text,...

ALTER TABLE

命令格式 增加表的Hash聚簇属性的语法格式如下:alter table<table_name>[clustered by(<col_name>[,<col_name>,.])[sorted by(<col_name>[asc|desc][,<col_name>[asc|desc].])]into<number_of_buckets>buckets];去除表的Hash聚簇属性的...

分区列操作

MaxCompute支持对已有表的分区列执行变更操作,如添加分区、添加列、删除列、更改列数据类型等,您可以根据实际业务场景执行相应操作。MaxCompute SQL的分区列操作命令如下。类型 操作 功能 角色 操作入口 分区操作 添加分区 为已存在...

menu

必须包含 mode name 字段。mode:是否嵌套了二级菜单,"single"表示仅有一级菜单,"multiple"表示有二级菜单。name:菜单名。值说明 条件 数据类型 示例 默认值 不涉及 object"options":{"menuA":{"switch":true },"menuB":{"menuB1":{...

menu

必须包含 mode name 字段。mode:是否嵌套了二级菜单,"single"表示仅有一级菜单,"multiple"表示有二级菜单。name:菜单名。值说明 条件 数据类型 示例 默认值 不涉及 object"options":{"menuA":{"switch":true },"menuB":{"menuB1":{...

记录变量

获取表的完整行定义,包括id和name CURSOR cur IS SELECT id FROM test;r2 cur%ROWTYPE;获取表的行定义的id列 BEGIN r1.id=1;r1.name='a';r2.id=2;RAISE NOTICE 'r1.id:%,r1.name:%',r1.id,r1.name;RAISE NOTICE 'r2.id:%',r2.id;END;结果...

元数据仓库共享模型(Hadoop)

数据标准规则表dim_dataphin_datastandard_rule新增standard_template_id、standard_template_name、standard_set_ids字段,废弃standard_set_id、standard_set_name字段。数据标准与资产映射结果表dim_dataphin_datastandard_asset_...

元数据仓库共享模型(MaxCompute)

数据标准规则表dim_dataphin_datastandard_rule新增standard_template_id、standard_template_name、standard_set_ids字段,废弃standard_set_id、standard_set_name字段。数据标准与资产映射结果表dim_dataphin_datastandard_asset_...

alicloud_cr_namespaces

ids-A list of matched Container Registry namespaces.Its element is a namespace name.names-A list of namespace names.namespaces-A list of matched Container Registry namespaces.Each element contains the following attributes:...

alicloud_kms_aliases

ids-A list of kms aliases IDs.The value is same as KMS alias_name.names-A list of KMS alias name.aliases-A list of KMS User alias.Each element contains the following attributes:id-ID of the alias.The value is same as KMS ...

alicloud_actiontrail_trails

ids-A list of ActionTrail Trail ids.It is the same as trail name.names-A list of trail names.actiontrails-Field actiontrails has been deprecated from version 1.95.0.Use trails instead."trails-A list of ActionTrail Trails....

alicloud_oos_templates

ids-A list of OOS Template ids.Each element in the list is same as template_name.names-(Available in v1.114.0+)A list of OOS Template names.templates-A list of OOS Templates.Each element contains the following attributes:...

alicloud_kms_secrets

ids-A list of Kms Secret ids.The value is same as KMS secret_name.names-A list of KMS Secret names.secrets-A list of KMS Secrets.Each element contains the following attributes:id-ID of the Kms Secret.The value is same as ...

alicloud_waf_domains

value as domain_name.names-A list of WAF domain names.domains-A list of Domains.Each element contains the following attributes:domain-Field domain has been deprecated from version 1.94.0.Use domain_name instead.domain_name...

alicloud_alb_ascripts

name-(ForceNew,Optional)Script name.listener_id-(ForceNew,Optional)Listener ID of script attribution names-(Optional,ForceNew)The name of the AScript.You can specify at most 10 names.name_regex-(Optional,ForceNew)A regex ...

alicloud_service_catalog_portfolios

ids-(Optional,ForceNew,Computed)A list of Portfolio IDs.portfolio_names-(Optional,ForceNew)The name of the Portfolio.You can specify at most 10 names.name_regex-(Optional,ForceNew)A regex string to filter results by Group ...

alicloud_service_catalog_product_versions

product_id-(Required,ForceNew)Product ID ids-(Optional,ForceNew,Computed)A list of Product Version IDs.product_version_names-(Optional,ForceNew)The name of the Product Version.You can specify at most 10 names.name_regex-...

alicloud_threat_detection_baseline_strategies

Computed)A list of Baseline Strategy IDs.baseline_strategy_names-(Optional,ForceNew)The name of the Baseline Strategy.You can specify at most 10 names.name_regex-(Optional,ForceNew)A regex string to filter results by Group...

名称管理器

获取名称对象,返回一个Name集合,该集合代表所有工作表特定的名称 const names=await activeSheet.Names;} 新建名称 为单元格区域定义新名称。语法 表达式.ActiveWorkbook.ActiveSheet.Names.Add({ Name,RefersTo })表达式:文档类型应用...

alicloud_mse_clusters

regex-(Optional)A regex string to filter the results by the cluster alias name.cluster_alias_name-(Optional)The alias name of MSE Cluster.status-(Optional)The status of MSE Cluster.Valid:DESTROY_FAILED,DESTROY_ING,DESTROY_...

alicloud_cen_inter_region_traffic_qos_queues

(Optional,ForceNew)The name of inter Region Traffic Qos Queue.You can specify at most 10 names.name_regex-(Optional,ForceNew)A regex string to filter results by Group Metric Rule name.output_file-(Optional)File name where ...

alicloud_threat_detection_anti_brute_force_rules

This data source provides Threat Detection Anti Brute Force Rule available to the user.What is Anti Brute Force Rule->NOTE:Available since v1.195.0.Example Usage variable"name"{ default="example_value"} resource"alicloud_...

alicloud_cloud_firewall_vpc_firewalls

(ForceNew,Optional)The name of the VPC firewall instance.ids-(Optional,ForceNew,Computed)A list of Vpc Firewall IDs.vpc_firewall_names-(Optional,ForceNew)The name of the Vpc Firewall.You can specify at most 10 names.name_...

alicloud_ebs_dedicated_block_storage_clusters

ids-(Optional,ForceNew,Computed)A list of Dedicated Block Storage Cluster IDs.dedicated_block_storage_cluster_names-(Optional,ForceNew)The name of the Dedicated Block Storage Cluster.You can specify at most 10 names.name_...

内表数据源

查询内部数据 说明 本文中的<db_name><table_name>,请根据实际信息替换。连接StarRocks,详情请参见 快速入门。如果是从MySQL客户端连接到StarRocks,连接后默认进入到 default_catalog。如果使用JDBC连接到StarRocks,连接时可通过 ...

alicloud_ecs_capacity_reservations

NOTE:Available in 1.195.0+Example Usage data"alicloud_ecs_capacity_reservations""default"{ ids=["${alicloud_ecs_capacity_reservation.default.id}"]name_regex=alicloud_ecs_capacity_reservation.default.name instance_type=...

alicloud_dcdn_waf_domains

Computed)A list of Waf Domain IDs.output_file-(Optional)File name where to save data source results(after running terraform plan).query_args-(Optional,ForceNew)The query conditions.You can filter domain names by name.Fuzzy...
共有200条 < 1 2 3 4 ... 200 >
跳转至: GO
产品推荐
云服务器 安全管家服务 安全中心
这些文档可能帮助您
云解析DNS 弹性公网IP 短信服务 人工智能平台 PAI 金融分布式架构 物联网平台
新人特惠 爆款特惠 最新活动 免费试用