tencentcloud-sdk-iss 3.0.885 → 3.0.886
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20230517/models.rb +35 -8
- metadata +1 -1
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 98babafd73d28250e0b5fa22c9a06ee94e246445
         | 
| 4 | 
            +
              data.tar.gz: 910a4c36f7fa0ed2d2ee9b54c8c28f46c750b011
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 4fbcf54cae8e3749d6665490e9f3356e46db0754277a18028602cdf344880e6d2d56766433046fe02b935baf3be6ff0bb842a871bbba7882973677bec9a98c25
         | 
| 7 | 
            +
              data.tar.gz: 86d60512e8d9520092e03b315b42409ddf9e5b353bc42df3a3fb181c26899b5ac49a582a16c60ac12b33e555e909ba0381eeff602a89896624b49a4b80922483
         | 
    
        data/lib/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            3.0. | 
| 1 | 
            +
            3.0.886
         | 
    
        data/lib/v20230517/models.rb
    CHANGED
    
    | @@ -1167,10 +1167,14 @@ module TencentCloud | |
| 1167 1167 | 
             
                    # @type Username: String
         | 
| 1168 1168 | 
             
                    # @param SNCode: 设备 SN,仅IVCP 协议设备需要
         | 
| 1169 1169 | 
             
                    # @type SNCode: String
         | 
| 1170 | 
            +
                    # @param AppName: RTMP推流地址自定义AppName(仅RTMP需要,支持英文、数字组合限制32个字符内)
         | 
| 1171 | 
            +
                    # @type AppName: String
         | 
| 1172 | 
            +
                    # @param StreamName: RTMP推流地址自定义StreamName(仅RTMP需要,支持英文、数字组合限制32个字符内)
         | 
| 1173 | 
            +
                    # @type StreamName: String
         | 
| 1170 1174 |  | 
| 1171 | 
            -
                    attr_accessor :Name, :AccessProtocol, :Type, :OrganizationId, :ClusterId, :TransportProtocol, :Password, :Description, :GatewayId, :ProtocolType, :Ip, :Port, :Username, :SNCode
         | 
| 1175 | 
            +
                    attr_accessor :Name, :AccessProtocol, :Type, :OrganizationId, :ClusterId, :TransportProtocol, :Password, :Description, :GatewayId, :ProtocolType, :Ip, :Port, :Username, :SNCode, :AppName, :StreamName
         | 
| 1172 1176 |  | 
| 1173 | 
            -
                    def initialize(name=nil, accessprotocol=nil, type=nil, organizationid=nil, clusterid=nil, transportprotocol=nil, password=nil, description=nil, gatewayid=nil, protocoltype=nil, ip=nil, port=nil, username=nil, sncode=nil)
         | 
| 1177 | 
            +
                    def initialize(name=nil, accessprotocol=nil, type=nil, organizationid=nil, clusterid=nil, transportprotocol=nil, password=nil, description=nil, gatewayid=nil, protocoltype=nil, ip=nil, port=nil, username=nil, sncode=nil, appname=nil, streamname=nil)
         | 
| 1174 1178 | 
             
                      @Name = name
         | 
| 1175 1179 | 
             
                      @AccessProtocol = accessprotocol
         | 
| 1176 1180 | 
             
                      @Type = type
         | 
| @@ -1185,6 +1189,8 @@ module TencentCloud | |
| 1185 1189 | 
             
                      @Port = port
         | 
| 1186 1190 | 
             
                      @Username = username
         | 
| 1187 1191 | 
             
                      @SNCode = sncode
         | 
| 1192 | 
            +
                      @AppName = appname
         | 
| 1193 | 
            +
                      @StreamName = streamname
         | 
| 1188 1194 | 
             
                    end
         | 
| 1189 1195 |  | 
| 1190 1196 | 
             
                    def deserialize(params)
         | 
| @@ -1202,6 +1208,8 @@ module TencentCloud | |
| 1202 1208 | 
             
                      @Port = params['Port']
         | 
| 1203 1209 | 
             
                      @Username = params['Username']
         | 
| 1204 1210 | 
             
                      @SNCode = params['SNCode']
         | 
| 1211 | 
            +
                      @AppName = params['AppName']
         | 
| 1212 | 
            +
                      @StreamName = params['StreamName']
         | 
| 1205 1213 | 
             
                    end
         | 
| 1206 1214 | 
             
                  end
         | 
| 1207 1215 |  | 
| @@ -2277,15 +2285,19 @@ module TencentCloud | |
| 2277 2285 | 
             
                  class DescribeCNAMERequest < TencentCloud::Common::AbstractModel
         | 
| 2278 2286 | 
             
                    # @param ClusterId: 服务节点 ID(从查询域名可绑定服务节点接口DescribeDomainRegion中获取)
         | 
| 2279 2287 | 
             
                    # @type ClusterId: String
         | 
| 2288 | 
            +
                    # @param DomainType: 域名类型,0:拉流域名 1:推流域名
         | 
| 2289 | 
            +
                    # @type DomainType: Integer
         | 
| 2280 2290 |  | 
| 2281 | 
            -
                    attr_accessor :ClusterId
         | 
| 2291 | 
            +
                    attr_accessor :ClusterId, :DomainType
         | 
| 2282 2292 |  | 
| 2283 | 
            -
                    def initialize(clusterid=nil)
         | 
| 2293 | 
            +
                    def initialize(clusterid=nil, domaintype=nil)
         | 
| 2284 2294 | 
             
                      @ClusterId = clusterid
         | 
| 2295 | 
            +
                      @DomainType = domaintype
         | 
| 2285 2296 | 
             
                    end
         | 
| 2286 2297 |  | 
| 2287 2298 | 
             
                    def deserialize(params)
         | 
| 2288 2299 | 
             
                      @ClusterId = params['ClusterId']
         | 
| 2300 | 
            +
                      @DomainType = params['DomainType']
         | 
| 2289 2301 | 
             
                    end
         | 
| 2290 2302 | 
             
                  end
         | 
| 2291 2303 |  | 
| @@ -2501,10 +2513,16 @@ module TencentCloud | |
| 2501 2513 | 
             
                    # @param SubscribeSwitch: 订阅开关(0:关闭;1:开启)默认开启,开启状态下会订阅设备通道变化,仅国标NVR设备有效
         | 
| 2502 2514 | 
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 2503 2515 | 
             
                    # @type SubscribeSwitch: Integer
         | 
| 2516 | 
            +
                    # @param AppName: RTMP推流地址自定义appName
         | 
| 2517 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 2518 | 
            +
                    # @type AppName: String
         | 
| 2519 | 
            +
                    # @param StreamName: RTMP推流地址自定义streamName
         | 
| 2520 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 2521 | 
            +
                    # @type StreamName: String
         | 
| 2504 2522 |  | 
| 2505 | 
            -
                    attr_accessor :DeviceId, :Code, :Name, :AccessProtocol, :Type, :ClusterId, :ClusterName, :TransportProtocol, :Password, :Description, :SipId, :SipDomain, :SipIp, :SipPort, :PushStreamUrl, :Status, :OrganizationId, :GatewayId, :GatewayName, :ProtocolTypeName, :ProtocolType, :Ip, :Port, :Username, :Region, :Manufacturer, :AudioSwitch, :SubscribeSwitch
         | 
| 2523 | 
            +
                    attr_accessor :DeviceId, :Code, :Name, :AccessProtocol, :Type, :ClusterId, :ClusterName, :TransportProtocol, :Password, :Description, :SipId, :SipDomain, :SipIp, :SipPort, :PushStreamUrl, :Status, :OrganizationId, :GatewayId, :GatewayName, :ProtocolTypeName, :ProtocolType, :Ip, :Port, :Username, :Region, :Manufacturer, :AudioSwitch, :SubscribeSwitch, :AppName, :StreamName
         | 
| 2506 2524 |  | 
| 2507 | 
            -
                    def initialize(deviceid=nil, code=nil, name=nil, accessprotocol=nil, type=nil, clusterid=nil, clustername=nil, transportprotocol=nil, password=nil, description=nil, sipid=nil, sipdomain=nil, sipip=nil, sipport=nil, pushstreamurl=nil, status=nil, organizationid=nil, gatewayid=nil, gatewayname=nil, protocoltypename=nil, protocoltype=nil, ip=nil, port=nil, username=nil, region=nil, manufacturer=nil, audioswitch=nil, subscribeswitch=nil)
         | 
| 2525 | 
            +
                    def initialize(deviceid=nil, code=nil, name=nil, accessprotocol=nil, type=nil, clusterid=nil, clustername=nil, transportprotocol=nil, password=nil, description=nil, sipid=nil, sipdomain=nil, sipip=nil, sipport=nil, pushstreamurl=nil, status=nil, organizationid=nil, gatewayid=nil, gatewayname=nil, protocoltypename=nil, protocoltype=nil, ip=nil, port=nil, username=nil, region=nil, manufacturer=nil, audioswitch=nil, subscribeswitch=nil, appname=nil, streamname=nil)
         | 
| 2508 2526 | 
             
                      @DeviceId = deviceid
         | 
| 2509 2527 | 
             
                      @Code = code
         | 
| 2510 2528 | 
             
                      @Name = name
         | 
| @@ -2533,6 +2551,8 @@ module TencentCloud | |
| 2533 2551 | 
             
                      @Manufacturer = manufacturer
         | 
| 2534 2552 | 
             
                      @AudioSwitch = audioswitch
         | 
| 2535 2553 | 
             
                      @SubscribeSwitch = subscribeswitch
         | 
| 2554 | 
            +
                      @AppName = appname
         | 
| 2555 | 
            +
                      @StreamName = streamname
         | 
| 2536 2556 | 
             
                    end
         | 
| 2537 2557 |  | 
| 2538 2558 | 
             
                    def deserialize(params)
         | 
| @@ -2564,6 +2584,8 @@ module TencentCloud | |
| 2564 2584 | 
             
                      @Manufacturer = params['Manufacturer']
         | 
| 2565 2585 | 
             
                      @AudioSwitch = params['AudioSwitch']
         | 
| 2566 2586 | 
             
                      @SubscribeSwitch = params['SubscribeSwitch']
         | 
| 2587 | 
            +
                      @AppName = params['AppName']
         | 
| 2588 | 
            +
                      @StreamName = params['StreamName']
         | 
| 2567 2589 | 
             
                    end
         | 
| 2568 2590 | 
             
                  end
         | 
| 2569 2591 |  | 
| @@ -2723,10 +2745,13 @@ module TencentCloud | |
| 2723 2745 | 
             
                    # @param CertId: 证书ID
         | 
| 2724 2746 | 
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 2725 2747 | 
             
                    # @type CertId: String
         | 
| 2748 | 
            +
                    # @param DomainType: 域名类型 0:拉流域名 1:推流域名
         | 
| 2749 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 2750 | 
            +
                    # @type DomainType: Integer
         | 
| 2726 2751 |  | 
| 2727 | 
            -
                    attr_accessor :Id, :PlayDomain, :InternalDomain, :HaveCert, :ClusterId, :ClusterName, :AppId, :CertId
         | 
| 2752 | 
            +
                    attr_accessor :Id, :PlayDomain, :InternalDomain, :HaveCert, :ClusterId, :ClusterName, :AppId, :CertId, :DomainType
         | 
| 2728 2753 |  | 
| 2729 | 
            -
                    def initialize(id=nil, playdomain=nil, internaldomain=nil, havecert=nil, clusterid=nil, clustername=nil, appid=nil, certid=nil)
         | 
| 2754 | 
            +
                    def initialize(id=nil, playdomain=nil, internaldomain=nil, havecert=nil, clusterid=nil, clustername=nil, appid=nil, certid=nil, domaintype=nil)
         | 
| 2730 2755 | 
             
                      @Id = id
         | 
| 2731 2756 | 
             
                      @PlayDomain = playdomain
         | 
| 2732 2757 | 
             
                      @InternalDomain = internaldomain
         | 
| @@ -2735,6 +2760,7 @@ module TencentCloud | |
| 2735 2760 | 
             
                      @ClusterName = clustername
         | 
| 2736 2761 | 
             
                      @AppId = appid
         | 
| 2737 2762 | 
             
                      @CertId = certid
         | 
| 2763 | 
            +
                      @DomainType = domaintype
         | 
| 2738 2764 | 
             
                    end
         | 
| 2739 2765 |  | 
| 2740 2766 | 
             
                    def deserialize(params)
         | 
| @@ -2746,6 +2772,7 @@ module TencentCloud | |
| 2746 2772 | 
             
                      @ClusterName = params['ClusterName']
         | 
| 2747 2773 | 
             
                      @AppId = params['AppId']
         | 
| 2748 2774 | 
             
                      @CertId = params['CertId']
         | 
| 2775 | 
            +
                      @DomainType = params['DomainType']
         | 
| 2749 2776 | 
             
                    end
         | 
| 2750 2777 | 
             
                  end
         | 
| 2751 2778 |  |