Win32 API 日本語リファレンス
ホームNetworking.Clustering › CLUSTER_MGMT_POINT_TYPE

CLUSTER_MGMT_POINT_TYPE

列挙型
基底型i4

メンバー 4

名前10進16進説明
CLUSTER_MGMT_POINT_TYPE_NONE00x0クラスターに管理ポイントがありません。
CLUSTER_MGMT_POINT_TYPE_CNO10x1管理ポイントはクラスター名オブジェクトです。
CLUSTER_MGMT_POINT_TYPE_DNS_ONLY20x2管理ポイントは DNS のみです。
CLUSTER_MGMT_POINT_TYPE_CNO_ONLY30x3

管理ポイントの種類はクラスター名オブジェクト (CNO) のみです。

Windows Server 2012 R2: この値は Windows Server 2016 より前ではサポートされません。

公式ドキュメント

クラスターの管理ポイントの種類を指定します。

CLUSTER_MGMT_POINT_TYPE は、CreateCluster の構成構造体で使用できる値として利用されます。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum CLUSTER_MGMT_POINT_TYPE : int {
    CLUSTER_MGMT_POINT_TYPE_NONE = 0,
    CLUSTER_MGMT_POINT_TYPE_CNO = 1,
    CLUSTER_MGMT_POINT_TYPE_DNS_ONLY = 2,
    CLUSTER_MGMT_POINT_TYPE_CNO_ONLY = 3
} CLUSTER_MGMT_POINT_TYPE;
public enum CLUSTER_MGMT_POINT_TYPE : int
{
    CLUSTER_MGMT_POINT_TYPE_NONE = 0,
    CLUSTER_MGMT_POINT_TYPE_CNO = 1,
    CLUSTER_MGMT_POINT_TYPE_DNS_ONLY = 2,
    CLUSTER_MGMT_POINT_TYPE_CNO_ONLY = 3,
}
Public Enum CLUSTER_MGMT_POINT_TYPE As Integer
    CLUSTER_MGMT_POINT_TYPE_NONE = 0
    CLUSTER_MGMT_POINT_TYPE_CNO = 1
    CLUSTER_MGMT_POINT_TYPE_DNS_ONLY = 2
    CLUSTER_MGMT_POINT_TYPE_CNO_ONLY = 3
End Enum
import enum

class CLUSTER_MGMT_POINT_TYPE(enum.IntEnum):
    CLUSTER_MGMT_POINT_TYPE_NONE = 0
    CLUSTER_MGMT_POINT_TYPE_CNO = 1
    CLUSTER_MGMT_POINT_TYPE_DNS_ONLY = 2
    CLUSTER_MGMT_POINT_TYPE_CNO_ONLY = 3
// CLUSTER_MGMT_POINT_TYPE
pub const CLUSTER_MGMT_POINT_TYPE_NONE: i32 = 0;
pub const CLUSTER_MGMT_POINT_TYPE_CNO: i32 = 1;
pub const CLUSTER_MGMT_POINT_TYPE_DNS_ONLY: i32 = 2;
pub const CLUSTER_MGMT_POINT_TYPE_CNO_ONLY: i32 = 3;
// CLUSTER_MGMT_POINT_TYPE
const (
	CLUSTER_MGMT_POINT_TYPE_NONE int32 = 0
	CLUSTER_MGMT_POINT_TYPE_CNO int32 = 1
	CLUSTER_MGMT_POINT_TYPE_DNS_ONLY int32 = 2
	CLUSTER_MGMT_POINT_TYPE_CNO_ONLY int32 = 3
)
const
  CLUSTER_MGMT_POINT_TYPE_NONE = 0;
  CLUSTER_MGMT_POINT_TYPE_CNO = 1;
  CLUSTER_MGMT_POINT_TYPE_DNS_ONLY = 2;
  CLUSTER_MGMT_POINT_TYPE_CNO_ONLY = 3;
// CLUSTER_MGMT_POINT_TYPE
pub const CLUSTER_MGMT_POINT_TYPE_NONE: i32 = 0;
pub const CLUSTER_MGMT_POINT_TYPE_CNO: i32 = 1;
pub const CLUSTER_MGMT_POINT_TYPE_DNS_ONLY: i32 = 2;
pub const CLUSTER_MGMT_POINT_TYPE_CNO_ONLY: i32 = 3;
const
  CLUSTER_MGMT_POINT_TYPE_NONE* = 0
  CLUSTER_MGMT_POINT_TYPE_CNO* = 1
  CLUSTER_MGMT_POINT_TYPE_DNS_ONLY* = 2
  CLUSTER_MGMT_POINT_TYPE_CNO_ONLY* = 3
enum CLUSTER_MGMT_POINT_TYPE : int {
    CLUSTER_MGMT_POINT_TYPE_NONE = 0,
    CLUSTER_MGMT_POINT_TYPE_CNO = 1,
    CLUSTER_MGMT_POINT_TYPE_DNS_ONLY = 2,
    CLUSTER_MGMT_POINT_TYPE_CNO_ONLY = 3,
}
#define global CLUSTER_MGMT_POINT_TYPE_NONE     0x0
#define global CLUSTER_MGMT_POINT_TYPE_CNO      0x1
#define global CLUSTER_MGMT_POINT_TYPE_DNS_ONLY 0x2
#define global CLUSTER_MGMT_POINT_TYPE_CNO_ONLY 0x3