Class: TencentCloud::Iss::V20230517::UpdateOrganizationRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20230517/models.rb

Overview

UpdateOrganization请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(organizationid = nil, name = nil) ⇒ UpdateOrganizationRequest

Returns a new instance of UpdateOrganizationRequest.



7472
7473
7474
7475
# File 'lib/v20230517/models.rb', line 7472

def initialize(organizationid=nil, name=nil)
  @OrganizationId = organizationid
  @Name = name
end

Instance Attribute Details

#NameObject

Parameters:

  • OrganizationId:

    组织ID(从查询组织接口DescribeOrganization中获取)

  • Name:

    组织名称,支持中文、英文、数字、空格、中英文括号、_、-, 长度不超过64位,且组织名称不能重复



7470
7471
7472
# File 'lib/v20230517/models.rb', line 7470

def Name
  @Name
end

#OrganizationIdObject

Parameters:

  • OrganizationId:

    组织ID(从查询组织接口DescribeOrganization中获取)

  • Name:

    组织名称,支持中文、英文、数字、空格、中英文括号、_、-, 长度不超过64位,且组织名称不能重复



7470
7471
7472
# File 'lib/v20230517/models.rb', line 7470

def OrganizationId
  @OrganizationId
end

Instance Method Details

#deserialize(params) ⇒ Object



7477
7478
7479
7480
# File 'lib/v20230517/models.rb', line 7477

def deserialize(params)
  @OrganizationId = params['OrganizationId']
  @Name = params['Name']
end