다음을 통해 공유


서비스 모델 XML 스키마 복합 형식

AppInstanceDefinitionType complexType

attribute
콘텐츠 요소 1개, 특성 1개
정의 세계적 으로
name AppInstanceDefinitionType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="AppInstanceDefinitionType">
    <xs:sequence>
      <xs:element name="Parameters">
        <xs:annotation>
          <xs:documentation>List of parameters for the application as defined in application manifest and their respective values.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Parameter" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:attributeGroup ref="NameValuePair"/>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="Name" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>Name of the application to be created.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>


특성 세부 정보

이름

만들려는 애플리케이션의 이름입니다.

attribute
name 이름
type xs:string
use 필수

콘텐츠 요소 세부 정보

매개 변수

애플리케이션 매니페스트 및 해당 값에 정의된 애플리케이션에 대한 매개 변수 목록입니다.

attribute
name 매개 변수

ApplicationHealthPolicyType complexType

다양한 애플리케이션 관련 엔터티에 보고된 상태 이벤트를 평가하기 위한 정책을 설명합니다. 지정된 정책이 없지만 상태 보고서가 경고 또는 오류인 경우 엔터티가 비정상인 것으로 간주됩니다.

attribute
콘텐츠 2개 요소, 2개 특성
정의 세계적 으로
name ApplicationHealthPolicyType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ApplicationHealthPolicyType">
    <xs:annotation>
      <xs:documentation>Describes the policy for evaluating health events reported on various application-related entities. If no policy is specified, an entity is assumed to be unhealthy if the health report is a warning or error.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="DefaultServiceTypeHealthPolicy" type="ServiceTypeHealthPolicyType" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Specifies the default service type health policy, which will replace the default health policy for all service types in the application.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ServiceTypeHealthPolicy" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Describes the policy for evaluating health events reported on services, partitions and replicas of a particular service type.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:complexContent>
            <xs:extension base="ServiceTypeHealthPolicyType">
              <xs:attribute name="ServiceTypeName" type="xs:string" use="required">
                <xs:annotation>
                  <xs:documentation>The name of the service type that the policy will be applied to.</xs:documentation>
                </xs:annotation>
              </xs:attribute>
            </xs:extension>
          </xs:complexContent>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="ConsiderWarningAsError" type="xs:string" use="optional" default="false">
      <xs:annotation>
        <xs:documentation>Specifies whether to treat warning health reports as errors during health evaluation. Default: false.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="MaxPercentUnhealthyDeployedApplications" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>Specifies the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error. This is calculated by dividing the number of unhealthy deployed applications over the number of nodes that the applications are currently deployed on in the cluster. The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage: 0.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

ConsiderWarningAsError

상태 평가 중 경고 상태 보고서를 오류로 처리할지 여부를 지정합니다. 기본값: false입니다.

attribute
name ConsiderWarningAsError
type xs:string
use 선택적
default false

MaxPercentUnhealthyDeployedApplications

애플리케이션에서 오류로 처리하기 전에 비정상 상태를 유지할 수 있는 배포된 애플리케이션의 최대 허용 비율을 지정합니다. 이는 비정상 배포된 애플리케이션의 수를 클러스터에 현재 배포된 노드 수로 나누어 계산합니다. 계산은 적은 수의 노드에서 하나의 오류를 허용하도록 반올림됩니다. 기본 백분율: 0.

attribute
name MaxPercentUnhealthyDeployedApplications
type xs:string
use 선택적
기본값 0

콘텐츠 요소 세부 정보

DefaultServiceTypeHealthPolicy

애플리케이션의 모든 서비스 유형에 대한 기본 상태 정책을 대체할 기본 서비스 유형 상태 정책을 지정합니다.

attribute
name DefaultServiceTypeHealthPolicy
type ServiceTypeHealthPolicyType
Minoccurs 0

ServiceTypeHealthPolicy

특정 서비스 유형의 서비스, 파티션 및 복제본(replica) 보고되는 상태 이벤트를 평가하기 위한 정책을 설명합니다.

attribute
name ServiceTypeHealthPolicy
Minoccurs 0
Maxoccurs 바인딩되지 않은

ApplicationInstanceType complexType

Microsoft Azure Service Fabric 애플리케이션의 인스턴스에 대해 설명합니다.

attribute
콘텐츠 4개 요소, 1개 특성
정의 세계적 으로
name ApplicationInstanceType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ApplicationInstanceType">
    <xs:annotation>
      <xs:documentation>Describes an instance of a Microsoft Azure Service Fabric application.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="ApplicationPackageRef">
        <xs:complexType>
          <xs:attributeGroup ref="VersionedItemAttrGroup"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="ServicePackageRef" maxOccurs="unbounded">
        <xs:complexType>
          <xs:attribute name="Name" use="required"/>
          <xs:attributeGroup ref="VersionedItemAttrGroup"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="ServiceTemplates" type="ServiceTemplatesType"/>
      <xs:element name="DefaultServices" type="DefaultServicesType"/>
    </xs:sequence>
    <xs:attribute name="Version" type="xs:int" use="required">
      <xs:annotation>
        <xs:documentation>The version of the ApplicationInstance document.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attributeGroup ref="ApplicationInstanceAttrGroup"/>
    <xs:attributeGroup ref="ApplicationManifestAttrGroup"/>
  </xs:complexType>
  

특성 세부 정보

버전

ApplicationInstance 문서의 버전입니다.

attribute
name 버전
type xs:int
use 필수

콘텐츠 요소 세부 정보

ApplicationPackageRef

attribute
name ApplicationPackageRef

ServicePackageRef

attribute
name ServicePackageRef
Maxoccurs 바인딩되지 않은

ServiceTemplates

attribute
name ServiceTemplates
type ServiceTemplatesType

DefaultServices

attribute
name DefaultServices
type DefaultServicesType

ApplicationManifestType complexType

애플리케이션 유형 및 버전을 선언적으로 설명합니다. 구성 요소 서비스의 하나 이상의 서비스 매니페스트는 애플리케이션 유형을 작성하기 위해 참조됩니다. 매개 변수가 있는 애플리케이션 설정을 사용하여 구성 서비스의 구성 설정을 재정의할 수 있습니다. 기본 서비스, 서비스 템플릿, 보안 주체, 정책, 진단 설정 및 인증서도 애플리케이션 수준에서 선언할 수 있습니다.

attribute
콘텐츠 9개 요소, 0개 특성
정의 세계적 으로
name ApplicationManifestType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ApplicationManifestType">
    <xs:annotation>
      <xs:documentation>Declaratively describes the application type and version. One or more service manifests of the constituent services are referenced to compose an application type. Configuration settings of the constituent services can be overridden using parameterized application settings. Default services, service templates, principals, policies, diagnostics set-up, and certificates can also declared at the application level.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Description" type="xs:string" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Text describing this application.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Parameters" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Declares the parameters that are used in this application manifest. The value of these parameters can be supplied when the application is instantiated and can be used to override application or service configuration settings.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Parameter" block="" minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>An application parameter to be used in this manifest. The parameter value can be changed during application instantiation, or, if no value is supplied the default value is used.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:attribute name="Name" use="required">
                  <xs:annotation>
                    <xs:documentation>The name of the parameter to be used in the manifest as "[Name]".</xs:documentation>
                  </xs:annotation>
                  <xs:simpleType>
                    <xs:restriction base="xs:string">
                      <xs:minLength value="1"/>
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
                <xs:attribute name="DefaultValue" type="xs:string" use="required">
                  <xs:annotation>
                    <xs:documentation>Default value for the parameter, used if the parameter value is not provided during application instantiation.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="ServiceManifestImport" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Imports a service manifest created by the service developer. A service manifest must be imported for each constituent service in the application. Configuration overrides and policies can be declared for the service manifest.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="ServiceManifestRef" type="ServiceManifestRefType"/>
            <xs:element name="ConfigOverrides" minOccurs="0">
              <xs:annotation>
                <xs:documentation>Describes configuration overrides for the imported service manifest. Configuration overrides allow the flexibility of re-using the same service manifests across multiple application types by overriding the service manifest's configuration only when used with a particular application type. Configuration overrides can change any default configuration in a service manifest as long as default configuration is defined using the Settings.xml in the ConfigPackage folder. </xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="ConfigOverride" type="ConfigOverrideType" minOccurs="0" maxOccurs="unbounded"/>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
            <xs:element name="ResourceOverrides" type="ResourceOverridesType" minOccurs="0"/>
            <xs:element name="EnvironmentOverrides" type="EnvironmentOverridesType" minOccurs="0" maxOccurs="unbounded"/>
            <xs:element name="Policies" type="ServiceManifestImportPoliciesType" minOccurs="0"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="ServiceTemplates" type="ServiceTemplatesType" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Declares the set of permitted service types that can be created dynamically inside the application instance. Default configuration values, such as replication factor, are specified and used as a template for creating service instances.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="DefaultServices" type="DefaultServicesType" minOccurs="0">

      </xs:element>
      <xs:element name="Principals" type="SecurityPrincipalsType" minOccurs="0"/>
      <xs:element name="Policies" type="ApplicationPoliciesType" minOccurs="0"/>
      <xs:element name="Diagnostics" type="DiagnosticsType" minOccurs="0"/>
      <xs:element name="Certificates" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Declares certificates used to secure endpoints or encrypt secrets within the application manifest or a cluster manifest.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence maxOccurs="unbounded">
            <xs:element name="SecretsCertificate" type="FabricCertificateType" minOccurs="0">
              <xs:annotation>
                <xs:documentation>Declares a certificate used to encrypt sensitive information within the application manifest. The application author uses the Invoke-ServiceFabricEncryptSecret cmdlet to encrypt the sensitive information, which is copied to a Parameter in the ConfigOverrides section.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="EndpointCertificate" type="EndpointCertificateType" minOccurs="0"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
    <xs:attributeGroup ref="ApplicationManifestAttrGroup"/>

  </xs:complexType>
  

콘텐츠 요소 세부 정보

설명

이 애플리케이션을 설명하는 텍스트입니다.

attribute
name Description
type xs:string
Minoccurs 0

매개 변수

이 애플리케이션 매니페스트에 사용되는 매개 변수를 선언합니다. 이러한 매개 변수의 값은 애플리케이션이 인스턴스화될 때 제공될 수 있으며 애플리케이션 또는 서비스 구성 설정을 재정의하는 데 사용할 수 있습니다.

attribute
name 매개 변수
Minoccurs 0

ServiceManifestImport

서비스 개발자가 만든 서비스 매니페스트를 가져옵니다. 애플리케이션의 각 구성 서비스에 대해 서비스 매니페스트를 가져와야 합니다. 서비스 매니페스트에 대한 구성 재정의 및 정책을 선언할 수 있습니다.

attribute
name ServiceManifestImport
Maxoccurs 바인딩되지 않은

ServiceTemplates

애플리케이션 인스턴스 내에서 동적으로 만들 수 있는 허용된 서비스 유형 집합을 선언합니다. 복제본(replica)tion 요소와 같은 기본 구성 값이 지정되고 서비스 인스턴스를 만들기 위한 템플릿으로 사용됩니다.

attribute
name ServiceTemplates
type ServiceTemplatesType
Minoccurs 0

DefaultServices

attribute
name DefaultServices
type DefaultServicesType
Minoccurs 0

보안 주체

attribute
name 보안 주체
type SecurityPrincipalsType
Minoccurs 0

정책

attribute
name 정책
type ApplicationPoliciesType
Minoccurs 0

진단

attribute
name 진단
type DiagnosticsType
Minoccurs 0

인증서

엔드포인트를 보호하거나 애플리케이션 매니페스트 또는 클러스터 매니페스트 내에서 비밀을 암호화하는 데 사용되는 인증서를 선언합니다.

attribute
name 인증서
Minoccurs 0

ApplicationPackageType complexType

ApplicationPackage는 노드에 필요한 버전이 있는 Application 정보를 나타냅니다.

attribute
콘텐츠 2개 요소, 2개 특성
정의 세계적 으로
name ApplicationPackageType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ApplicationPackageType">
    <xs:annotation>
      <xs:documentation>ApplicationPackage represents the versioned Application information required by the node.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="DigestedEnvironment" type="EnvironmentType"/>
      <xs:element name="DigestedCertificates">
        <xs:complexType>
          <xs:sequence maxOccurs="unbounded">
            <xs:element name="SecretsCertificate" type="FabricCertificateType" minOccurs="0"/>
            <xs:element name="EndpointCertificate" type="EndpointCertificateType" minOccurs="0"/>
          </xs:sequence>
          <xs:attributeGroup ref="VersionedItemAttrGroup"/>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="ApplicationTypeName" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>Type identifier for this application.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attributeGroup ref="VersionedItemAttrGroup"/>
    <xs:attributeGroup ref="ApplicationInstanceAttrGroup"/>
    <xs:attribute name="ContentChecksum" type="xs:string">
      <xs:annotation>
        <xs:documentation>Checksum value of this ApplicationPackage content</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

ApplicationTypeName

이 애플리케이션의 형식 식별자입니다.

attribute
name ApplicationTypeName
type xs:string
use 필수

ContentChecksum

이 ApplicationPackage 콘텐츠의 체크섬 값

attribute
name ContentChecksum
type xs:string

콘텐츠 요소 세부 정보

DigestedEnvironment

attribute
name DigestedEnvironment
type EnvironmentType

DigestedCertificates

attribute
name DigestedCertificates

ApplicationPoliciesType complexType

애플리케이션 수준에서 적용할 정책(로그 수집, 기본 실행, 상태 및 보안 액세스)을 설명합니다.

attribute
콘텐츠 4개 요소, 0개 특성
정의 세계적 으로
name ApplicationPoliciesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ApplicationPoliciesType">
                <xs:annotation>
                        <xs:documentation>Describes the policies (log collection, default run-as, health, and security access) to be applied at the application level.</xs:documentation>
                </xs:annotation>
                <xs:all>
                        <xs:element name="LogCollectionPolicies" minOccurs="0">
                                <xs:annotation>
                                        <xs:documentation>Specifies whether log collection is enabled. Works only in an Azure cluster environment</xs:documentation>
                                </xs:annotation>
                                <xs:complexType>
                                        <xs:sequence maxOccurs="unbounded">
                                                <xs:element name="LogCollectionPolicy">
                                                        <xs:complexType>
                                                                <xs:attribute name="Path" type="xs:string" use="optional"/>
                                                        </xs:complexType>
                                                </xs:element>
                                        </xs:sequence>
                                </xs:complexType>
                        </xs:element>
                        <xs:element name="DefaultRunAsPolicy" minOccurs="0">
                                <xs:annotation>
                                        <xs:documentation>Specify a default user account for all service code packages that don't have a specific RunAsPolicy defined in the ServiceManifestImport section.</xs:documentation>
                                </xs:annotation>
                                <xs:complexType>
                                        <xs:attribute name="UserRef" type="xs:string" use="required">
                                                <xs:annotation>
                                                        <xs:documentation>The user account that the service code packages will run as.  The user account must be declared in the Principals section. Often it is preferable to run the setup entry point using a local system account rather than an administrators account.</xs:documentation>
                                                </xs:annotation>
                                        </xs:attribute>
                                </xs:complexType>
                        </xs:element>
                        <xs:element name="HealthPolicy" type="ApplicationHealthPolicyType" minOccurs="0"/>
                        <xs:element name="SecurityAccessPolicies" minOccurs="0">
                                <xs:annotation>
                                        <xs:documentation>List of security policies applied to resources at the application level.</xs:documentation>
                                </xs:annotation>
                                <xs:complexType>
                                        <xs:sequence maxOccurs="unbounded">
                                                <xs:element name="SecurityAccessPolicy" type="SecurityAccessPolicyType"/>
                                        </xs:sequence>
                                </xs:complexType>
                        </xs:element>
                </xs:all>
        </xs:complexType>
        

콘텐츠 요소 세부 정보

LogCollectionPolicies

로그 수집을 사용할지 여부를 지정합니다. Azure 클러스터 환경에서만 작동

attribute
name LogCollectionPolicies
Minoccurs 0

DefaultRunAsPolicy

ServiceManifestImport 섹션에 정의된 특정 RunAsPolicy가 없는 모든 서비스 코드 패키지에 대한 기본 사용자 계정을 지정합니다.

attribute
name DefaultRunAsPolicy
Minoccurs 0

HealthPolicy

attribute
name HealthPolicy
type ApplicationHealthPolicyType
Minoccurs 0

SecurityAccessPolicies

애플리케이션 수준의 리소스에 적용되는 보안 정책의 목록입니다.

attribute
name SecurityAccessPolicies
Minoccurs 0

AzureBlobETWType complexType

ETW 이벤트에 대한 Azure Blob 저장소 대상에 대해 설명합니다. Azure 환경에서만 작동합니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name AzureBlobETWType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="AzureBlobETWType">
    <xs:annotation>
      <xs:documentation>Describes an Azure blob store destination for ETW events. Works only in Azure environment.</xs:documentation>
    </xs:annotation>
    <xs:complexContent>
      <xs:extension base="AzureBlobType">
        <xs:attributeGroup ref="LevelFilter"/>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  

AzureBlobType complexType

진단 데이터의 Azure Blob 저장소 대상에 대해 설명합니다. Azure 클러스터 환경에서만 작동합니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name AzureBlobType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="AzureBlobType">
    <xs:annotation>
      <xs:documentation>Describes an Azure blob store destination for diagnostics data. Works only in Azure cluster environment.</xs:documentation>
    </xs:annotation>
    <xs:complexContent>
      <xs:extension base="AzureStoreBaseType">
        <xs:attributeGroup ref="ContainerName"/>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  

AzureRoleType complexType

attribute
콘텐츠 0개 요소, 3개 특성
정의 세계적 으로
name AzureRoleType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="AzureRoleType">
    <xs:attribute name="RoleName" type="xs:string" use="required"/>
    <xs:attribute name="NodeTypeRef" type="xs:string" use="required"/>
    <xs:attribute name="SeedNodeCount" type="xs:int" use="optional" default="0"/>
  </xs:complexType>
  

특성 세부 정보

RoleName

attribute
name RoleName
type xs:string
use 필수

NodeTypeRef

attribute
name NodeTypeRef
type xs:string
use 필수

SeedNodeCount

attribute
name SeedNodeCount
type xs:int
use 선택적
기본값 0

AzureStoreBaseType complexType

Azure Storage 계정의 진단 저장소에 대해 설명합니다.

attribute
콘텐츠 요소 1개, 특성 1개
정의 세계적 으로
name AzureStoreBaseType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="AzureStoreBaseType">
    <xs:annotation>
      <xs:documentation>Describes a diagnostic store in an Azure storage account.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="Parameters" minOccurs="0"/>
    </xs:sequence>
    <xs:attributeGroup ref="IsEnabled"/>
    <xs:attributeGroup ref="ConnectionString"/>
    <xs:attribute name="ConnectionStringIsEncrypted" type="xs:string" use="required"/>
    <xs:attributeGroup ref="UploadIntervalInMinutes"/>
    <xs:attributeGroup ref="DataDeletionAgeInDays"/>
  </xs:complexType>
  

특성 세부 정보

커넥트ionStringIsEncrypted

attribute
name 커넥트ionStringIsEncrypted
type xs:string
use 필수

콘텐츠 요소 세부 정보

없음

attribute
ref 매개 변수
Minoccurs 0

BlackbirdRoleType complexType

attribute
콘텐츠 0개 요소, 4개 특성
정의 세계적 으로
name BlackbirdRoleType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="BlackbirdRoleType">
    <xs:attribute name="EnvironmentName" type="xs:string" use="required"/>
    <xs:attribute name="RoleName" type="xs:string" use="required"/>
    <xs:attribute name="NodeTypeRef" type="xs:string" use="required"/>
    <xs:attribute name="IsSeedNode" type="xs:boolean" use="optional" default="0"/>
  </xs:complexType>
  

특성 세부 정보

EnvironmentName

attribute
name EnvironmentName
type xs:string
use 필수

RoleName

attribute
name RoleName
type xs:string
use 필수

NodeTypeRef

attribute
name NodeTypeRef
type xs:string
use 필수

IsSeedNode

attribute
name IsSeedNode
type xs:boolean
use 선택적
기본값 0

CertificatesType complexType

attribute
콘텐츠 4개 요소, 0개 특성
정의 세계적 으로
name CertificatesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="CertificatesType">
    <xs:all>
      <xs:element name="ClusterCertificate" type="FabricCertificateType" minOccurs="0">
        <xs:annotation>
          <xs:documentation>The certificate used to secure the intra cluster communication.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ServerCertificate" type="FabricCertificateType" minOccurs="0">
        <xs:annotation>
          <xs:documentation>The certificate used to secure the intra cluster communication.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ClientCertificate" type="FabricCertificateType" minOccurs="0">
        <xs:annotation>
          <xs:documentation>The default admin role client certificate used to secure client server communication.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="UserRoleClientCertificate" type="FabricCertificateType" minOccurs="0">
        <xs:annotation>
          <xs:documentation>The default user role client certificate used to secure client server communication.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:all>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

ClusterCertificate

클러스터 내 통신을 보호하는 데 사용되는 인증서입니다.

attribute
name ClusterCertificate
type FabricCertificateType
Minoccurs 0

ServerCertificate

클러스터 내 통신을 보호하는 데 사용되는 인증서입니다.

attribute
name ServerCertificate
type FabricCertificateType
Minoccurs 0

ClientCertificate

클라이언트 서버 통신을 보호하는 데 사용되는 기본 관리자 역할 클라이언트 인증서입니다.

attribute
name ClientCertificate
type FabricCertificateType
Minoccurs 0

UserRoleClientCertificate

클라이언트 서버 통신을 보호하는 데 사용되는 기본 사용자 역할 클라이언트 인증서입니다.

attribute
name UserRoleClientCertificate
type FabricCertificateType
Minoccurs 0

ClusterManifestType complexType

Microsoft Azure Service Fabric 클러스터를 설명합니다.

attribute
콘텐츠 4개 요소, 3개 특성
정의 세계적 으로
name ClusterManifestType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ClusterManifestType">
                <xs:annotation>
                        <xs:documentation>Describes a Microsoft Azure Service Fabric Cluster.</xs:documentation>
                </xs:annotation>
                <xs:all>
                        <xs:element name="NodeTypes" minOccurs="1">
                                <xs:complexType>
                                        <xs:sequence>
                                                <xs:element name="NodeType" maxOccurs="unbounded">
                                                        <xs:annotation>
                                                                <xs:documentation>Describe a node type.</xs:documentation>
                                                        </xs:annotation>
                                                        <xs:complexType>
                                                                <xs:all>
                                                                        <xs:element name="Endpoints" type="FabricEndpointsType" minOccurs="0">
                                                                                <xs:annotation>
                                                                                        <xs:documentation>Describe the endpoints associated with this node type</xs:documentation>
                                                                                </xs:annotation>
                                                                        </xs:element>
                                                                          <xs:element name="KtlLoggerSettings" type="FabricKtlLoggerSettingsType" minOccurs="0">
                                                                            <xs:annotation>
                                                                              <xs:documentation>Describe the KtlLogger information associated with this node type</xs:documentation>
                                                                            </xs:annotation>
                                                                          </xs:element>
                                                                          <xs:element name="LogicalDirectories" minOccurs="0">
                                                                            <xs:annotation>
                                                                              <xs:documentation>Describe the LogicalDirectories settings associated with this node type</xs:documentation>
                                                                            </xs:annotation>
                                                                            <xs:complexType>
                                                                              <xs:sequence>
                                                                                <xs:element name="LogicalDirectory" type="LogicalDirectoryType" maxOccurs="unbounded"/>
                                                                              </xs:sequence>
                                                                            </xs:complexType>
                                                                          </xs:element>
                                                                          <xs:element name="Certificates" type="CertificatesType" minOccurs="0">
                                                                                <xs:annotation>
                                                                                        <xs:documentation>Describe the certificates associated with this node type</xs:documentation>
                                                                                </xs:annotation>
                                                                        </xs:element>
                                                                        <xs:element name="PlacementProperties" minOccurs="0">
                                                                                <xs:annotation>
                                                                                        <xs:documentation>Describe the properties for this NodeType that will be used as placement constraints</xs:documentation>
                                                                                </xs:annotation>
                                                                                <xs:complexType>
                                                                                        <xs:sequence>
                                                                                                <xs:element name="Property" type="KeyValuePairType" minOccurs="0" maxOccurs="unbounded"/>
                                                                                        </xs:sequence>
                                                                                </xs:complexType>
                                                                        </xs:element>
                                                                        <xs:element name="Capacities" minOccurs="0">
                                                                                <xs:annotation>
                                                                                        <xs:documentation>The capacities of various metrics for this node type</xs:documentation>
                                                                                </xs:annotation>
                                                                                <xs:complexType>
                                                                                        <xs:sequence>
                                                                                                <xs:element name="Capacity" type="KeyValuePairType" minOccurs="0" maxOccurs="unbounded"/>
                                                                                        </xs:sequence>
                                                                                </xs:complexType>
                                                                        </xs:element>
                                                                        <xs:element name="SfssRgPolicies" minOccurs="0">
                                                                                <xs:annotation>
                                                                                        <xs:documentation>The SF system services resource governance policy for this node type</xs:documentation>
                                                                                </xs:annotation>
                                                                                <xs:complexType>
                                                                                        <xs:sequence>
                                                                                                <xs:element name="SfssRgPolicy" type="KeyValuePairType" minOccurs="0" maxOccurs="unbounded"/>
                                                                                        </xs:sequence>
                                                                                </xs:complexType>
                                                                        </xs:element>
                                                                </xs:all>
                                                                <xs:attribute name="Name" type="xs:string" use="required">
                                                                        <xs:annotation>
                                                                                <xs:documentation>Name of the NodeType</xs:documentation>
                                                                        </xs:annotation>
                                                                </xs:attribute>
                                                        </xs:complexType>
                                                </xs:element>
                                        </xs:sequence>
                                </xs:complexType>
                        </xs:element>
                        <xs:element name="Infrastructure">
                                <xs:complexType>
                                        <xs:choice>
                                                <xs:element name="WindowsServer">
                                                        <xs:complexType>
                                                                <xs:complexContent>
                                                                        <xs:extension base="WindowsInfrastructureType">
                                                                                <xs:attribute name="IsScaleMin" type="xs:boolean" default="false"/>
                                                                        </xs:extension>
                                                                </xs:complexContent>
                                                        </xs:complexType>
                                                </xs:element>
            <xs:element name="Linux">
              <xs:complexType>
                <xs:complexContent>
                  <xs:extension base="LinuxInfrastructureType">
                    <xs:attribute name="IsScaleMin" type="xs:boolean" default="false"/>
                  </xs:extension>
                </xs:complexContent>
              </xs:complexType>
            </xs:element>
                                                <xs:element name="WindowsAzure">
                                                        <xs:complexType>
                                                                <xs:sequence>
                                                                        <xs:element name="Roles">
                                                                                <xs:complexType>
                                                                                        <xs:sequence>
                                                                                                <xs:element name="Role" type="AzureRoleType" maxOccurs="unbounded"/>
                                                                                        </xs:sequence>
                                                                                </xs:complexType>
                                                                        </xs:element>
                                                                </xs:sequence>
                                                        </xs:complexType>
                                                </xs:element>
                                                <xs:element name="WindowsAzureStaticTopology">
                                                        <xs:complexType>
                                                                <xs:complexContent>
                                                                        <xs:extension base="WindowsInfrastructureType"/>
                                                                </xs:complexContent>
                                                        </xs:complexType>
                                                </xs:element>
                                                <xs:element name="Blackbird">
                                                        <xs:complexType>
                                                                <xs:sequence>
                                                                        <xs:element name="Roles">
                                                                                <xs:complexType>
                                                                                        <xs:sequence>
                                                                                                <xs:element name="Role" type="BlackbirdRoleType" minOccurs="1" maxOccurs="unbounded"/>
                                                                                        </xs:sequence>
                                                                                </xs:complexType>
                                                                        </xs:element>
                                                                </xs:sequence>
                                                        </xs:complexType>
                                                </xs:element>
                                                <xs:element name="PaaS">
                                                        <xs:complexType>
                                                                <xs:all>
                                                                        <xs:element name="Roles">
                                                                                <xs:complexType>
                                                                                        <xs:sequence>
                                                                                                <xs:element name="Role" type="PaaSRoleType" maxOccurs="unbounded"/>
                                                                                        </xs:sequence>
                                                                                </xs:complexType>
                                                                        </xs:element>
                                                                        <xs:element name="Votes">
                                                                                <xs:complexType>
                                                                                        <xs:sequence>
                                                                                                <xs:element name="Vote" type="PaaSVoteType" maxOccurs="unbounded"/>
                                                                                        </xs:sequence>
                                                                                </xs:complexType>
                                                                        </xs:element>
                                                                </xs:all>
                                                        </xs:complexType>
                                                </xs:element>
                                        </xs:choice>
                                </xs:complexType>
                        </xs:element>
                        <xs:element name="FabricSettings" type="SettingsOverridesType" minOccurs="0"/>
                        <xs:element name="Certificates" minOccurs="0">
                                <xs:complexType>
                                        <xs:sequence>
                                                <xs:element name="SecretsCertificate" type="FabricCertificateType" minOccurs="0"/>
                                        </xs:sequence>
                                </xs:complexType>
                        </xs:element>
                </xs:all>
                <xs:attribute name="Name" use="required">
                        <xs:annotation>
                                <xs:documentation>Name of the Cluster.</xs:documentation>
                        </xs:annotation>
                </xs:attribute>
                <xs:attribute name="Version" use="required">
                        <xs:annotation>
                                <xs:documentation>User-defined version string for the cluster manifest document.</xs:documentation>
                        </xs:annotation>
                </xs:attribute>
                <xs:attribute name="Description">
                        <xs:annotation>
                                <xs:documentation>Description for the Cluster Manifest.</xs:documentation>
                        </xs:annotation>
                </xs:attribute>
        </xs:complexType>
        

특성 세부 정보

이름

클러스터의 이름입니다.

attribute
name 이름
use 필수

버전

클러스터 매니페스트 문서에 대한 사용자 정의 버전 문자열입니다.

attribute
name 버전
use 필수

설명

클러스터 매니페스트에 대한 설명입니다.

attribute
name 설명

콘텐츠 요소 세부 정보

NodeTypes

attribute
name NodeTypes
Minoccurs 1

인프라

attribute
name 인프라

패브릭설정

attribute
name 패브릭설정
type SettingsOverridesType
Minoccurs 0

인증서

attribute
name 인증서
Minoccurs 0

CodePackageType complexType

정의된 서비스 유형을 지원하는 코드 패키지를 설명합니다. 이러한 서비스 유형 중 하나에 대해 서비스가 인스턴스화되면 코드 패키지의 진입점을 실행하여 이 매니페스트에 선언된 모든 코드 패키지가 활성화됩니다. 결과 프로세스는 런타임에 지원되는 서비스 유형을 등록해야 합니다. 여러 코드 패키지가 있는 경우 시스템에서 선언된 서비스 유형 중 하나를 검색할 때마다 모두 활성화됩니다.

attribute
콘텐츠 3개 요소, 2개 특성
정의 세계적 으로
name CodePackageType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="CodePackageType">
    <xs:annotation>
          <xs:documentation>Describes a code package that supports a defined service type. When a service is instantiated against one of these service types, all code packages declared in this manifest are activated by running their entry points. The resulting processes are expected to register the supported service types at run time. When there are multiple code packages, they are all activated whenever the system looks for any one of the declared service types.</xs:documentation>
        </xs:annotation>
    <xs:sequence>
      <xs:element name="SetupEntryPoint" minOccurs="0">
        <xs:annotation>
          <xs:documentation>A privileged entry point that by default runs with the same credentials as Service Fabric (typically the NETWORKSERVICE account) before any other entry point. The executable specified by EntryPoint is typically the long-running service host. The presence of a separate setup entry point avoids having to run the service host with high privileges for extended periods of time.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="ExeHost" type="ExeHostEntryPointType"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="EntryPoint" type="EntryPointDescriptionType" minOccurs="1"/>
      <xs:element name="EnvironmentVariables" type="EnvironmentVariablesType" minOccurs="0" maxOccurs="1"/>
    </xs:sequence>
    <xs:attributeGroup ref="VersionedName"/>
    <xs:attribute name="IsShared" type="xs:boolean" default="false">
      <xs:annotation>
        <xs:documentation>Indicates if the contents of this code package are shared by other code packages. If true, on an upgrade of this code package, all code packages will be restarted. This attribute is currently not supported and it's value will be ignored.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="IsActivator" type="xs:boolean" default="false">
      <xs:annotation>
        <xs:documentation>This attribute is for internal use only.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

Isshared

이 코드 패키지의 내용이 다른 코드 패키지에서 공유되는지를 나타냅니다. True인 경우 이 코드 패키지의 업그레이드 시, 모든 코드 패키지가 다시 시작됩니다. 이 특성은 현재 지원되지 않으며 값은 무시됩니다.

attribute
name Isshared
type xs:boolean
default false

IsActivator

이 특성은 내부 전용입니다.

attribute
name IsActivator
type xs:boolean
default false

콘텐츠 요소 세부 정보

SetupEntryPoint

기본적으로 다른 진입점 앞에 Service Fabric(일반적으로 NETWORKSERVICE 계정)과 동일한 자격 증명으로 실행되는 권한 있는 진입점입니다. EntryPoint에서 지정한 실행 파일은 일반적으로 장기 실행 서비스 호스트입니다. 별도의 설정 진입점이 있으면 오랜 시간 동안 높은 권한으로 서비스 호스트를 실행할 필요가 없습니다.

attribute
name SetupEntryPoint
Minoccurs 0

EntryPoint

attribute
name EntryPoint
type EntryPointDescriptionType
Minoccurs 1

환경변수

attribute
name 환경변수
type EnvironmentVariablesType
Minoccurs 0
Maxoccurs 1

ConfigOverrideType complexType

가져온 서비스 매니페스트의 특정 구성 패키지에 대한 구성 재정의에 대해 설명합니다.

attribute
콘텐츠 요소 1개, 특성 1개
정의 세계적 으로
name ConfigOverrideType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ConfigOverrideType">
    <xs:annotation>
      <xs:documentation>Describes the configuration overrides for a particular config package in the imported service manifest.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Settings" type="SettingsOverridesType" minOccurs="0"/>
    </xs:sequence>
    <xs:attribute name="Name" use="required">
      <xs:annotation>
        <xs:documentation>The name of the configuration package in the service manifest which contains the setting(s) to be overridden.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

이름

재정의할 설정을 포함하는 서비스 매니페스트의 구성 패키지 이름입니다.

attribute
name 이름
use 필수

콘텐츠 요소 세부 정보

설정

attribute
name 설정
type SettingsOverridesType
Minoccurs 0

ConfigPackageDescriptionType complexType

Name 특성으로 명명되고 Settings.xml 파일이 포함된 폴더를 선언합니다. 이 파일에는 런타임에 프로세스가 다시 읽을 수 있는 사용자 정의 키-값 쌍 설정 섹션이 포함되어 있습니다. 업그레이드하는 동안 ConfigPackage 버전만 변경되면 실행 중인 프로세스가 다시 시작되지 않습니다. 대신, 콜백에서는 구성 설정이 변경되어 동적으로 다시 로드할 수 있음을 프로세스에 알립니다.

attribute
콘텐츠 0개 요소, 4개 특성
정의 세계적 으로
name ConfigPackageDescriptionType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ConfigPackageDescriptionType">
    <xs:annotation>
      <xs:documentation>Declares a folder, named by the Name attribute, that contains a Settings.xml file. This file contains sections of user-defined, key-value pair settings that the process can read back at run time. During an upgrade, if only the ConfigPackage version has changed, then the running process is not restarted. Instead, a callback notifies the process that configuration settings have changed so they can be reloaded dynamically.</xs:documentation>
    </xs:annotation>
    <xs:attribute name="Name" use="required">
      <xs:annotation>
        <xs:documentation>Name of the versioned item.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="SectionName" use="required">
      <xs:annotation>
        <xs:documentation>Section Name of the ConfigPackage Settings.xml.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="MountPoint" type="xs:string" use="optional" default=""/>
    <xs:attribute name="EnvironmentVariableName" type="xs:string" use="optional" default=""/>
  </xs:complexType>
  

특성 세부 정보

이름

버전이 지정된 항목의 이름입니다.

attribute
name 이름
use 필수

SectionName

ConfigPackage 설정.xml의 섹션 이름입니다.

attribute
name SectionName
use 필수

MountPoint

attribute
name MountPoint
type xs:string
use 선택적
default

EnvironmentVariableName

attribute
name EnvironmentVariableName
type xs:string
use 선택적
default

ConfigPackagePoliciesType complexType

attribute
콘텐츠 요소 1개, 특성 1개
정의 세계적 으로
name ConfigPackagePoliciesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ConfigPackagePoliciesType">
    <xs:sequence>
      <xs:element name="ConfigPackage" type="ConfigPackageDescriptionType" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attribute name="CodePackageRef" use="required">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

CodePackageRef

attribute
name CodePackageRef
use 필수

콘텐츠 요소 세부 정보

ConfigPackage

attribute
name ConfigPackage
type ConfigPackageDescriptionType
Minoccurs 0
Maxoccurs 바인딩되지 않은

ConfigPackageType complexType

name 특성으로 명명된 폴더를 설정.xml 파일이 포함된 PackageRoot 아래에 선언합니다. 이 파일에는 런타임에 프로세스가 다시 읽을 수 있는 사용자 정의 키-값 쌍 설정 섹션이 포함되어 있습니다. 업그레이드하는 동안 ConfigPackage 버전만 변경되면 실행 중인 프로세스가 다시 시작되지 않습니다. 대신, 콜백에서는 구성 설정이 변경되어 동적으로 다시 로드할 수 있음을 프로세스에 알립니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name ConfigPackageType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ConfigPackageType">
    <xs:annotation>
          <xs:documentation>Declares a folder, named by the Name attribute, and PackageRoot that contains a Settings.xml file. This file contains sections of user-defined, key-value pair settings that the process can read back at run time. During an upgrade, if only the ConfigPackage version has changed, then the running process is not restarted. Instead, a callback notifies the process that configuration settings have changed so they can be reloaded dynamically.</xs:documentation>
        </xs:annotation>
    <xs:attributeGroup ref="VersionedName"/>
  </xs:complexType>
  

ContainerCertificateType complexType

컨테이너 환경에 노출해야 하는 X509 인증서에 대한 정보를 지정합니다. 인증서는 모든 클러스터 노드의 LocalMachine 저장소에 설치해야 합니다. 애플리케이션이 시작되면 런타임이 인증서를 읽고 PFX 파일 및 암호를 생성하거나(Windows인 경우) PEM 파일을 생성합니다(Linux인 경우). PFX 파일과 암호는 Certificates_ServicePackageName_CodePackageName_CertName_PFX 및 Certificates_ServicePackageName_CodePackageName_CertName_Password 환경 변수를 사용하여 컨테이너에서 액세스할 수 있습니다. PEM 파일은 Certificates_ServicePackageName_CodePackageName_CertName_PEM 및 Certificates_ServicePackageName_CodePackageName_CertName_PrivateKey 환경 변수를 사용하여 컨테이너에서 액세스할 수 있습니다.

attribute
콘텐츠 0개 요소, 8개 특성
정의 세계적 으로
name ContainerCertificateType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ContainerCertificateType">
    <xs:annotation>
        <xs:documentation>Specifies information about an X509 certificate which is to be exposed to the container environment. The certificate must be installed in the LocalMachine store of all the cluster nodes.
          When the application starts, the runtime reads the certificate and generates a PFX file and password (on Windows) or a PEM file (on Linux).
          The PFX file and password are accessible in the container using the Certificates_ServicePackageName_CodePackageName_CertName_PFX and
          Certificates_ServicePackageName_CodePackageName_CertName_Password environment variables. The PEM file is accessible in the container using the
          Certificates_ServicePackageName_CodePackageName_CertName_PEM and Certificates_ServicePackageName_CodePackageName_CertName_PrivateKey environment variables.</xs:documentation>
    </xs:annotation>
    <xs:attribute name="X509StoreName" type="xs:string" default="My">
        <xs:annotation>
            <xs:documentation>The store name for the X509 certificate.</xs:documentation>
        </xs:annotation>
    </xs:attribute>
    <xs:attribute name="X509FindValue" type="xs:string" use="optional">
        <xs:annotation>
            <xs:documentation>The thumbprint of the X509 certificate.</xs:documentation>
        </xs:annotation>
    </xs:attribute>
    <xs:attribute name="DataPackageRef" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>The name of data package that has the certificate files.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="DataPackageVersion" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>The version of data package that has the certificate files.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="RelativePath" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>The relative path to the certificate file inside data package.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="Password" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>Password/Private key for the certificate.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="IsPasswordEncrypted" type="xs:boolean" default="false">
        <xs:annotation>
           <xs:documentation>If true, the value of password is encrypted.</xs:documentation>
        </xs:annotation>
    </xs:attribute>
    <xs:attribute name="Name" type="xs:string" use="required">
        <xs:annotation>
            <xs:documentation>Identifier for the specific certificate information. This name is used to set the environment variable in the container.</xs:documentation>
        </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

X509StoreName

X509 인증서의 저장소 이름입니다.

attribute
name X509StoreName
type xs:string
default My

X509FindValue

X509 인증서의 지문입니다.

attribute
name X509FindValue
type xs:string
use 선택적

DataPackageRef

인증서 파일이 있는 데이터 패키지의 이름입니다.

attribute
name DataPackageRef
type xs:string
use 선택적

DataPackageVersion

인증서 파일이 있는 데이터 패키지의 버전입니다.

attribute
name DataPackageVersion
type xs:string
use 선택적

RelativePath

데이터 패키지 내의 인증서 파일에 대한 상대 경로입니다.

attribute
name RelativePath
type xs:string
use 선택적

암호

인증서의 암호/프라이빗 키입니다.

attribute
name 암호
type xs:string
use 선택적

IsPasswordEncrypted

true이면 암호 값이 암호화됩니다.

attribute
name IsPasswordEncrypted
type xs:boolean
default false

이름

특정 인증서 정보에 대한 식별자입니다. 이 이름은 컨테이너에서 환경 변수를 설정하는 데 사용됩니다.

attribute
name 이름
type xs:string
use 필수

ContainerHealthConfigType complexType

컨테이너에 대한 docker HEALTHCHECK 통합 옵션을 지정합니다.

attribute
콘텐츠 0개 요소, 2개 특성
정의 세계적 으로
name ContainerHealthConfigType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ContainerHealthConfigType">
    <xs:annotation>
        <xs:documentation>Specifies docker HEALTHCHECK integration options for the container.</xs:documentation>
    </xs:annotation>
    <xs:attribute name="IncludeDockerHealthStatusInSystemHealthReport" type="xs:boolean" use="optional" default="true">
        <xs:annotation>
            <xs:documentation>If the container has HEALTHCHECK enabled and docker reports health_status event for this container, 
            Service Fabric will include this as part of system reported health. When health_status is unhealthy
            Service Fabric will report a health warning. By default it is set to true.</xs:documentation>
        </xs:annotation>
    </xs:attribute>
    <xs:attribute name="RestartContainerOnUnhealthyDockerHealthStatus" type="xs:boolean" use="optional" default="false">
        <xs:annotation>
            <xs:documentation>If the container has HEALTHCHECK enabled and docker reports health_status event for this container, 
            Service Fabric will restart the container when health_status reported by docker is unhealthy.
            By default it is set to false.</xs:documentation>
        </xs:annotation>
    </xs:attribute>
  </xs:complexType>  
  

특성 세부 정보

IncludeDockerHealthStatusInSystemHealthReport

컨테이너에 HEALTHCHECK가 사용하도록 설정되어 있고 docker가 이 컨테이너에 대한 health_상태 이벤트를 보고하는 경우 Service Fabric은 이를 시스템 보고 상태의 일부로 포함합니다. health_상태 비정상인 경우 Service Fabric은 상태 경고를 보고합니다. 기본적으로 이 속성은 true로 설정됩니다.

attribute
name IncludeDockerHealthStatusInSystemHealthReport
type xs:boolean
use 선택적
default true

RestartContainerOnUnhealthyDockerHealthStatus

컨테이너에 HEALTHCHECK가 사용하도록 설정되어 있고 docker가 이 컨테이너에 대한 health_상태 이벤트를 보고하는 경우 docker에서 보고한 health_상태 비정상일 때 Service Fabric이 컨테이너를 다시 시작합니다. 기본적으로 false로 설정됩니다.

attribute
name RestartContainerOnUnhealthyDockerHealthStatus
type xs:boolean
use 선택적
default false

ContainerHostEntryPointType complexType

attribute
콘텐츠 4개 요소, 0개 특성
정의 세계적 으로
name ContainerHostEntryPointType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ContainerHostEntryPointType">
    <xs:sequence>
      <!--container image name-->
      <xs:element name="ImageName" type="xs:string">
        <xs:annotation>
          <xs:documentation>The repo and image on https://hub.docker.com or Azure Container Registry.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <!--comma delimited list of commands for container-->
      <xs:element name="Commands" type="xs:string" minOccurs="0" maxOccurs="1">
        <xs:annotation>
          <xs:documentation>Pass a comma delimited list of commands to the container.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="EntryPoint" type="xs:string" minOccurs="0" maxOccurs="1"/>
      <xs:element name="FromSource" type="xs:string" minOccurs="0" maxOccurs="1"/>
    </xs:sequence>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

ImageName

https://hub.docker.com의 리포지토리 및 이미지 또는 Azure Container Registry입니다.

attribute
name ImageName
type xs:string

명령

쉼표로 구분된 명령 목록을 컨테이너에 전달합니다.

attribute
name 명령
type xs:string
Minoccurs 0
Maxoccurs 1

EntryPoint

attribute
name EntryPoint
type xs:string
Minoccurs 0
Maxoccurs 1

FromSource

attribute
name FromSource
type xs:string
Minoccurs 0
Maxoccurs 1

ContainerHostPoliciesType complexType

attribute
콘텐츠 10개 요소, 8개 특성
정의 세계적 으로
name ContainerHostPoliciesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ContainerHostPoliciesType">
    <xs:choice minOccurs="0" maxOccurs="unbounded">
      <xs:element name="RepositoryCredentials" type="RepositoryCredentialsType" minOccurs="0" maxOccurs="1">
        <xs:annotation>
          <xs:documentation>Credentials for container image repository to pull images from.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="HealthConfig" type="ContainerHealthConfigType" minOccurs="0" maxOccurs="1">
        <xs:annotation>
          <xs:documentation>Specifies docker HEALTHCHECK integration options for the container.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="PortBinding" type="PortBindingType" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Specifies which endpoint resource to bind to the exposed container port.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="CertificateRef" type="ContainerCertificateType" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Specifies information for a certificate which will be exposed to the container.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="LogConfig" type="ContainerLoggingDriverType" minOccurs="0" maxOccurs="1">
        <xs:annotation>
          <xs:documentation>Specifies the logging driver for a container.</xs:documentation>
        </xs:annotation>
      </xs:element>
        <xs:element name="NetworkConfig" type="ContainerNetworkConfigType" minOccurs="0" maxOccurs="1">
            <xs:annotation>
                <xs:documentation>Specifies the network configuration for a container.</xs:documentation>
            </xs:annotation>
        </xs:element>
        <xs:element name="Volume" type="ContainerVolumeType" minOccurs="0" maxOccurs="unbounded">
            <xs:annotation>
                <xs:documentation>Specifies the volume to be bound to container.</xs:documentation>
            </xs:annotation>
        </xs:element>
      <xs:element name="SecurityOption" type="SecurityOptionsType" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Specifies securityoptions for the container.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ImageOverrides" type="ImageOverridesType" minOccurs="0" maxOccurs="1">
      <xs:annotation>
        <xs:documentation>Image names corresponding to OS build number to be launched.</xs:documentation>
      </xs:annotation>
      </xs:element>
      <xs:element name="Label" type="ContainerLabelType" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
            <xs:documentation>Specifies the labels for the container.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:choice>    
    <xs:attribute name="CodePackageRef" use="required">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="UseDefaultRepositoryCredentials" type="xs:string" use="optional" default="false">
      <xs:annotation>
        <xs:documentation>Use the default repository credentials specified in clusterManifest.xml
        instead of the credentials specified in the "RepositoryCredentials" tag inside ApplicationManifest.xml.
        </xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="UseTokenAuthenticationCredentials" type="xs:string" use="optional" default="false">
      <xs:annotation>
        <xs:documentation>Use MSI token authentication (or a custom specified endpoint) to obtain a token used for authentication.
        </xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="Isolation" use="optional" type="xs:string">
      <xs:annotation>
        <xs:documentation>Isolation mode for container. Valid values are default, process or Hyper-V (only supported for Windows containers).</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="Hostname" use="optional" type="xs:string">
      <xs:annotation>
        <xs:documentation>Specify Hostname for container.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="ContainersRetentionCount" use="optional" type="xs:string" default="0">
      <xs:annotation>
        <xs:documentation>Number of containers to leave behind when container repeatedly dies. By default this is set to 0 so no containers will be left behind.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="AutoRemove" use="optional" type="xs:string">
      <xs:annotation>
        <xs:documentation>Flag indicating whether removal of containers will occur automatically (true) or not (false) if the container is killed.  If false SF manually remove the containers.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="RunInteractive" use="optional" type="xs:string">
      <xs:annotation>
        <xs:documentation>Run container with interactive flag enabled. Valid values are true/false. false by default.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

CodePackageRef

attribute
name CodePackageRef
use 필수

UseDefaultRepositoryCredentials

ApplicationManifest.xml의 “RepositoryCredentials” 태그에 지정된 자격 증명 대신 clusterManifest.xml에 지정된 기본 리포지토리 자격 증명을 사용합니다.

attribute
name UseDefaultRepositoryCredentials
type xs:string
use 선택적
default false

UseTokenAuthenticationCredentials

MSI 토큰 인증(또는 사용자 지정 엔드포인트)을 사용하여 인증에 사용되는 토큰을 가져옵니다.

attribute
name UseTokenAuthenticationCredentials
type xs:string
use 선택적
default false

격리

컨테이너의 격리 모드입니다. 유효한 값은 default, process 또는 Hyper-V(Windows 컨테이너에만 지원됨)입니다.

attribute
name 격리
use 선택적
type xs:string

Hostname

컨테이너의 호스트 이름을 지정합니다.

attribute
name Hostname
use 선택적
type xs:string

ContainersRetentionCount

컨테이너가 반복적으로 중단될 때 남아 있는 컨테이너의 수입니다. 기본적으로 이 값은 0으로 설정되므로 컨테이너가 남아 있지 않습니다.

attribute
name ContainersRetentionCount
use 선택적
type xs:string
기본값 0

자동 수정

컨테이너가 종료될 경우 컨테이너 제거가 자동으로(true) 발생할지 여부(false)를 나타내는 플래그입니다. false SF인 경우 컨테이너를 수동으로 제거합니다.

attribute
name 자동 수정
use 선택적
type xs:string

RunInteractive

대화형 플래그를 사용하도록 설정된 컨테이너를 실행합니다. 유효한 값은 true/false입니다. 기본적으로 false입니다.

attribute
name RunInteractive
use 선택적
type xs:string

콘텐츠 요소 세부 정보

RepositoryCredentials

이미지를 끌어올 컨테이너 이미지 리포지토리의 자격 증명입니다.

attribute
name RepositoryCredentials
type RepositoryCredentialsType
Minoccurs 0
Maxoccurs 1

HealthConfig

컨테이너에 대한 docker HEALTHCHECK 통합 옵션을 지정합니다.

attribute
name HealthConfig
type ContainerHealthConfigType
Minoccurs 0
Maxoccurs 1

PortBinding

노출된 컨테이너 포트에 바인딩할 엔드포인트 리소스를 지정합니다.

attribute
name PortBinding
type PortBindingType
Minoccurs 0
Maxoccurs 바인딩되지 않은

CertificateRef

컨테이너에 노출될 인증서에 대한 정보를 지정합니다.

attribute
name CertificateRef
type ContainerCertificateType
Minoccurs 0
Maxoccurs 바인딩되지 않은

LogConfig

컨테이너에 대한 로깅 드라이버를 지정합니다.

attribute
name LogConfig
type ContainerLoggingDriverType
Minoccurs 0
Maxoccurs 1

NetworkConfig

컨테이너에 대한 네트워크 구성을 지정합니다.

attribute
name NetworkConfig
type ContainerNetworkConfigType
Minoccurs 0
Maxoccurs 1

볼륨

컨테이너에 바인딩할 볼륨을 지정합니다.

attribute
name 볼륨
type ContainerVolumeType
Minoccurs 0
Maxoccurs 바인딩되지 않은

SecurityOption

컨테이너에 대한 securityoptions를 지정합니다.

attribute
name SecurityOption
type SecurityOptionsType
Minoccurs 0
Maxoccurs 바인딩되지 않은

ImageOverrides

시작할 OS 빌드 번호에 해당하는 이미지 이름입니다.

attribute
name ImageOverrides
type ImageOverridesType
Minoccurs 0
Maxoccurs 1

Label

컨테이너의 레이블을 지정합니다.

attribute
name Label
type ContainerLabelType
Minoccurs 0
Maxoccurs 바인딩되지 않은

ContainerLabelType complexType

attribute
콘텐츠 0개 요소, 2개 특성
정의 세계적 으로
name ContainerLabelType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ContainerLabelType">
      <xs:attribute name="Name" type="xs:string" use="required"/>
      <xs:attribute name="Value" type="xs:string" use="required"/>
  </xs:complexType>
  

특성 세부 정보

이름

attribute
name 이름
type xs:string
use 필수

attribute
name
type xs:string
use 필수

ContainerLoggingDriverType complexType

attribute
콘텐츠 요소 1개, 특성 1개
정의 세계적 으로
name ContainerLoggingDriverType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ContainerLoggingDriverType">
      <xs:choice minOccurs="0" maxOccurs="unbounded">
          <xs:element name="DriverOption" type="DriverOptionType" minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
                  <xs:documentation>Driver options to be passed to driver.</xs:documentation>
              </xs:annotation>
          </xs:element>
      </xs:choice>
    <xs:attribute name="Driver" use="required">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

드라이버

attribute
name 드라이버
use 필수

콘텐츠 요소 세부 정보

DriverOption

드라이버에 전달할 드라이버 옵션입니다.

attribute
name DriverOption
type DriverOptionType
Minoccurs 0
Maxoccurs 바인딩되지 않은

ContainerNetworkConfigType complexType

attribute
콘텐츠 0개 요소, 1개 특성
정의 세계적 으로
name ContainerNetworkConfigType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ContainerNetworkConfigType">
        <xs:attribute name="NetworkType" use="required" type="xs:string">
            <xs:annotation>
                <xs:documentation>NetworkType. Currently supported types are "Open" and "Isolated".</xs:documentation>
            </xs:annotation>
        </xs:attribute>
    </xs:complexType>
  

특성 세부 정보

NetworkType

NetworkType. 현재 지원되는 종류는 “개방” 및 “격리”입니다.

attribute
name NetworkType
use 필수
type xs:string

ContainerNetworkPolicyEndpointBindingType complexType

attribute
콘텐츠 0개 요소, 1개 특성
정의 세계적 으로
name ContainerNetworkPolicyEndpointBindingType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ContainerNetworkPolicyEndpointBindingType">
    <xs:attribute name="EndpointRef">
      <xs:annotation>
        <xs:documentation>The name of the endpoint, which must be declared in the Resources section of the service manifest.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

EndpointRef

서비스 매니페스트의 리소스 섹션에서 선언해야 하는 엔드포인트의 이름입니다.

attribute
name EndpointRef

ContainerNetworkPolicyType complexType

서비스 패키지와 컨테이너 네트워크 간의 연결 및 서비스 패키지의 엔드포인트와 컨테이너 네트워크 간의 선택적 연결을 설명합니다.

attribute
콘텐츠 요소 1개, 특성 1개
정의 세계적 으로
name ContainerNetworkPolicyType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ContainerNetworkPolicyType">
    <xs:annotation>
      <xs:documentation>Describes association between a service package and a container network and optionally association between endpoints of the service package and the container network.</xs:documentation>
    </xs:annotation>
    <xs:choice minOccurs="0" maxOccurs="unbounded">
      <xs:element name="EndpointBinding" type="ContainerNetworkPolicyEndpointBindingType" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Specifies an endpoint that should be exposed on the container network.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:choice>
    <xs:attribute name="NetworkRef" use="required">
      <xs:annotation>
        <xs:documentation>The name of the container network (case-insensitive). It has to be name of a container network already created or reserved names including "Open" or "NAT".</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

NetworkRef

컨테이너 네트워크의 이름입니다(대/소문자를 구분하지 않습니다). "열기" 또는 "NAT"를 포함하여 이미 만든 또는 예약된 이름의 컨테이너 네트워크의 이름이어야 합니다.

attribute
name NetworkRef
use 필수

콘텐츠 요소 세부 정보

EndpointBinding

컨테이너 네트워크에 노출되어야 하는 엔드포인트를 지정합니다.

attribute
name EndpointBinding
type ContainerNetworkPolicyEndpointBindingType
Minoccurs 0
Maxoccurs 바인딩되지 않은

ContainerVolumeType complexType

attribute
콘텐츠 1개 요소, 4개 특성
정의 세계적 으로
name ContainerVolumeType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ContainerVolumeType">
        <xs:choice minOccurs="0" maxOccurs="unbounded">
            <xs:element name="DriverOption" type="DriverOptionType" minOccurs="0" maxOccurs="unbounded">
                <xs:annotation>
                    <xs:documentation>Driver options to be passed to driver.</xs:documentation>
                </xs:annotation>
            </xs:element>
        </xs:choice>
        <xs:attribute name="Source" use="required">
          <xs:annotation>
            <xs:documentation>The source folder which can be a folder in the VM that hosts the containers or a persistent remote store.</xs:documentation>
          </xs:annotation>
            <xs:simpleType>
                <xs:restriction base="xs:string">
                    <xs:minLength value="1"/>
                </xs:restriction>
            </xs:simpleType>
        </xs:attribute>
        <xs:attribute name="Destination" use="required">
          <xs:annotation>
            <xs:documentation>The location that the Source is mapped to within the running container. Thus, your destination can't be a location that already exists within your container.</xs:documentation>
          </xs:annotation>
            <xs:simpleType>
                <xs:restriction base="xs:string">
                    <xs:minLength value="1"/>
                </xs:restriction>
            </xs:simpleType>
        </xs:attribute>
        <xs:attribute name="Driver" use="optional">
          <xs:annotation>
            <xs:documentation>The driver name for the Azure Files volume plugin is "sfazurefile".</xs:documentation>
          </xs:annotation>
            <xs:simpleType>
                <xs:restriction base="xs:string">
                </xs:restriction>
            </xs:simpleType>
        </xs:attribute>
        <xs:attribute name="IsReadOnly" type="xs:boolean" default="false"/>
    </xs:complexType>
    

특성 세부 정보

원본

컨테이너 또는 영구 원격 저장소를 호스트하는 VM의 폴더일 수 있는 원본 폴더입니다.

attribute
name 원본
use 필수

대상

원본이 실행 중인 컨테이너 내에 매핑되는 위치입니다. 따라서 대상은 컨테이너 내에 이미 있는 위치가 될 수 없습니다.

attribute
name 대상
use 필수

드라이버

Azure Files 볼륨 플러그 인의 드라이버 이름은 "sfazurefile"입니다.

attribute
name 드라이버
use 선택적

IsReadOnly

attribute
name IsReadOnly
type xs:boolean
default false

콘텐츠 요소 세부 정보

DriverOption

드라이버에 전달할 드라이버 옵션입니다.

attribute
name DriverOption
type DriverOptionType
Minoccurs 0
Maxoccurs 바인딩되지 않은

DataPackageType complexType

런타임에 프로세스에서 사용할 정적 데이터 파일이 포함된 PackageRoot에서 Name 특성으로 명명된 폴더를 선언합니다. Service Fabric에서 서비스 매니페스트에 나열된 데이터 패키지를 업그레이드할 때 호스트 및 지원 패키지에 지정된 모든 EXE 및 DLLHOST를 재활용합니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name DataPackageType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="DataPackageType">
    <xs:annotation>
      <xs:documentation>Declares a folder, named by the Name attribute, under PackageRoot which contains static data files to be consumed by the process at runtime. Service Fabric will recycle all EXEs and DLLHOSTs specified in the host and support packages when any of the data packages listed in the service manifest are upgraded.</xs:documentation>
    </xs:annotation>
    <xs:attributeGroup ref="VersionedName"/>
  </xs:complexType>
  

DebugParametersType complexType

codepackage를 활성화할 때 연결할 디버거에 대한 정보를 지정합니다.

attribute
콘텐츠 4개 요소, 10개 특성
정의 세계적 으로
name DebugParametersType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="DebugParametersType">
    <xs:annotation>
      <xs:documentation>Specifies information on debugger to attach when activating codepackage.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="ContainerEntryPoint" type="xs:string" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Overridden entrypoint for containers so debugger can be launched.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ContainerMountedVolume" type="xs:string" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Volumes to be mounted inside container.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ContainerEnvironmentBlock" type="xs:string" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>EnvironmentBlock for containers.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ContainerLabel" type="xs:string" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Labels for containers in form key=value.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="ProgramExePath">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="Arguments">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="EntryPointType" use="optional" default="Main">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="Setup"/>
          <xs:enumeration value="Main"/>
          <xs:enumeration value="All"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="CodePackageLinkFolder">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="ConfigPackageLinkFolder">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="DataPackageLinkFolder">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="LockFile">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="WorkingFolder">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="DebugParametersFile">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="EnvironmentBlock">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

ProgramExePath

attribute
name ProgramExePath

인수

attribute
name 인수

EntryPointType

attribute
name EntryPointType
use 선택적
default 기본

CodePackageLinkFolder

attribute
name CodePackageLinkFolder

ConfigPackageLinkFolder

attribute
name ConfigPackageLinkFolder

DataPackageLinkFolder

attribute
name DataPackageLinkFolder

LockFile

attribute
name LockFile

WorkingFolder

attribute
name WorkingFolder

DebugParametersFile

attribute
name DebugParametersFile

EnvironmentBlock

attribute
name EnvironmentBlock

콘텐츠 요소 세부 정보

ContainerEntryPoint

디버거를 시작할 수 있도록 컨테이너의 진입점을 재정의합니다.

attribute
name ContainerEntryPoint
type xs:string
Minoccurs 0
Maxoccurs 바인딩되지 않은

ContainerMountedVolume

컨테이너 내부에 탑재할 볼륨입니다.

attribute
name ContainerMountedVolume
type xs:string
Minoccurs 0
Maxoccurs 바인딩되지 않은

ContainerEnvironmentBlock

컨테이너에 대한 EnvironmentBlock입니다.

attribute
name ContainerEnvironmentBlock
type xs:string
Minoccurs 0
Maxoccurs 바인딩되지 않은

ContainerLabel

key=value 형식의 컨테이너에 대한 레이블입니다.

attribute
name ContainerLabel
type xs:string
Minoccurs 0
Maxoccurs 바인딩되지 않은

DefaultServicesType complexType

이 애플리케이션 유형에 대해 애플리케이션이 인스턴스화될 때마다 자동으로 만드는 서비스 인스턴스를 선언합니다.

attribute
콘텐츠 2개 요소, 0개 특성
정의 세계적 으로
name DefaultServicesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="DefaultServicesType">
        <xs:annotation>
            <xs:documentation>Declares service instances that are automatically created whenever an application is instantiated against this application type.</xs:documentation>
        </xs:annotation>
        <xs:sequence>
            <xs:choice minOccurs="0" maxOccurs="unbounded">
                <xs:element name="Service">
                    <xs:annotation>
                        <xs:documentation>Declares a service to be created automatically when the application is instantiated.</xs:documentation>
                    </xs:annotation>
                    <xs:complexType>
                        <xs:choice minOccurs="0">
                            <xs:element name="StatelessService" type="StatelessServiceType"/>
                            <xs:element name="StatefulService" type="StatefulServiceType"/>
                        </xs:choice>
                        <xs:attribute name="Name" type="xs:string" use="required">
                            <xs:annotation>
                                <xs:documentation>The service name, used to form the fully qualified application name URI. The fully qualified name URI of the service would be: fabric:/ApplicationName/ServiceName.</xs:documentation>
                            </xs:annotation>
                        </xs:attribute>
                        <xs:attribute name="GeneratedIdRef" type="xs:string" use="optional">
                            <xs:annotation>
                                <xs:documentation>Reference to the auto generated id used by Visual Studio tooling.</xs:documentation>
                            </xs:annotation>
                        </xs:attribute>
                        <xs:attribute name="ServiceDnsName" type="xs:string" use="optional">
                          <xs:annotation>
                            <xs:documentation>The DNS name of the service.</xs:documentation>
                          </xs:annotation>
                        </xs:attribute>
                        <xs:attribute name="ServicePackageActivationMode" type="xs:string" use="optional" default="SharedProcess">
                          <xs:annotation>
                            <xs:documentation>ServicePackageActivationMode to be used when creating the service. Allowed values are 'SharedProcess' and 'ExclusiveProcess'. With SharedProcess mode, replica(s) or instance(s) from different partition(s) of service will share same activation of service package on a node. With ExclusiveProcess mode, each replica or instance of service will have its own dedicated activation of service package.</xs:documentation>
                          </xs:annotation>
                        </xs:attribute>
                    </xs:complexType>
                </xs:element>
                <xs:element name="ServiceGroup">
                    <xs:annotation>
                        <xs:documentation>A collection of services that are automatically located together, so they are also moved together during fail-over or resource management.</xs:documentation>
                    </xs:annotation>
                    <xs:complexType>
                        <xs:choice minOccurs="0">
                            <xs:element name="StatelessServiceGroup" type="StatelessServiceGroupType"/>
                            <xs:element name="StatefulServiceGroup" type="StatefulServiceGroupType"/>
                        </xs:choice>
                        <xs:attribute name="Name" type="xs:string" use="required">
                            <xs:annotation>
                                <xs:documentation>Name of this service relative to this application Name URI. Fully qualified Name of the service is a combination of Name Uri of the Application and this Name.</xs:documentation>
                            </xs:annotation>
                        </xs:attribute>
                        <xs:attribute name="ServicePackageActivationMode" type="xs:string" use="optional" default="SharedProcess">
                          <xs:annotation>
                            <xs:documentation>ServicePackageActivationMode to be used when creating the service. Allowed values are 'SharedProcess' and 'ExclusiveProcess'. With SharedProcess mode, replica(s) or instance(s) from different partition(s) of service will share same activation of service package on a node. With ExclusiveProcess mode, each replica or instance of service will have its own dedicated activation of service package.</xs:documentation>
                          </xs:annotation>
                        </xs:attribute>
                    </xs:complexType>
                </xs:element>
            </xs:choice>
        </xs:sequence>
    </xs:complexType>
    

콘텐츠 요소 세부 정보

서비스

애플리케이션이 인스턴스화될 때 자동으로 생성되도록 서비스를 선언합니다.

attribute
name 서비스

ServiceGroup

자동으로 함께 배치되는 서비스 컬렉션이므로 장애 조치(failover) 또는 리소스 관리 중에 함께 이동됩니다.

attribute
name ServiceGroup

DiagnosticsType complexType

애플리케이션에 대한 진단 설정을 설명합니다.

attribute
콘텐츠 3개 요소, 0개 특성
정의 세계적 으로
name DiagnosticsType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="DiagnosticsType">
    <xs:annotation>
      <xs:documentation>Describes the diagnostic settings for applications.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="CrashDumpSource" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Specifies crash dump collection. Crash dumps are collected for executables that host the code packages of all services belonging to the application.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Destinations" minOccurs="0">
              <xs:annotation>
                <xs:documentation>Destinations to which the crash dumps need to be transferred.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="LocalStore" type="LocalStoreType" minOccurs="0" maxOccurs="unbounded"/>
                  <xs:element name="FileStore" type="FileStoreType" minOccurs="0" maxOccurs="unbounded"/>
                  <xs:element name="AzureBlob" type="AzureBlobType" minOccurs="0" maxOccurs="unbounded"/>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
            <xs:element ref="Parameters" minOccurs="0" maxOccurs="1"/>
          </xs:sequence>
          <xs:attribute name="IsEnabled" type="xs:string">
            <xs:annotation>
              <xs:documentation>Whether or not crash dump collection is enabled. By default, it is not enabled.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:element name="ETWSource" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Specifies ETW trace collection. ETW traces are collected for the providers that are registered by all services belonging to the application.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Destinations" minOccurs="0">
              <xs:annotation>
                <xs:documentation>Destinations to which the crash dumps need to be transferred.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="LocalStore" type="LocalStoreETWType" minOccurs="0" maxOccurs="unbounded"/>
                  <xs:element name="FileStore" type="FileStoreETWType" minOccurs="0" maxOccurs="unbounded"/>
                  <xs:element name="AzureBlob" type="AzureBlobETWType" minOccurs="0" maxOccurs="unbounded"/>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
            <xs:element ref="Parameters" minOccurs="0" maxOccurs="1"/>
          </xs:sequence>
          <xs:attribute name="IsEnabled" type="xs:string">
            <xs:annotation>
              <xs:documentation>Whether or not ETW trace collection is enabled. By default, it is not enabled.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
      <xs:element name="FolderSource" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Specifies the collection of the contents of a particular folder on the local node.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Destinations" minOccurs="0">
              <xs:annotation>
                <xs:documentation>Destinations to which the folder contents need to be transferred.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="LocalStore" type="LocalStoreType" minOccurs="0" maxOccurs="unbounded"/>
                  <xs:element name="FileStore" type="FileStoreType" minOccurs="0" maxOccurs="unbounded"/>
                  <xs:element name="AzureBlob" type="AzureBlobType" minOccurs="0" maxOccurs="unbounded"/>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
            <xs:element ref="Parameters" minOccurs="0" maxOccurs="1"/>
          </xs:sequence>
          <xs:attribute name="IsEnabled" type="xs:string">
            <xs:annotation>
              <xs:documentation>Whether or not collection of the contents of this folder is enabled. By default, it is not enabled.</xs:documentation>
            </xs:annotation>
          </xs:attribute>
          <xs:attributeGroup ref="RelativeFolderPath"/>
          <xs:attributeGroup ref="DataDeletionAgeInDays"/>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

CrashDumpSource

크래시 덤프 컬렉션을 지정합니다. 크래시 덤프는 애플리케이션에 속한 모든 서비스의 코드 패키지를 호스트하는 실행 파일에 대해 수집됩니다.

attribute
name CrashDumpSource
Minoccurs 0

ETWSource

ETW 추적 컬렉션을 지정합니다. ETW 추적은 애플리케이션에 속한 모든 서비스에 의해 등록된 공급자에 대해 수집됩니다.

attribute
name ETWSource
Minoccurs 0

FolderSource

로컬 노드에 있는 특정 폴더의 콘텐츠 컬렉션을 지정합니다.

attribute
name FolderSource
Minoccurs 0
Maxoccurs 바인딩되지 않은

DllHostEntryPointType complexType

지원되지 않는 경우 사용하지 마세요. DLL 호스팅 지원(어셈블리 진입점)이 FWP.exe 프로세스를 통해 제공됩니다. Service Fabric은 FWP.exe(Fabric Worker Process)를 시작하고 활성화 프로세스의 일부로 어셈블리를 로드합니다.

attribute
콘텐츠 2개 요소, 1개 특성
정의 세계적 으로
name DllHostEntryPointType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="DllHostEntryPointType">
    <xs:annotation>
        <xs:documentation>Unsupported, do not use. DLL hosting support (assembly entry point) is provided through the FWP.exe process. Service Fabric starts the Fabric Worker Process (FWP.exe) and loads the assembly as part of the activation process.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:element name="UnmanagedDll" type="UnmanagedDllType"/>
        <xs:element name="ManagedAssembly" type="ManagedAssemblyType"/>
      </xs:choice>
    </xs:sequence>
    <xs:attribute name="IsolationPolicy" use="optional" default="DedicatedProcess">
      <xs:annotation>
        <xs:documentation>Unsupported, do not use. Defines the isolation policy for the Unmanaged DLLs and Managed Assemblies loaded in the DllHost. </xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="SharedDomain"/>
          <xs:enumeration value="DedicatedDomain"/>
          <xs:enumeration value="DedicatedProcess"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

IsolationPolicy

지원되지 않는 경우 사용하지 마세요. DllHost에서 로드된 관리되지 않는 DLL 및 관리되는 어셈블리에 대한 격리 정책을 정의합니다.

attribute
name IsolationPolicy
use 선택적
default DedicatedProcess

콘텐츠 요소 세부 정보

UnmanagedDll

attribute
name UnmanagedDll
type UnmanagedDllType

ManagedAssembly

attribute
name ManagedAssembly
type ManagedAssemblyType

DriverOptionType complexType

드라이버에 전달할 드라이버 옵션입니다. Azure Files 볼륨 플러그 인은 shareName(컨테이너에 대한 볼륨을 제공하는 Azure Files 파일 공유), storageAccountName(Azure Files 파일 공유를 포함하는 Azure Storage 계정), storageAccountKey(Azure Files 파일 공유를 포함하는 Azure Storage 계정의 액세스 키) 드라이버 옵션을 지원합니다. 이러한 세 가지 드라이버 옵션이 필요합니다.

attribute
콘텐츠 0개 요소, 4개 특성
정의 세계적 으로
name DriverOptionType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="DriverOptionType">
      <xs:annotation>
        <xs:documentation>Driver options to be passed to driver. The Azure Files volume plugin supports the following driver options:
          shareName (the Azure Files file share that provides the volume for the container), storageAccountName (the Azure storage account
          that contains the Azure Files file share), storageAccountKey (Access key for the Azure storage account that contains the Azure Files file share).
          These three driver options are required.</xs:documentation>
      </xs:annotation>
        <xs:attribute name="Name" type="xs:string" use="required">
          <xs:annotation>
            <xs:documentation>The name of the driver option. </xs:documentation>
          </xs:annotation>
        </xs:attribute>
        <xs:attribute name="Value" type="xs:string" use="required">
          <xs:annotation>
            <xs:documentation>The value of the driver option. </xs:documentation>
          </xs:annotation>
        </xs:attribute>
        <!-- TODO [dragosav] this needs to be deprecated; unclear if we can outright remove it, or give advance notice and remove it in an upcoming release. -->
        <xs:attribute name="IsEncrypted" type="xs:string" use="optional" default="false"/>
        <xs:attribute name="Type" type="xs:string" use="optional" default="PlainText">
          <xs:annotation>
            <xs:documentation>
              This value defines the protection of the value of the attribute. It may be SecretsStoreRef/Encrypted/PlainText.
              If set to SecretsStoreRef, the value references a secret stored encrypted in the cluster's SecureStore, which is de-referenced and decrypted upon activation.
              If set to Encrypted, the application developer is responsible for creating a certificate and using the Invoke-ServiceFabricEncryptSecret cmdlet to encrypt sensitive information.
            </xs:documentation>
          </xs:annotation>
        </xs:attribute>
    </xs:complexType>
    

특성 세부 정보

이름

드라이버 옵션의 이름입니다.

attribute
name 이름
type xs:string
use 필수

드라이버 옵션의 값입니다.

attribute
name
type xs:string
use 필수

IsEncrypted

attribute
name IsEncrypted
type xs:string
use 선택적
default false

Type

이 값은 특성 값의 보호를 정의합니다. SecretsStoreRef/Encrypted/PlainText일 수 있습니다. SecretsStoreRef로 설정하면 이 값은 클러스터의 SecureStore에 암호화된 저장된 비밀을 참조합니다. 이 암호는 활성화 시 참조되지 않으며 암호 해독됩니다. Encrypted로 설정된 경우 애플리케이션 개발자는 인증서를 만들고 Invoke-ServiceFabricEncryptSecret cmdlet을 사용하여 중요한 정보를 암호화하는 작업을 담당합니다.

attribute
name Type
type xs:string
use 선택적
default PlainText

EndpointBindingPolicyType complexType

attribute
콘텐츠 0개 요소, 2개 특성
정의 세계적 으로
name EndpointBindingPolicyType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="EndpointBindingPolicyType">
    <xs:attribute name="EndpointRef">
      <xs:annotation>
        <xs:documentation>The name of the endpoint, which must be declared in the Resources section of the service manifest.  When using HTTPS, do not use
          the same port and certificate for different service instances (independent of the application) deployed to the same node. Upgrading two different services
          using the same port in different application instances will result in an upgrade failure.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="CertificateRef" use="required">
      <xs:annotation>
        <xs:documentation>The name of the endpoint certificate, declared in the Certificates section, to return to the client. </xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

EndpointRef

서비스 매니페스트의 리소스 섹션에서 선언해야 하는 엔드포인트의 이름입니다. HTTPS를 사용하는 경우 동일한 노드에 배포된 다른 서비스 인스턴스(애플리케이션과 무관)에 대해 동일한 포트 및 인증서를 사용하지 마세요. 서로 다른 애플리케이션 인스턴스에서 동일한 포트를 사용하여 두 개의 서로 다른 서비스를 업그레이드하면 업그레이드 실패가 발생합니다.

attribute
name EndpointRef

CertificateRef

클라이언트로 돌아갈 인증서 섹션에 선언된 엔드포인트 인증서의 이름입니다.

attribute
name CertificateRef
use 필수

EndpointCertificateType complexType

엔드포인트를 보호하는 데 사용되는 X509 인증서에 대한 정보를 지정합니다.

attribute
콘텐츠 0개 요소, 3개 특성
정의 세계적 으로
name EndpointCertificateType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="EndpointCertificateType">
                <xs:annotation>
                        <xs:documentation>Specifies information about an X509 certificate used to secure an endpoint.</xs:documentation>
                </xs:annotation>
                <xs:attribute name="X509StoreName" type="xs:string" default="My">
                        <xs:annotation>
                                <xs:documentation>The store name for the X509 certificate.</xs:documentation>
                        </xs:annotation>
                </xs:attribute>
                <xs:attribute name="X509FindValue" use="required">
                        <xs:annotation>
                                <xs:documentation>The thumbprint of the X509 certificate.</xs:documentation>
                        </xs:annotation>
                </xs:attribute>
                <xs:attribute name="Name" type="xs:string" use="optional"/>
        </xs:complexType>
        

특성 세부 정보

X509StoreName

X509 인증서의 저장소 이름입니다.

attribute
name X509StoreName
type xs:string
default My

X509FindValue

X509 인증서의 지문입니다.

attribute
name X509FindValue
use 필수

이름

attribute
name 이름
type xs:string
use 선택적

EndpointOverrideType complexType

attribute
콘텐츠 0개 요소, 6개 특성
정의 세계적 으로
name EndpointOverrideType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="EndpointOverrideType">
    <xs:attribute name="Name" use="required">
      <xs:annotation>
      <xs:documentation>The name of the endpoint to override. A string.</xs:documentation>
    </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="Port" type="xs:string">
      <xs:annotation>
        <xs:documentation>The port number for the endpoint. Overrides the value in the service manifest.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
     <xs:attribute name="Protocol" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>The protocol for the endpoint. Overrides the value in the service manifest. HTTPS endpoints must also have an EndpointCertificate and an EndpointBindingPolicy declared in the application manifest. The protocol cannot be changed later in an application upgrade. </xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="Type" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>The type of the endpoint. Overrides the value in the service manifest. Input endpoints are used to expose the port to the outside, internal endpoints are used for intra-application communication.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="UriScheme" use="optional">
      <xs:annotation>
        <xs:documentation>The URI scheme. Overrides the value in the service manifest. For example, "http", "https", or "ftp".</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="PathSuffix" use="optional">
      <xs:annotation>
        <xs:documentation>The path suffix. For example, "/myapp1". Overrides the value in the service manifest.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

이름

재정의할 엔드포인트의 이름입니다. 문자열

attribute
name 이름
use 필수

포트

엔드포인트의 포트 번호입니다. 서비스 매니페스트의 값을 재정의합니다.

attribute
name 포트
type xs:string

프로토콜

엔드포인트의 프로토콜입니다. 서비스 매니페스트의 값을 재정의합니다. 또한 HTTPS 엔드포인트에는 EndpointCertificate 및 EndpointBindingPolicy가 애플리케이션 매니페스트에 선언되어 있어야 합니다. 나중에 애플리케이션 업그레이드에서 프로토콜을 변경할 수 없습니다.

attribute
name 프로토콜
type xs:string
use 선택적

Type

엔드포인트의 형식입니다. 서비스 매니페스트의 값을 재정의합니다. 입력 엔드포인트는 외부에 포트를 노출하는 데 사용되며 내부 엔드포인트는 애플리케이션 내 통신에 사용됩니다.

attribute
name Type
type xs:string
use 선택적

UriScheme

URI 서비스 매니페스트의 값을 재정의합니다. 예를 들어 "http", "https" 또는 "ftp"입니다.

attribute
name UriScheme
use 선택적

PathSuffix

경로 접미사입니다. 예를 들어 "/myapp1"입니다. 서비스 매니페스트의 값을 재정의합니다.

attribute
name PathSuffix
use 선택적

EndpointType complexType

서비스의 엔드포인트를 정의합니다. 특정 포트를 요청할 수 있습니다. 포트를 명시적으로 지정하지 않으면 예약된 애플리케이션 포트 범위에서 포트가 할당됩니다. 서로 다른 클러스터 노드에서 실행되는 서비스 복제본(replica) 서로 다른 포트 번호를 할당할 수 있지만 동일한 노드에서 실행되는 동일한 서비스의 복제본(replica) 동일한 포트를 공유합니다. 이러한 포트는 서비스 복제본(replica) 복제본(replica)tion 또는 클라이언트 요청 수신 대기와 같은 다양한 용도로 사용할 수 있습니다.

attribute
콘텐츠 0개 요소, 8개 특성
정의 세계적 으로
name EndpointType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="EndpointType">
    <xs:annotation>
      <xs:documentation>Defines an endpoint for the service. Specific ports can be requested.  If a port is not explicitly specified, a port is assigned from the reserved application port range. Service replicas running on different cluster nodes can be assigned different port numbers, while replicas of the same service running on the same node share the same port. Such ports can be used by the service replicas for various purposes such as replication or listening for client requests.</xs:documentation>
    </xs:annotation>
    <xs:attribute name="Name" use="required">
      <xs:annotation>
      <xs:documentation>The name of the endpoint.</xs:documentation>
    </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="Protocol" use="optional" default="tcp">
      <xs:annotation>
        <xs:documentation>The protocol for the endpoint: http, https, tcp, or udp. HTTPS endpoints must also have an EndpointCertificate and an EndpointBindingPolicy declared in the application manifest. The protocol cannot be changed later in an application upgrade. </xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="http"/>
          <xs:enumeration value="https"/>
          <xs:enumeration value="tcp"/>
          <xs:enumeration value="udp"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="Type" use="optional" default="Internal">
      <xs:annotation>
        <xs:documentation>The type of the endpoint.  Input endpoints are used to expose the port to the outside, internal endpoints are used for intra-application communication.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="Input"/>
          <xs:enumeration value="Internal"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="CodePackageRef" use="optional">
      <xs:annotation>
        <xs:documentation>The name of code Package that will use this endpoint.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="CertificateRef">
      <xs:annotation>
        <xs:documentation>Do not use, this attribute is not supported.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="Port">
      <xs:annotation>
        <xs:documentation>The port will be replaced with a port determined by Microsoft Azure Service Fabric after registering with Http.sys or BFE.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:int">
          <xs:minInclusive value="0"/>
          <xs:maxInclusive value="65535"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="UriScheme">
      <xs:annotation>
        <xs:documentation>The URI scheme.  For example, "http", "https", or "ftp".</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="PathSuffix">
      <xs:annotation>
        <xs:documentation>The path suffix.  For example, "/myapp1".</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

이름

엔드포인트의 이름입니다.

attribute
name 이름
use 필수

프로토콜

엔드포인트에 대한 프로토콜( http, https, tcp 또는 udp)입니다. 또한 HTTPS 엔드포인트에는 EndpointCertificate 및 EndpointBindingPolicy가 애플리케이션 매니페스트에 선언되어 있어야 합니다. 나중에 애플리케이션 업그레이드에서 프로토콜을 변경할 수 없습니다.

attribute
name 프로토콜
use 선택적
default tcp

Type

엔드포인트의 형식입니다. 입력 엔드포인트는 외부에 포트를 노출하는 데 사용되며 내부 엔드포인트는 애플리케이션 내 통신에 사용됩니다.

attribute
name Type
use 선택적
default 내부

CodePackageRef

이 엔드포인트를 사용할 코드 패키지의 이름입니다.

attribute
name CodePackageRef
use 선택적

CertificateRef

사용하지 마세요. 이 특성은 지원되지 않습니다.

attribute
name CertificateRef

포트

포트는 Http.sys 또는 BFE에 등록한 후 Microsoft Azure Service Fabric에서 결정한 포트로 바뀝니다.

attribute
name 포트

UriScheme

URI 예를 들어 "http", "https" 또는 "ftp"입니다.

attribute
name UriScheme

PathSuffix

경로 접미사입니다. 예를 들어 "/myapp1"입니다.

attribute
name PathSuffix

EntryPointDescriptionType complexType

EntryPoint에서 지정한 실행 파일은 일반적으로 장기 실행 서비스 호스트입니다. 별도의 설정 진입점이 있으면 오랜 시간 동안 높은 권한으로 서비스 호스트를 실행할 필요가 없습니다. SetupEntryPoint가 성공적으로 종료된 후 EntryPoint에서 지정한 실행 파일이 실행됩니다. 종료되거나 충돌하는 경우 결과 프로세스가 모니터링되고 다시 시작됩니다(SetupEntryPoint에서 다시 시작).

attribute
콘텐츠 3개 요소, 0개 특성
정의 세계적 으로
name EntryPointDescriptionType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="EntryPointDescriptionType">
    <xs:annotation>
      <xs:documentation>The executable specified by EntryPoint is typically the long-running service host. The presence of a separate setup entry point avoids having to run the service host with high privileges for extended periods of time. The executable specified by EntryPoint is run after SetupEntryPoint exits successfully. The resulting process is monitored and restarted (beginning again with SetupEntryPoint) if it ever terminates or crashes.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:choice>
        <xs:element name="ExeHost">
          <xs:complexType>
            <xs:complexContent>
              <xs:extension base="ExeHostEntryPointType">
                <xs:sequence>
                  <xs:element name="RunFrequency" minOccurs="0">
                    <xs:complexType>
                      <xs:attribute name="IntervalInSeconds" use="required">
                        <xs:simpleType>
                          <xs:restriction base="xs:int">
                            <xs:minInclusive value="0"/>
                            <xs:maxInclusive value="2147483647"/>
                          </xs:restriction>
                        </xs:simpleType>
                      </xs:attribute>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
              </xs:extension>
            </xs:complexContent>
          </xs:complexType>
        </xs:element>
        <xs:element name="DllHost" type="DllHostEntryPointType"/>
        <xs:element name="ContainerHost" type="ContainerHostEntryPointType"/>
      </xs:choice>
    </xs:sequence>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

ExeHost

attribute
name ExeHost

Dllhost

attribute
name Dllhost
type DllHostEntryPointType

ContainerHost

attribute
name ContainerHost
type ContainerHostEntryPointType

EnvironmentOverridesType complexType

attribute
콘텐츠 요소 1개, 특성 1개
정의 세계적 으로
name EnvironmentOverridesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="EnvironmentOverridesType">
    <xs:sequence>
      <xs:element name="EnvironmentVariable" type="EnvironmentVariableOverrideType" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Environment variable.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="CodePackageRef" use="required">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>

  

특성 세부 정보

CodePackageRef

attribute
name CodePackageRef
use 필수

콘텐츠 요소 세부 정보

EnvironmentVariable

환경 변수입니다.

attribute
name EnvironmentVariable
type EnvironmentVariableOverrideType
Minoccurs 0
Maxoccurs 바인딩되지 않은

EnvironmentType complexType

attribute
콘텐츠 3개 요소, 0개 특성
정의 세계적 으로
name EnvironmentType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="EnvironmentType">
        <xs:sequence>
            <xs:element name="Principals" type="SecurityPrincipalsType"/>
            <xs:element name="Policies" type="ApplicationPoliciesType"/>
            <xs:element name="Diagnostics" type="DiagnosticsType"/>
        </xs:sequence>
        <xs:attributeGroup ref="VersionedItemAttrGroup"/>
    </xs:complexType>
    

콘텐츠 요소 세부 정보

보안 주체

attribute
name 보안 주체
type SecurityPrincipalsType

정책

attribute
name 정책
type ApplicationPoliciesType

진단

attribute
name 진단
type DiagnosticsType

EnvironmentVariableOverrideType complexType

attribute
콘텐츠 0개 요소, 3개 특성
정의 세계적 으로
name EnvironmentVariableOverrideType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="EnvironmentVariableOverrideType">
    <xs:attribute name="Name" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>Name of environment variable.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="Value">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="0"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="Type" type="xs:string" use="optional"/>
  </xs:complexType>  
  

특성 세부 정보

이름

환경 변수의 이름입니다.

attribute
name 이름
type xs:string
use 필수

attribute
name

유형

attribute
name Type
type xs:string
use 선택적

EnvironmentVariableType complexType

attribute
콘텐츠 0개 요소, 3개 특성
정의 세계적 으로
name EnvironmentVariableType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="EnvironmentVariableType">
    <xs:attribute name="Name" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>Name of environment variable.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="Value">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="0"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="Type" use="optional" default="PlainText">
      <xs:annotation>
        <xs:documentation>
          The type for the Environment Variable. It can be PlainText/Encrypted/SecretsStoreRef.
          If set to SecretsStoreRef, we retrieve  the reference value from the SecretStore.
          If set to Encrypted, the application developer is responsible for creating a certificate and using the Invoke-ServiceFabricEncryptSecret cmdlet to encrypt sensitive information.
        </xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="PlainText"/>
          <xs:enumeration value="Encrypted"/>
          <xs:enumeration value="SecretsStoreRef"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

이름

환경 변수의 이름입니다.

attribute
name 이름
type xs:string
use 필수

attribute
name

유형

환경 변수의 형식입니다. PlainText/Encrypted/SecretsStoreRef일 수 있습니다. SecretsStoreRef로 설정된 경우 SecretStore에서 참조 값을 검색합니다. Encrypted로 설정된 경우 애플리케이션 개발자는 인증서를 만들고 Invoke-ServiceFabricEncryptSecret cmdlet을 사용하여 중요한 정보를 암호화하는 작업을 담당합니다.

attribute
name Type
use 선택적
default PlainText

EnvironmentVariablesType complexType

환경 변수를 컨테이너 또는 exe.에 전달합니다.

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name EnvironmentVariablesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="EnvironmentVariablesType">
    <xs:annotation>
      <xs:documentation>Pass environment variables to your container or exe. </xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="EnvironmentVariable" type="EnvironmentVariableType" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Environment variable.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

EnvironmentVariable

환경 변수입니다.

attribute
name EnvironmentVariable
type EnvironmentVariableType
Minoccurs 0
Maxoccurs 바인딩되지 않은

ExeHostEntryPointType complexType

attribute
콘텐츠 4개 요소, 1개 특성
정의 세계적 으로
name ExeHostEntryPointType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ExeHostEntryPointType">

    <xs:sequence>
      <xs:element name="Program" type="xs:string">
        <xs:annotation>
          <xs:documentation>The executable name. For example, "MySetup.bat" or "MyServiceHost.exe".</xs:documentation>
        </xs:annotation></xs:element>
      <xs:element name="Arguments" type="xs:string" minOccurs="0"/>
      <xs:element name="WorkingFolder" default="Work" minOccurs="0">
        <xs:simpleType>
          <xs:restriction base="xs:string">
            <xs:enumeration value="Work"/>
            <xs:enumeration value="CodePackage"/>
            <xs:enumeration value="CodeBase"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="ConsoleRedirection" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Warning! Do not use console redirection in a production application, only use it for local development and debugging. Redirects console output from the startup script to an output file in the application folder called "log" on the cluster node where the application is deployed and run.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:attribute name="FileRetentionCount" default="2">
            <xs:annotation>
              <xs:documentation>Sets the number of console redirection output files to retain.  Must be a positive integer, the default value is "2".</xs:documentation>
            </xs:annotation>
            <xs:simpleType>
              <xs:restriction base="xs:int">
                <xs:minInclusive value="1"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
          <xs:attribute name="FileMaxSizeInKb" default="20480">
            <xs:annotation>
              <xs:documentation>Set the maximum size of a console redirection output file.  Must be a positive integer greater than 128KB, the default value is "20480".</xs:documentation>
            </xs:annotation>
            <xs:simpleType>
              <xs:restriction base="xs:int">
                <xs:minInclusive value="128"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="IsExternalExecutable" type="xs:boolean" default="false">
      <xs:annotation>
        <xs:documentation>True if the executable is external to the application package. Program existence check in the application package is skipped.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

IsExternalExecutable

실행 파일이 애플리케이션 패키지 외부에 있으면 True입니다. 애플리케이션 패키지의 프로그램 존재 검사를 건너뜁니다.

attribute
name IsExternalExecutable
type xs:boolean
default false

콘텐츠 요소 세부 정보

프로그램

실행 파일 이름입니다. 예를 들어 "MySetup.bat" 또는 "MyServiceHost.exe"입니다.

attribute
name 프로그램
type xs:string

인수

attribute
name 인수
type xs:string
Minoccurs 0

WorkingFolder

attribute
name WorkingFolder
default 근무
Minoccurs 0

ConsoleRedirection

경고 프로덕션 애플리케이션에서 콘솔 리디렉션을 사용하지 않고 로컬 개발 및 디버깅에만 사용합니다. 시작 스크립트에서 애플리케이션이 배포되고 실행되는 클러스터 노드의 "log"라는 애플리케이션 폴더의 출력 파일로 콘솔 출력을 리디렉션합니다.

attribute
name ConsoleRedirection
Minoccurs 0

ExtensionsType complexType

다른 요소에 적용할 수 있는 확장을 설명합니다.

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name ExtensionsType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ExtensionsType">
    <xs:annotation>
      <xs:documentation>Describes extensions that can be applied to other elements.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Extension" minOccurs="0" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:any namespace="##other" processContents="lax"/>
          </xs:sequence>
          <xs:attribute name="Name" use="required">
            <xs:simpleType>
              <xs:restriction base="xs:string">
                <xs:minLength value="1"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
          <xs:attribute name="GeneratedId" type="xs:string" use="optional"/>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

내선 번호

attribute
name 내선 번호
Minoccurs 0
Maxoccurs 바인딩되지 않은

FabricCertificateType complexType

인증서 정보를 지정합니다.

attribute
콘텐츠 0개 요소, 5개 특성
정의 세계적 으로
name FabricCertificateType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="FabricCertificateType">
                <xs:annotation>
                        <xs:documentation>This specifies the certificate information.</xs:documentation>
                </xs:annotation>
                <xs:attribute name="X509StoreName" type="xs:string" default="My">
                        <xs:annotation>
                                <xs:documentation>The store name for the X509 certificate.</xs:documentation>
                        </xs:annotation>
                </xs:attribute>
                <xs:attribute name="X509FindType" default="FindByThumbprint">
                        <xs:annotation>
                                <xs:documentation>This is Used only when credential is X509. This specifies how to find the certificate whether by the name or the thumbprint </xs:documentation>
                        </xs:annotation>
                        <xs:simpleType>
                                <xs:restriction base="xs:string">
                                        <xs:enumeration value="FindByThumbprint"/>
                                        <xs:enumeration value="FindBySubjectName"/>
                                        <xs:enumeration value="FindByExtension"/>
                                </xs:restriction>
                        </xs:simpleType>
                </xs:attribute>
                <xs:attribute name="X509FindValue" use="required">
                        <xs:annotation>
                                <xs:documentation>This is Used only when credential is X509. This is the actual name or thumbprint of the certificate.</xs:documentation>
                        </xs:annotation>
                </xs:attribute>
                <xs:attribute name="X509FindValueSecondary" use="optional" default="">
                        <xs:annotation>
                                <xs:documentation>This is used only when credential is X509. This is the actual name or thumbprint of the certificate.</xs:documentation>
                        </xs:annotation>
                </xs:attribute>
                <xs:attribute name="Name" type="xs:string" use="optional"/>
        </xs:complexType>
        

특성 세부 정보

X509StoreName

X509 인증서의 저장소 이름입니다.

attribute
name X509StoreName
type xs:string
default My

X509FindType

자격 증명이 X509인 경우에만 사용됩니다. 이름 또는 지문으로 인증서를 찾는 방법을 지정합니다.

attribute
name X509FindType
default FindByThumbprint

X509FindValue

자격 증명이 X509인 경우에만 사용됩니다. 인증서의 실제 이름 또는 지문입니다.

attribute
name X509FindValue
use 필수

X509FindValueSecondary

자격 증명이 X509인 경우에만 사용됩니다. 인증서의 실제 이름 또는 지문입니다.

attribute
name X509FindValueSecondary
use 선택적
default

이름

attribute
name 이름
type xs:string
use 선택적

FabricEndpointsType complexType

attribute
콘텐츠 21개 요소, 0개 특성
정의 세계적 으로
name FabricEndpointsType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="FabricEndpointsType">
    <xs:all>
      <xs:element name="ClientConnectionEndpoint" type="InputEndpointType"/>
      <xs:element name="LeaseDriverEndpoint" type="InternalEndpointType"/>
      <xs:element name="ClusterConnectionEndpoint" type="InternalEndpointType"/>
      <xs:element name="HttpGatewayEndpoint" type="InputEndpointType" minOccurs="0"/>
      <xs:element name="HttpApplicationGatewayEndpoint" type="InputEndpointType" minOccurs="0"/>
      <xs:element name="ServiceConnectionEndpoint" type="InternalEndpointType" minOccurs="0"/>
      <xs:element name="ClusterManagerReplicatorEndpoint" type="InternalEndpointType" minOccurs="0"/>
      <xs:element name="RepairManagerReplicatorEndpoint" type="InternalEndpointType" minOccurs="0"/>
      <xs:element name="NamingReplicatorEndpoint" type="InternalEndpointType" minOccurs="0"/>
      <xs:element name="FailoverManagerReplicatorEndpoint" type="InternalEndpointType" minOccurs="0"/>
      <xs:element name="ImageStoreServiceReplicatorEndpoint" type="InternalEndpointType" minOccurs="0"/>
      <xs:element name="UpgradeServiceReplicatorEndpoint" type="InternalEndpointType" minOccurs="0"/>
      <xs:element name="FaultAnalysisServiceReplicatorEndpoint" type="InternalEndpointType" minOccurs="0"/>
      <xs:element name="BackupRestoreServiceReplicatorEndpoint" type="InternalEndpointType" minOccurs="0"/>
      <xs:element name="UpgradeOrchestrationServiceReplicatorEndpoint" type="InternalEndpointType" minOccurs="0"/>
      <xs:element name="CentralSecretServiceReplicatorEndpoint" type="InternalEndpointType" minOccurs="0"/>
      <xs:element name="EventStoreServiceReplicatorEndpoint" type="InternalEndpointType" minOccurs="0"/>
      <xs:element name="GatewayResourceManagerReplicatorEndpoint" type="InternalEndpointType" minOccurs="0"/>
      <xs:element name="DefaultReplicatorEndpoint" type="InternalEndpointType" minOccurs="0"/>
      <xs:element name="ApplicationEndpoints" minOccurs="0">
        <xs:complexType>
          <xs:attribute name="StartPort" type="xs:int" use="required"/>
          <xs:attribute name="EndPort" type="xs:int" use="required"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="EphemeralEndpoints" minOccurs="0">
        <xs:complexType>
          <xs:attribute name="StartPort" type="xs:int" use="required"/>
          <xs:attribute name="EndPort" type="xs:int" use="required"/>
        </xs:complexType>
      </xs:element>
    </xs:all>
  </xs:complexType>

  

콘텐츠 요소 세부 정보

Client커넥트ionEndpoint

attribute
name Client커넥트ionEndpoint
type InputEndpointType

LeaseDriverEndpoint

attribute
name LeaseDriverEndpoint
type InternalEndpointType

Cluster커넥트ionEndpoint

attribute
name Cluster커넥트ionEndpoint
type InternalEndpointType

HttpGatewayEndpoint

attribute
name HttpGatewayEndpoint
type InputEndpointType
Minoccurs 0

HttpApplicationGatewayEndpoint

attribute
name HttpApplicationGatewayEndpoint
type InputEndpointType
Minoccurs 0

Service커넥트ionEndpoint

attribute
name Service커넥트ionEndpoint
type InternalEndpointType
Minoccurs 0

ClusterManagerReplicatorEndpoint

attribute
name ClusterManagerReplicatorEndpoint
type InternalEndpointType
Minoccurs 0

RepairManagerReplicatorEndpoint

attribute
name RepairManagerReplicatorEndpoint
type InternalEndpointType
Minoccurs 0

NamingReplicatorEndpoint

attribute
name NamingReplicatorEndpoint
type InternalEndpointType
Minoccurs 0

FailoverManagerReplicatorEndpoint

attribute
name FailoverManagerReplicatorEndpoint
type InternalEndpointType
Minoccurs 0

ImageStoreServiceReplicatorEndpoint

attribute
name ImageStoreServiceReplicatorEndpoint
type InternalEndpointType
Minoccurs 0

UpgradeServiceReplicatorEndpoint

attribute
name UpgradeServiceReplicatorEndpoint
type InternalEndpointType
Minoccurs 0

FaultAnalysisServiceReplicatorEndpoint

attribute
name FaultAnalysisServiceReplicatorEndpoint
type InternalEndpointType
Minoccurs 0

BackupRestoreServiceReplicatorEndpoint

attribute
name BackupRestoreServiceReplicatorEndpoint
type InternalEndpointType
Minoccurs 0

UpgradeOrchestrationServiceReplicatorEndpoint

attribute
name UpgradeOrchestrationServiceReplicatorEndpoint
type InternalEndpointType
Minoccurs 0

CentralSecretServiceReplicatorEndpoint

attribute
name CentralSecretServiceReplicatorEndpoint
type InternalEndpointType
Minoccurs 0

EventStoreServiceReplicatorEndpoint

attribute
name EventStoreServiceReplicatorEndpoint
type InternalEndpointType
Minoccurs 0

GatewayResourceManagerReplicatorEndpoint

attribute
name GatewayResourceManagerReplicatorEndpoint
type InternalEndpointType
Minoccurs 0

DefaultReplicatorEndpoint

attribute
name DefaultReplicatorEndpoint
type InternalEndpointType
Minoccurs 0

ApplicationEndpoints

attribute
name ApplicationEndpoints
Minoccurs 0

EphemeralEndpoints

attribute
name EphemeralEndpoints
Minoccurs 0

FabricKtlLogger설정Type complexType

attribute
콘텐츠 3개 요소, 0개 특성
정의 세계적 으로
name FabricKtlLogger설정Type

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="FabricKtlLoggerSettingsType">
    <xs:all>
      <xs:element name="SharedLogFilePath" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Defines path to shared log.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:attribute name="Value" type="xs:string" use="required"/>
        </xs:complexType>
      </xs:element>

      <xs:element name="SharedLogFileId" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Specific GUID to use as the shared log ID.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:attribute name="Value" use="required">
            <xs:simpleType>
              <xs:restriction base="xs:string">
                <xs:pattern value="[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
         </xs:complexType>
      </xs:element>

      <xs:element name="SharedLogFileSizeInMB" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Defines how large is the shared log.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:attribute name="Value" use="required">
            <xs:simpleType>
              <xs:restriction base="xs:int">
                <xs:minInclusive value="512"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
        </xs:complexType>
      </xs:element>

    </xs:all>
  </xs:complexType>

  

콘텐츠 요소 세부 정보

SharedLogFilePath

공유 로그에 대한 경로를 정의합니다.

attribute
name SharedLogFilePath
Minoccurs 0

SharedLogFileId

공유 로그 ID로 사용할 특정 GUID입니다.

attribute
name SharedLogFileId
Minoccurs 0

SharedLogFileSizeInMB

공유 로그의 얼마나 큰지 정의합니다.

attribute
name SharedLogFileSizeInMB
Minoccurs 0

FabricNodeType complexType

Microsoft Azure Service Fabric 노드에 대해 설명합니다.

attribute
콘텐츠 0개 요소, 6개 특성
정의 세계적 으로
name FabricNodeType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="FabricNodeType">
                <xs:annotation>
                        <xs:documentation>Describes a Microsoft Azure Service Fabric Node.</xs:documentation>
                </xs:annotation>
                <xs:attribute name="NodeName" type="xs:string" use="required">
                        <xs:annotation>
                                <xs:documentation>The name of the node instance.</xs:documentation>
                        </xs:annotation>
                </xs:attribute>
                <xs:attribute name="IPAddressOrFQDN" type="xs:string" use="required">
                        <xs:annotation>
                                <xs:documentation>The IP address or the FQDN of the machine on which to place this node.</xs:documentation>
                        </xs:annotation>
                </xs:attribute>
                <xs:attribute name="IsSeedNode" type="xs:boolean" default="false">
                        <xs:annotation>
                                <xs:documentation>A flag indicating whether or not this node is a seed node.</xs:documentation>
                        </xs:annotation>
                </xs:attribute>
                <xs:attribute name="NodeTypeRef" type="xs:string" use="required">
                        <xs:annotation>
                                <xs:documentation>Name of the nodetype defined in the NodeTypes section. </xs:documentation>
                        </xs:annotation>
                </xs:attribute>
                <xs:attribute name="FaultDomain" type="xs:anyURI" use="optional">
                        <xs:annotation>
                                <xs:documentation>The fault domain of this node.</xs:documentation>
                        </xs:annotation>
                </xs:attribute>
                <xs:attribute name="UpgradeDomain" type="xs:anyURI" use="optional">
                        <xs:annotation>
                                <xs:documentation>The upgrade domain of this node.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

NodeName

노드 인스턴스의 이름입니다.

attribute
name NodeName
type xs:string
use 필수

IPAddressOrFQDN

이 노드를 배치할 컴퓨터의 IP 주소 또는 FQDN입니다.

attribute
name IPAddressOrFQDN
type xs:string
use 필수

IsSeedNode

이 노드가 시드 노드인지 여부를 나타내는 플래그입니다.

attribute
name IsSeedNode
type xs:boolean
default false

NodeTypeRef

NodeTypes 섹션에 정의된 nodetype의 이름입니다.

attribute
name NodeTypeRef
type xs:string
use 필수

FaultDomain

이 노드의 오류는 기본.

attribute
name FaultDomain
type xs:anyURI
use 선택적

UpgradeDomain

이 노드의 업그레이드 도메인입니다.

attribute
name UpgradeDomain
type xs:anyURI
use 선택적

FileStoreETWType complexType

ETW 이벤트의 파일 저장소 대상에 대해 설명합니다. 온-프레미스 환경에서만 작동합니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name FileStoreETWType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="FileStoreETWType">
    <xs:annotation>
      <xs:documentation>Describes a file store destination for ETW events. Works only in on-premises environment.</xs:documentation>
    </xs:annotation>
    <xs:complexContent>
      <xs:extension base="FileStoreType">
        <xs:attributeGroup ref="LevelFilter"/>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  

FileStoreType complexType

진단 데이터에 대한 파일 저장소 대상을 설명합니다. 독립 실행형 클러스터 환경에서만 작동합니다.

attribute
콘텐츠 1개 요소, 2개 특성
정의 세계적 으로
name FileStoreType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="FileStoreType">
    <xs:annotation>
      <xs:documentation>Describes a file store destination for diagnostics data. Works only in a standalone cluster environment.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="Parameters" minOccurs="0"/>
    </xs:sequence>
    <xs:attributeGroup ref="IsEnabled"/>
    <xs:attributeGroup ref="Path"/>
    <xs:attributeGroup ref="UploadIntervalInMinutes"/>
    <xs:attributeGroup ref="DataDeletionAgeInDays"/>
    <xs:attribute name="AccountType" type="xs:string">
      <xs:annotation>
        <xs:documentation>Specifies the type of account.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attributeGroup ref="AccountCredentialsGroup"/>
    <xs:attribute name="PasswordEncrypted" type="xs:string">
      <xs:annotation>
        <xs:documentation>Specifies if password is encrypted or plain text.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

AccountType

계정의 유형을 지정합니다.

attribute
name AccountType
type xs:string

PasswordEncrypted

암호가 암호화되었는지 일반 텍스트인지를 지정합니다.

attribute
name PasswordEncrypted
type xs:string

콘텐츠 요소 세부 정보

없음

attribute
ref 매개 변수
Minoccurs 0

ImageOverridesType complexType

Windows Server 컨테이너는 여러 버전의 OS에서 호환되지 않을 수 있습니다. 컨테이너당 여러 OS 이미지를 지정하고 OS의 빌드 버전으로 태그를 지정할 수 있습니다. Windows 명령 프롬프트에서 "winver"를 실행하여 OS의 빌드 버전을 가져옵니다. 기본 OS가 빌드 버전 16299(Windows Server 버전 1709)인 경우 Service Fabric은 Os="16299"로 태그가 지정된 컨테이너 이미지를 선택합니다. 태그가 지정되지 않은 컨테이너 이미지는 모든 버전의 OS에서 작동하는 것으로 간주되며 서비스 매니페스트에 지정된 이미지를 재정의합니다.

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name ImageOverridesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ImageOverridesType">
    <xs:annotation>
      <xs:documentation>Windows Server containers may not be compatible across different versions of the OS.  You can specify multiple OS images per container and tag
        them with the build versions of the OS. Get the build version of the OS by running "winver" at a Windows command prompt. If the underlying OS
        is build version 16299 (Windows Server version 1709), Service Fabric picks the container image tagged with Os="16299". An untagged container image
        is assumed to work across all versions of the OS and overrides the image specified in the service manifest.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Image" type="ImageType" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Container image corresponding to OS build version number to be launched. If the Os attribute is not specified, the container image
            is assumed to work across all versions of the OS and overrides the image specified in the service manifest.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

이미지

시작할 OS 빌드 버전 번호에 해당하는 컨테이너 이미지입니다. Os 특성을 지정하지 않으면 컨테이너 이미지는 모든 버전의 OS에서 작동하는 것으로 간주되며 서비스 매니페스트에 지정된 이미지를 재정의합니다.

attribute
name 이미지
type ImageType
Minoccurs 0
Maxoccurs 바인딩되지 않은

ImageType complexType

attribute
콘텐츠 0개 요소, 2개 특성
정의 세계적 으로
name 이미지 유형

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ImageType">
    <xs:attribute name="Name" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>Name of container image.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="Os" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>Build version of the OS. For example, the build version of Windows Server version 1709 is 16299.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

이름

컨테이너 이미지의 이름입니다.

attribute
name 이름
type xs:string
use 필수

Os

OS 빌드 버전입니다. 예를 들어 Windows Server 버전 1709의 빌드 버전은 16299입니다.

attribute
name Os
type xs:string
use 선택적

InfrastructureInformationType complexType

이 Microsoft Azure Service Fabric 클러스터에 대한 인프라 정보를 포함합니다.

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name InfrastructureInformationType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="InfrastructureInformationType">
    <xs:annotation>
      <xs:documentation>Contains the infrastructure information for this Microsoft Azure Service Fabric cluster.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="NodeList">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Node" type="InfrastructureNodeType" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

NodeList

attribute
name NodeList

InfrastructureNodeType complexType

필요한 인프라 정보를 설명합니다.

attribute
콘텐츠 2개 요소, 7개 특성
정의 세계적 으로
name InfrastructureNodeType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="InfrastructureNodeType">
    <xs:annotation>
      <xs:documentation>Describes an Infrastructure information needed.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Endpoints" type="FabricEndpointsType" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Describe the endpoints associated with this node type</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="Certificates" type="CertificatesType" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Describe the certificates associated with this node type</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="NodeName" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>The name of the node instance.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="IPAddressOrFQDN" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>The IP address or the FQDN of the machine on which to place this node.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="RoleOrTierName" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>Name of the role which links to node type ref which is defined in the NodeTypes section.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="NodeTypeRef" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>Name of the node type which is defined in the NodeTypes section.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="IsSeedNode" type="xs:boolean" use="optional" default="false">
      <xs:annotation>
        <xs:documentation>Indicates whether the node is a seed node.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="FaultDomain" type="xs:anyURI" use="optional">
      <xs:annotation>
        <xs:documentation> The fault domain of this node. </xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="UpgradeDomain" type="xs:anyURI" use="optional">
      <xs:annotation>
        <xs:documentation>The upgrade domain of this node. </xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

NodeName

노드 인스턴스의 이름입니다.

attribute
name NodeName
type xs:string
use 필수

IPAddressOrFQDN

이 노드를 배치할 컴퓨터의 IP 주소 또는 FQDN입니다.

attribute
name IPAddressOrFQDN
type xs:string
use 필수

RoleOrTierName

NodeTypes 섹션에 정의된 노드 형식 ref에 연결되는 역할의 이름입니다.

attribute
name RoleOrTierName
type xs:string
use 필수

NodeTypeRef

NodeTypes 섹션에 정의된 노드 형식의 이름입니다.

attribute
name NodeTypeRef
type xs:string
use 필수

IsSeedNode

노드가 시드 노드인지 여부를 나타냅니다.

attribute
name IsSeedNode
type xs:boolean
use 선택적
default false

FaultDomain

이 노드의 오류는 기본.

attribute
name FaultDomain
type xs:anyURI
use 선택적

UpgradeDomain

이 노드의 업그레이드 도메인입니다.

attribute
name UpgradeDomain
type xs:anyURI
use 선택적

콘텐츠 요소 세부 정보

끝점

이 노드 형식과 연결된 엔드포인트 설명

attribute
name 끝점
type FabricEndpointsType
Minoccurs 0

인증서

이 노드 형식과 연결된 인증서 설명

attribute
name 인증서
type CertificatesType
Minoccurs 0

InputEndpointType complexType

attribute
콘텐츠 0개 요소, 2개 특성
정의 세계적 으로
name InputEndpointType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="InputEndpointType">
    <xs:attribute name="Port" type="xs:positiveInteger" use="required"/>
    <xs:attribute name="Protocol" use="optional" default="tcp">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="http"/>
          <xs:enumeration value="https"/>
          <xs:enumeration value="tcp"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

포트

attribute
name 포트
type xs:positiveInteger
use 필수

프로토콜

attribute
name 프로토콜
use 선택적
default tcp

InternalEndpointType complexType

attribute
콘텐츠 0개 요소, 2개 특성
정의 세계적 으로
name InternalEndpointType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="InternalEndpointType">
    <xs:attribute name="Port" type="xs:positiveInteger" use="required"/>
    <xs:attribute name="Protocol" use="optional" default="tcp">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="http"/>
          <xs:enumeration value="https"/>
          <xs:enumeration value="tcp"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

포트

attribute
name 포트
type xs:positiveInteger
use 필수

프로토콜

attribute
name 프로토콜
use 선택적
default tcp

KeyValuePairType complexType

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name KeyValuePairType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="KeyValuePairType">
    <xs:attributeGroup ref="NameValuePair"/>
  </xs:complexType>
  

LinuxInfrastructureType complexType

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name LinuxInfrastructureType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="LinuxInfrastructureType">
    <xs:sequence>
      <xs:element name="NodeList">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Node" type="FabricNodeType" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
        

콘텐츠 요소 세부 정보

NodeList

attribute
name NodeList

LoadMetricType complexType

메모리 또는 CPU 사용량과 같이 이 서비스의 균형을 유지해야 하는 리소스입니다. 이 서비스의 각 복제본(replica) 또는 인스턴스에서 기본적으로 사용하는 리소스의 양에 대한 정보를 포함합니다.

attribute
콘텐츠 0개 요소, 5개 특성
정의 세계적 으로
name LoadMetricType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="LoadMetricType">
    <xs:annotation>
        <xs:documentation>A resource that this service should be balanced on, such as memory or CPU usage.  Includes information about how much of that resource each replica or instance of this service consumes by default.</xs:documentation>
      </xs:annotation>
    <xs:attribute name="Name" use="required">
      <xs:annotation>
        <xs:documentation>A unique identifier for the metric within the cluster from the Cluster Resource Manager's perspective.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="DefaultLoad" type="xs:long" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>The default amount of load that this stateless service creates for this metric.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="PrimaryDefaultLoad" type="xs:long" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>The default amount of load that this service will exert for this metric when it's a primary replica.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="SecondaryDefaultLoad" type="xs:long" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>The default amount of load that this service will exert for this metric when it's a secondary replica.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="Weight">
      <xs:annotation>
        <xs:documentation>Determines the metric weight relative to the other metrics that are configured for this service. During runtime, if two metrics end up in conflict, the Cluster Resource Manager prefers the metric with the higher weight. Zero disables load balancing for this metric.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="Zero"/>
          <xs:enumeration value="Low"/>
          <xs:enumeration value="Medium"/>
          <xs:enumeration value="High"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

이름

클러스터 리소스 관리자의 관점에서 클러스터 내 메트릭에 대한 고유 식별자입니다.

attribute
name 이름
use 필수

DefaultLoad

이 상태 비스테이션 서비스가 이 메트릭에 대해 만드는 기본 로드 양입니다.

attribute
name DefaultLoad
type xs:long
use 선택적
기본값 0

PrimaryDefaultLoad

주 복제본인 경우 이 서비스가 이 메트릭에 대해 생성하는 부하의 기본 크기입니다.

attribute
name PrimaryDefaultLoad
type xs:long
use 선택적
기본값 0

SecondaryDefaultLoad

보조 복제본(replica) 경우 이 서비스가 이 메트릭에 대해 수행할 기본 로드 양입니다.

attribute
name SecondaryDefaultLoad
type xs:long
use 선택적
기본값 0

가중치

이 서비스에 대해 구성된 다른 메트릭을 기준으로 메트릭 가중치를 결정합니다. 런타임 중에 두 메트릭이 충돌하는 경우 클러스터 리소스 관리자는 가중치가 더 높은 메트릭을 선호합니다. 0은 이 메트릭에 대한 부하 분산을 사용하지 않도록 설정합니다.

attribute
name 가중치

LocalStoreETWType complexType

ETW 이벤트에 대한 노드 내의 저장소 대상을 설명합니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name LocalStoreETWType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="LocalStoreETWType">
    <xs:annotation>
      <xs:documentation>Describes a store destination within the node for ETW events.</xs:documentation>
    </xs:annotation>
    <xs:complexContent>
      <xs:extension base="LocalStoreType">
        <xs:attributeGroup ref="LevelFilter"/>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  

LocalStoreType complexType

진단 데이터에 대한 노드 내의 저장소 대상에 대해 설명합니다.

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name LocalStoreType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="LocalStoreType">
    <xs:annotation>
      <xs:documentation>Describes a store destination within the node for diagnostic data.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element ref="Parameters" minOccurs="0"/>
    </xs:sequence>
    <xs:attributeGroup ref="IsEnabled"/>
    <xs:attributeGroup ref="RelativeFolderPath"/>
    <xs:attributeGroup ref="DataDeletionAgeInDays"/>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

없음

attribute
ref 매개 변수
Minoccurs 0

LogicalDirectoryType complexType

LogicalDirectoryType에 대해 설명합니다.

attribute
콘텐츠 0개 요소, 3개 특성
정의 세계적 으로
name LogicalDirectoryType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="LogicalDirectoryType">
    <xs:annotation>
      <xs:documentation>Describes a LogicalDirectoryType.</xs:documentation>
    </xs:annotation>
    <xs:attribute name="LogicalDirectoryName" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>The name of the LogicalDirectory.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="MappedTo" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>The path of the LogicalDirectory.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="Context" use="optional" default="application">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="application"/>
          <xs:enumeration value="node"/>
        </xs:restriction>
      </xs:simpleType>  
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

LogicalDirectoryName

LogicalDirectory의 이름입니다.

attribute
name LogicalDirectoryName
type xs:string
use 필수

MappedTo

LogicalDirectory의 경로입니다.

attribute
name MappedTo
type xs:string
use 필수

Context

attribute
name Context
use 선택적
default 애플리케이션

ManagedAssemblyType complexType

지원되지 않는 경우 사용하지 마세요. 호스트할 관리되는 어셈블리의 이름(예: Queue.dll)입니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name ManagedAssemblyType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ManagedAssemblyType">
    <xs:annotation>
        <xs:documentation>Unsupported, do not use. The name of managed assembly (for example, Queue.dll), to host.</xs:documentation>
    </xs:annotation>
    <xs:simpleContent>
      <xs:extension base="xs:string"/>
    </xs:simpleContent>
  </xs:complexType>
  

NetworkPoliciesType complexType

서비스 패키지에 대한 컨테이너 네트워크 정책을 포함한 네트워크 정책에 대해 설명합니다.

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name NetworkPoliciesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="NetworkPoliciesType">
    <xs:annotation>
      <xs:documentation>Describes network policies including container network policies for the service package.</xs:documentation>
    </xs:annotation>
    <xs:choice minOccurs="0" maxOccurs="unbounded">
      <xs:element name="ContainerNetworkPolicy" type="ContainerNetworkPolicyType" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Describes container network policies for the service package.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:choice>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

ContainerNetworkPolicy

서비스 패키지에 대한 컨테이너 네트워크 정책을 설명합니다.

attribute
name ContainerNetworkPolicy
type ContainerNetworkPolicyType
Minoccurs 0
Maxoccurs 바인딩되지 않은

PaaSRoleType complexType

attribute
콘텐츠 0개 요소, 3개 특성
정의 세계적 으로
name PaaSRoleType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="PaaSRoleType">
    <xs:attribute name="RoleName" type="xs:string" use="required"/>
    <xs:attribute name="NodeTypeRef" type="xs:string" use="required"/>
    <xs:attribute name="RoleNodeCount" type="xs:int" use="required"/>
  </xs:complexType>
  

특성 세부 정보

RoleName

attribute
name RoleName
type xs:string
use 필수

NodeTypeRef

attribute
name NodeTypeRef
type xs:string
use 필수

RoleNodeCount

attribute
name RoleNodeCount
type xs:int
use 필수

PaaSVoteType complexType

attribute
콘텐츠 0개 요소, 3개 특성
정의 세계적 으로
name PaaSVoteType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="PaaSVoteType">
    <xs:attribute name="NodeName" use="required"/>
    <xs:attribute name="IPAddressOrFQDN" use="required"/>
    <xs:attribute name="Port" type="xs:int" use="required"/>
  </xs:complexType>
  

특성 세부 정보

NodeName

attribute
name NodeName
use 필수

IPAddressOrFQDN

attribute
name IPAddressOrFQDN
use 필수

포트

attribute
name 포트
type xs:int
use 필수

PackageSharingPolicyType complexType

코드, 구성 또는 데이터 패키지를 동일한 서비스 유형의 서비스 인스턴스 간에 공유해야 하는지 여부를 나타냅니다.

attribute
콘텐츠 0개 요소, 2개 특성
정의 세계적 으로
name PackageSharingPolicyType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="PackageSharingPolicyType">
    <xs:annotation>
      <xs:documentation>Indicates if a code, config or data package should be shared across service instances of the same service type.</xs:documentation>
    </xs:annotation>
    <xs:attribute name="PackageRef">
      <xs:annotation>
        <xs:documentation>The name of the code, config, or data package to be shared. Must match the name of the package defined in the service manifest.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="Scope" default="None">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="None"/>
          <xs:enumeration value="All"/>
          <xs:enumeration value="Code"/>
          <xs:enumeration value="Config"/>
          <xs:enumeration value="Data"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

PackageRef

공유할 코드, 구성 또는 데이터 패키지의 이름입니다. 서비스 매니페스트에 정의된 패키지의 이름과 일치해야 합니다.

attribute
name PackageRef

범위

attribute
name 범위
default 없음

ParameterType complexType

attribute
콘텐츠 0개 요소, 1개 특성
정의 세계적 으로
name ParameterType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ParameterType">
                <xs:attributeGroup ref="NameValuePair"/>
                <xs:attribute name="IsEncrypted" type="xs:string">
                        <xs:annotation>
                                <xs:documentation>If true, the value of this parameter is encrypted</xs:documentation>
                        </xs:annotation>
                </xs:attribute>
        </xs:complexType>
        

특성 세부 정보

IsEncrypted

true이면 이 매개 변수의 값이 암호화됩니다.

attribute
name IsEncrypted
type xs:string

ParametersType complexType

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name ParametersType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ParametersType">
                <xs:sequence>
                        <xs:element name="Parameter" type="ParameterType" minOccurs="1" maxOccurs="unbounded"/>
                </xs:sequence>
        </xs:complexType>
        

콘텐츠 요소 세부 정보

매개 변수

attribute
name 매개 변수
type ParameterType
Minoccurs 1
Maxoccurs 바인딩되지 않은

PortBindingType complexType

attribute
콘텐츠 0개 요소, 2개 특성
정의 세계적 으로
name PortBindingType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="PortBindingType">
    <xs:attribute name="ContainerPort" type="xs:int" use="required">
      <xs:annotation>
        <xs:documentation>Container port number.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="EndpointRef">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

ContainerPort

컨테이너 포트 번호입니다.

attribute
name ContainerPort
type xs:int
use 필수

EndpointRef

attribute
name EndpointRef

RepositoryCredentialsType complexType

attribute
콘텐츠 0개 요소, 3개 특성
정의 세계적 으로
name RepositoryCredentialsType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="RepositoryCredentialsType">
    <xs:attributeGroup ref="AccountCredentialsGroup"/>
    <xs:attribute name="PasswordEncrypted" type="xs:boolean" use="optional">
      <xs:annotation>
        <xs:documentation>Specifies if password is encrypted or plain text. This attribute is deprecated. Please use the 'Type' attribute to indicate encrypted password.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="Email">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="Type" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>
          This value defines the type of password you have specified in the 'Password' Attribute. It can be SecretsStoreRef/Encrypted/PlainText.
          If set to SecretsStoreRef, we retrieve the reference value from the SecretStore.
          If set to Encrypted, the application developer is responsible for creating a certificate and using the Invoke-ServiceFabricEncryptSecret cmdlet to encrypt sensitive information.
        </xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

PasswordEncrypted

암호가 암호화되었는지 일반 텍스트인지를 지정합니다. 이 특성은 사용되지 않습니다. 암호화된 암호를 나타내려면 'Type' 특성을 사용하세요.

attribute
name PasswordEncrypted
type xs:boolean
use 선택적

메일

attribute
name Email

Type

이 값은 ‘Password' 특성에 지정한 암호 유형을 정의합니다. SecretsStoreRef/Encrypted/PlainText일 수 있습니다. SecretsStoreRef로 설정된 경우 SecretStore에서 참조 값을 검색합니다. Encrypted로 설정된 경우 애플리케이션 개발자는 인증서를 만들고 Invoke-ServiceFabricEncryptSecret cmdlet을 사용하여 중요한 정보를 암호화하는 작업을 담당합니다.

attribute
name Type
type xs:string
use 선택적

ResourceGovernancePolicyType complexType

호스트에서 사용할 수 있는 리소스를 제한하고 서비스 코드 패키지에 대한 리소스 제한을 선언합니다.

attribute
콘텐츠 0개 요소, 12개 특성
정의 세계적 으로
name ResourceGovernancePolicyType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ResourceGovernancePolicyType">
    <xs:annotation>
      <xs:documentation>Restricts the resources that can be used on the host and declares resource limits for a service code package.</xs:documentation>
    </xs:annotation>
    <xs:attribute name="CodePackageRef" use="required">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="MemoryInMB" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>Memory limits in MB. Must be a positive integer. Code packages (containers or processes) are not able to allocate more memory than this limit, and attempting to do so results in an out-of-memory exception.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="MemorySwapInMB" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>The total amount of swap memory that can be used, in MB. Must be a positive integer.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="MemoryReservationInMB" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>The soft limit (in MB) for memory governance that is enforced only when memory contention is detected on the node. Must be a positive integer.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="CpuShares" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>Relative CPU weight. Must be a positive integer.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="CpuPercent" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>Usable percentage of available CPUs (Windows only). Must be a positive integer. If CPU limits are specified for the service package, this parameter is effectively ignored.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="MaximumIOps" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>Maximum IO rate (read and write) in terms of IOPS that can be used. Must be a positive integer.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="MaximumIOBandwidth" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>The maximum IO (bytes per second) that can be used (read and write). Must be a positive integer.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="BlockIOWeight" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>Block IO weight, relative to other code packages. Must be a positive integer between 10 and 1000.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="DiskQuotaInMB" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>Disk quota for containers.  Must be a positive integer.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="KernelMemoryInMB" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>Kernel memory limits in bytes.  Must be a positive integer.  Note this is Linux specific and docker on windows will error out if this is set.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="ShmSizeInMB" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>Size of /dev/shm in bytes. If omitted, the system uses 64MB.  Must be a positive integer.  Note this is Linux specific, however, docker will NOT error out if specified.  It is simply ignored.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

CodePackageRef

attribute
name CodePackageRef
use 필수

MemoryInMB

메모리 제한(MB)입니다. 양의 정수여야 합니다. 코드 패키지(컨테이너 또는 프로세스)는 이 제한보다 더 많은 메모리를 할당할 수 없으며, 이를 시도하면 메모리 부족 예외가 발생합니다.

attribute
name MemoryInMB
type xs:string
use 선택적
기본값 0

MemorySwapInMB

사용할 수 있는 스왑 메모리의 총 양(MB)입니다. 양의 정수여야 합니다.

attribute
name MemorySwapInMB
type xs:string
use 선택적
기본값 0

MemoryReservationInMB

노드에서 메모리 경합이 검색될 때만 적용되는 메모리 거버넌스의 소프트 제한(MB)입니다. 양의 정수여야 합니다.

attribute
name MemoryReservationInMB
type xs:string
use 선택적
기본값 0

CpuShares

상대 CPU 가중치입니다. 양의 정수여야 합니다.

attribute
name CpuShares
type xs:string
use 선택적
기본값 0

CpuPercent

사용 가능한 CPU의 사용 가능한 비율입니다(Windows에만 해당). 양의 정수여야 합니다. 서비스 패키지에 대한 CPU 제한이 지정된 경우 이 매개 변수는 사실상 무시됩니다.

attribute
name CpuPercent
type xs:string
use 선택적
기본값 0

MaximumIOps

사용할 수 있는 IOPS 측면에서 최대 IO 속도(읽기 및 쓰기)입니다. 양의 정수여야 합니다.

attribute
name MaximumIOps
type xs:string
use 선택적
기본값 0

MaximumIOBandwidth

사용할 수 있는 최대 IO(초당 바이트 수)입니다(읽기 및 쓰기). 양의 정수여야 합니다.

attribute
name MaximumIOBandwidth
type xs:string
use 선택적
기본값 0

BlockIOWeight

다른 코드 패키지에 대한 블록 IO 무게입니다. 10에서 1000 사이의 양의 정수여야 합니다.

attribute
name BlockIOWeight
type xs:string
use 선택적
기본값 0

DiskQuotaInMB

컨테이너에 대한 디스크 할당량입니다. 양의 정수여야 합니다.

attribute
name DiskQuotaInMB
type xs:string
use 선택적
기본값 0

KernelMemoryInMB

커널 메모리 제한(바이트)입니다. 양의 정수여야 합니다. 이는 Linux에 한정되어 있으며, 이 설정이 설정되면 Windows의 docker에서 오류가 발생합니다.

attribute
name KernelMemoryInMB
type xs:string
use 선택적
기본값 0

ShmSizeInMB

/dev/shm의 크기(바이트)입니다. 생략하면 시스템에서 64MB를 사용합니다. 양의 정수여야 합니다. 이는 Linux에 따라 다릅니다. 그러나 지정된 경우 docker에서 오류가 표시되지 않습니다. 단순히 무시됩니다.

attribute
name ShmSizeInMB
type xs:string
use 선택적
기본값 0

ResourceOverridesType complexType

서비스 매니페스트 리소스에서 선언된 엔드포인트의 리소스 재정의를 지정합니다.

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name ResourceOverridesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ResourceOverridesType">
    <xs:annotation>
      <xs:documentation>Specifies resource overrides for endpoints declared in service manifest resources.</xs:documentation>
    </xs:annotation>
     <xs:sequence>
      <xs:element name="Endpoints" minOccurs="0">
        <xs:annotation>
          <xs:documentation>The service endpoint(s) to override.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Endpoint" type="EndpointOverrideType" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>The endpoint, declared in the service manifest, to override.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

끝점

재정의할 서비스 엔드포인트입니다.

attribute
name 끝점
Minoccurs 0

ResourcesType complexType

컴파일된 코드를 수정하지 않고 선언하고 서비스를 배포할 때 변경할 수 있는 이 서비스에서 사용하는 리소스에 대해 설명합니다. 이러한 리소스에 대한 액세스는 애플리케이션 매니페스트의 보안 주체 및 정책 섹션을 통해 제어됩니다.

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name ResourcesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ResourcesType">
    <xs:annotation>
      <xs:documentation>Describes the resources used by this service, which can be declared without modifying compiled code and changed when the service is deployed. Access to these resources is controlled through the Principals and Policies sections of the application manifest.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Endpoints" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Defines endpoints for the service.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Endpoint" type="EndpointType" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

끝점

서비스에 대한 엔드포인트를 정의합니다.

attribute
name 끝점
Minoccurs 0

RunAsPolicyType complexType

서비스 코드 패키지가 실행되는 로컬 사용자 또는 로컬 시스템 계정을 지정합니다. Do기본 계정은 Microsoft Entra ID를 사용할 수 있는 Windows Server 배포에서 지원됩니다. 기본적으로 애플리케이션은 Fabric.exe 프로세스가 실행되는 계정으로 실행됩니다. 애플리케이션은 보안 주체 섹션에서 선언해야 하는 다른 계정으로도 실행할 수 있습니다. 서비스에 RunAs 정책을 적용하고 서비스 매니페스트에서 HTTP 프로토콜을 사용하여 엔드포인트 리소스를 선언하는 경우, 이러한 엔드포인트에 할당된 포트에서 서비스가 실행되는 RunAs 사용자 계정에 대해 나열된 액세스 제어를 올바르게 유지하도록 SecurityAccessPolicy를 지정해야 합니다. 또한 HTTPS 엔드포인트의 경우 클라이언트에 반환할 인증서 이름을 나타내도록 EndpointBindingPolicy를 정의해야 합니다.

attribute
콘텐츠 0개 요소, 3개 특성
정의 세계적 으로
name RunAsPolicyType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="RunAsPolicyType">
    <xs:annotation>
      <xs:documentation>Specifies the local user or local system account that a service code package will run as. Domain accounts are supported on Windows Server deployments where Azure Active Directory is available. By default, applications run under the account that the Fabric.exe process runs under. Applications can also run as other accounts, which must be declared in the Principals section. If you apply a RunAs policy to a service, and the service manifest declares endpoint resources with the HTTP protocol, you must also specify a SecurityAccessPolicy to ensure that ports allocated to these endpoints are correctly access-control listed for the RunAs user account that the service runs under. For an HTTPS endpoint, you also have to define a EndpointBindingPolicy to indicate the name of the certificate to return to the client.</xs:documentation>
    </xs:annotation>
    <xs:attribute name="CodePackageRef" use="required">
      <xs:annotation>
        <xs:documentation>The name of the code package. Must match the name of the CodePackage specified in the service manifest.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="UserRef" use="required">
      <xs:annotation>
        <xs:documentation>The user account that the service code package will run as.  The user account must be declared in the Principals section. Often it is preferable to run the setup entry point using a local system account rather than an administrators account.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="EntryPointType" use="optional" default="Main">
      <xs:annotation>
        <xs:documentation>Setup is the SetupEntryPoint declared in the service manifest, the privileged entry point that runs before any other entry point.  Main is the EntryPoint declared in the service manifest, typically the long-running service host. All is all entry points.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="Setup"/>
          <xs:enumeration value="Main"/>
          <xs:enumeration value="All"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

CodePackageRef

코드 패키지의 이름입니다. 서비스 매니페스트에 지정된 CodePackage의 이름과 일치해야 합니다.

attribute
name CodePackageRef
use 필수

UserRef

서비스 코드 패키지가 실행되는 사용자 계정입니다. 사용자 계정은 보안 주체 섹션에서 선언해야 합니다. 관리자 계정이 아닌 로컬 시스템 계정을 사용하여 설치 진입점을 실행하는 것이 좋습니다.

attribute
name UserRef
use 필수

EntryPointType

설치 프로그램은 서비스 매니페스트에 선언된 SetupEntryPoint로, 다른 진입점 앞에서 실행되는 권한 있는 진입점입니다. 기본은 일반적으로 장기 실행 서비스 호스트인 서비스 매니페스트에 선언된 EntryPoint입니다. All은 모든 진입점입니다.

attribute
name EntryPointType
use 선택적
default 기본

ScalingPolicyType complexType

트리거 및 크기 조정 메커니즘으로 구성된 크기 조정 정책 설명입니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name ScalingPolicyType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ScalingPolicyType">
        <xs:annotation>
            <xs:documentation>A scaling policy description consisting of a trigger and a mechanism for scaling. </xs:documentation>
        </xs:annotation>
        <xs:sequence>
            <xs:group ref="ScalingPolicyTriggerGroup"/>
            <xs:group ref="ScalingPolicyMechanismGroup"/>
        </xs:sequence>
    </xs:complexType>
    

SecurityAccessPolicyType complexType

서비스 매니페스트에 정의된 리소스(예: 엔드포인트)의 보안 주체에게 액세스 권한을 부여합니다. 일반적으로 보안 위험을 최소화하기 위해 다양한 리소스에 대한 서비스 액세스를 제어하고 제한하는 것이 매우 유용합니다. 이는 다른 개발자가 개발한 마켓플레이스의 서비스 컬렉션에서 애플리케이션을 빌드하는 경우 특히 중요합니다.

attribute
콘텐츠 0개 요소, 4개 특성
정의 세계적 으로
name SecurityAccessPolicyType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="SecurityAccessPolicyType">
    <xs:annotation>
      <xs:documentation>Grants access permissions to a principal on a resource (such as an endpoint) defined in a service manifest. Typically, it is very useful to control and restrict access of services to different resources in order to minimize security risks. This is especially important when the application is built from a collection of services from a marketplace which are developed by different developers.</xs:documentation>
    </xs:annotation>
    <xs:attribute name="ResourceRef" use="required">
      <xs:annotation>
        <xs:documentation>The resource being granted access to, declared and configured in the service manifest.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="PrincipalRef" use="required">
      <xs:annotation>
        <xs:documentation>The user or group being assigned access rights to a resource, must be declared in the Principals section.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="GrantRights" default="Read">
      <xs:annotation>
        <xs:documentation>The rights to grant: Read, Change, or Full. The default is Read.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="Read"/>
          <xs:enumeration value="Change"/>
          <xs:enumeration value="Full"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="ResourceType" use="optional" default="Endpoint">
      <xs:annotation>
        <xs:documentation>The type of resource, defined in the Resources section of the service manifest. Either Endpoint or Certificate.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="Endpoint"/>
          <xs:enumeration value="Certificate"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

ResourceRef

서비스 매니페스트에서 액세스 권한이 부여되고 선언 및 구성되는 리소스입니다.

attribute
name ResourceRef
use 필수

PrincipalRef

리소스에 대한 액세스 권한을 할당할 사용자 또는 그룹은 보안 주체 섹션에 선언되어야 합니다.

attribute
name PrincipalRef
use 필수

GrantRights

부여할 권한: 읽기, 변경 또는 전체. 기본값은 Read입니다.

attribute
name GrantRights
default 읽음

ResourceType

서비스 매니페스트의 리소스 섹션에 정의된 리소스 유형입니다. 엔드포인트 또는 인증서입니다.

attribute
name ResourceType
use 선택적
default 엔드포인트

SecurityOptionsType complexType

attribute
콘텐츠 0개 요소, 1개 특성
정의 세계적 으로
name SecurityOptionsType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="SecurityOptionsType">
    <xs:attribute name="Value" use="required">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
    

특성 세부 정보

attribute
name
use 필수

SecurityPrincipalsType complexType

이 애플리케이션이 서비스를 실행하고 리소스를 보호하는 데 필요한 보안 주체(사용자, 그룹)에 대해 설명합니다. 보안 주체는 Policies 섹션에서 참조됩니다.

attribute
콘텐츠 2개 요소, 0개 특성
정의 세계적 으로
name SecurityPrincipalsType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="SecurityPrincipalsType">
        <xs:annotation>
            <xs:documentation>Describes the security principals (users, groups) required for this application to run services and secure resources. Principals are referenced in the policies sections.</xs:documentation>
        </xs:annotation>
        <xs:sequence>
            <xs:element name="Groups" minOccurs="0">
                <xs:annotation>
                    <xs:documentation>Declares a set of groups as security principals, which can be referenced in policies. Groups are useful if there are multiple users for different service entry points and they need to have certain common privileges that are available at the group level.</xs:documentation>
                </xs:annotation>
                <xs:complexType>
                    <xs:sequence>
                        <xs:element name="Group" maxOccurs="unbounded">
                            <xs:annotation>
                                <xs:documentation>Declares a group as a security principal, which can be referenced in policies.</xs:documentation>
                            </xs:annotation>
                            <xs:complexType>
                                <xs:sequence>
                                    <xs:element name="NTLMAuthenticationPolicy" minOccurs="0">
                                        <xs:complexType>
                                            <xs:attribute name="IsEnabled" type="xs:boolean" use="optional" default="true"/>
                                        </xs:complexType>
                                    </xs:element>
                                    <xs:element name="Membership" minOccurs="0">
                                        <xs:complexType>
                                            <xs:choice maxOccurs="unbounded">
                                                <xs:element name="DomainGroup" minOccurs="0" maxOccurs="unbounded">
                                                    <xs:complexType>
                                                        <xs:attribute name="Name" type="xs:string" use="required"/>
                                                    </xs:complexType>
                                                </xs:element>
                                                <xs:element name="SystemGroup" minOccurs="0" maxOccurs="unbounded">
                                                    <xs:complexType>
                                                        <xs:attribute name="Name" type="xs:string" use="required"/>
                                                    </xs:complexType>
                                                </xs:element>
                                                <xs:element name="DomainUser" minOccurs="0" maxOccurs="unbounded">
                                                    <xs:complexType>
                                                        <xs:attribute name="Name" type="xs:string" use="required"/>
                                                    </xs:complexType>
                                                </xs:element>
                                            </xs:choice>
                                        </xs:complexType>
                                    </xs:element>
                                </xs:sequence>
                                <xs:attribute name="Name" type="xs:string" use="required">
                                    <xs:annotation>
                                        <xs:documentation>Name of the local group account. The name will be prefixed with the application ID.</xs:documentation>
                                    </xs:annotation>
                                </xs:attribute>
                            </xs:complexType>
                        </xs:element>
                    </xs:sequence>
                </xs:complexType>
            </xs:element>
            <xs:element name="Users" minOccurs="0">
                <xs:annotation>
                    <xs:documentation>Declares a set of users as security principals, which can be referenced in policies.</xs:documentation>
                </xs:annotation>
                <xs:complexType>
                    <xs:sequence>
                        <xs:element name="User" maxOccurs="unbounded">
                            <xs:annotation>
                                <xs:documentation>Declares a user as a security principal, which can be referenced in policies.</xs:documentation>
                            </xs:annotation>
                            <xs:complexType>
                                <xs:sequence>
                                    <xs:element name="NTLMAuthenticationPolicy" minOccurs="0">
                                        <xs:complexType>
                                            <xs:attribute name="IsEnabled" type="xs:boolean" use="optional" default="true"/>
                                            <xs:attribute name="PasswordSecret" type="xs:string" use="required"/>
                                            <xs:attribute name="PasswordSecretEncrypted" type="xs:boolean" use="optional" default="false"/>
                                            <xs:attribute name="X509StoreLocation" use="optional" default="LocalMachine">
                                                <xs:simpleType>
                                                    <xs:restriction base="xs:string">
                                                        <xs:enumeration value="LocalMachine"/>
                                                        <xs:enumeration value="CurrentUser"/>
                                                    </xs:restriction>
                                                </xs:simpleType>
                                            </xs:attribute>
                                                                                        <xs:attribute name="X509StoreName" default="My">
                                                <xs:simpleType>
                                                    <xs:restriction base="xs:string"/>
                                                </xs:simpleType>
                                            </xs:attribute>
                                            <xs:attribute name="X509Thumbprint" type="xs:string"/>
                                        </xs:complexType>
                                    </xs:element>
                                    <xs:element name="MemberOf" minOccurs="0">
                                        <xs:annotation>
                                            <xs:documentation>Users can be added to any existing membership group, so it can inherit all the properties and security settings of that membership group. The membership group can be used to secure external resources that need to be accessed by different services or the same service (on a different machine).</xs:documentation>
                                                                                </xs:annotation>
                                                                                <xs:complexType>
                                                                                        <xs:choice maxOccurs="unbounded">
                                                                                                <xs:element name="SystemGroup" minOccurs="0" maxOccurs="unbounded">
                                                                                                        <xs:annotation>
                                                                                                                <xs:documentation>The system group to add the user to.  The system group must be defined in the Groups section.</xs:documentation>
                                                                                                        </xs:annotation>
                                                                                                        <xs:complexType>
                                                                                                                <xs:attribute name="Name" type="xs:string" use="required">
                                                                                                                        <xs:annotation>
                                                                                                                                <xs:documentation>The name of the system group.</xs:documentation>
                                                                                                                        </xs:annotation>
                                                                                                                </xs:attribute>
                                                                                                        </xs:complexType>
                                                                                                </xs:element>
                                                                                                <xs:element name="Group" minOccurs="0" maxOccurs="unbounded">
                                                                                                        <xs:annotation>
                                                                                                                <xs:documentation>The group to add the user to.  The group must be defined in the Groups section.</xs:documentation>
                                                                                                        </xs:annotation>
                                                                                                        <xs:complexType>
                                                                                                                <xs:attribute name="NameRef" type="xs:string" use="required">
                                                                                                                        <xs:annotation>
                                                                                                                                <xs:documentation>The name of the group.</xs:documentation>
                                                                                                                        </xs:annotation>
                                                                                                                </xs:attribute>
                                                                                                        </xs:complexType>
                                                                                                </xs:element>
                                                                                        </xs:choice>
                                                                                </xs:complexType>
                                                                        </xs:element>
                                                                </xs:sequence>
                                                                <xs:attribute name="Name" type="xs:string" use="required">
                                                                        <xs:annotation>
                                                                                <xs:documentation>Name of the user account.</xs:documentation>
                                                                        </xs:annotation>
                                                                </xs:attribute>
                                                                <xs:attribute name="AccountType" use="optional" default="LocalUser">
                                                                        <xs:annotation>
                                                                                <xs:documentation>Specifies the type of account: LocalUser, DomainUser, NetworkService, LocalService, ManagedServiceAccount, or LocalSystem.  The default is LocalUser. Local user accounts are created on the machines where the application is deployed. By default, these accounts do not have the same names as those specified here. Instead, they are dynamically generated and have random passwords. Supported local system account types are LocalUser, NetworkService, LocalService and LocalSystem. Domain accounts are supported on Windows Server deployments where Azure Active Directory is available.</xs:documentation>
                                                                        </xs:annotation>
                                                                        <xs:simpleType>
                                                                                <xs:restriction base="xs:string">
                                                                                        <xs:enumeration value="LocalUser"/>
                                                                                        <xs:enumeration value="DomainUser"/>
                                                                                        <xs:enumeration value="NetworkService"/>
                                                                                        <xs:enumeration value="LocalService"/>
                                                                                        <xs:enumeration value="ManagedServiceAccount"/>
                                                                                        <xs:enumeration value="LocalSystem"/>
                                                                                </xs:restriction>
                                                                        </xs:simpleType>
                                                                </xs:attribute>
                                                                <xs:attribute name="LoadUserProfile" type="xs:boolean" use="optional" default="false"/>
                                                                <xs:attribute name="PerformInteractiveLogon" type="xs:boolean" use="optional" default="false"/>
                                                                <xs:attributeGroup ref="AccountCredentialsGroup"/>
                                                                <xs:attribute name="PasswordEncrypted" type="xs:boolean" use="optional">
                                                                        <xs:annotation>
                                                                                <xs:documentation>True if the password is encrypted; false if in plain text.</xs:documentation>
                                                                        </xs:annotation>
                                                                </xs:attribute>
                                                        </xs:complexType>
                                                </xs:element>
                                        </xs:sequence>
                                </xs:complexType>
                        </xs:element>
                </xs:sequence>
        </xs:complexType>
        

콘텐츠 요소 세부 정보

그룹

정책에서 참조할 수 있는 보안 주체로 그룹 집합을 선언합니다. 그룹은 여러 서비스 진입점에 대한 여러 사용자가 있고 그룹 수준에서 사용할 수 있는 특정 공통 권한이 있어야 하는 경우에 유용합니다.

attribute
name 그룹
Minoccurs 0

사용자

정책에서 참조할 수 있는 보안 주체로 사용자 집합을 선언합니다.

attribute
name 사용자
Minoccurs 0

ServiceAndServiceGroupTypesType complexType

attribute
콘텐츠 4개 요소, 0개 특성
정의 세계적 으로
name ServiceAndServiceGroupTypesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServiceAndServiceGroupTypesType">
    <xs:choice maxOccurs="unbounded">
      <xs:element name="StatefulServiceType" type="StatefulServiceTypeType"/>
      <xs:element name="StatelessServiceType" type="StatelessServiceTypeType"/>
      <xs:element name="StatefulServiceGroupType" type="StatefulServiceGroupTypeType"/>
      <xs:element name="StatelessServiceGroupType" type="StatelessServiceGroupTypeType"/>
    </xs:choice>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

StatefulServiceType

attribute
name StatefulServiceType
type StatefulServiceTypeType

StatelessServiceType

attribute
name StatelessServiceType
type StatelessServiceTypeType

StatefulServiceGroupType

attribute
name StatefulServiceGroupType
type StatefulServiceGroupTypeType

StatelessServiceGroupType

attribute
name StatelessServiceGroupType
type StatelessServiceGroupTypeType

ServiceDiagnosticsType complexType

이 서비스 매니페스트의 구성 요소에 대한 진단 설정을 설명합니다.

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name ServiceDiagnosticsType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServiceDiagnosticsType">
    <xs:annotation>
      <xs:documentation>Describes the diagnostic settings for the components of this service manifest.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="ETW" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Describes the ETW settings for the components of this service manifest.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="ProviderGuids" minOccurs="0">
              <xs:annotation>
                <xs:documentation>Lists the ETW provider GUIDs for the components of this service manifest.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="ProviderGuid" minOccurs="0" maxOccurs="unbounded">
                    <xs:complexType>
                      <xs:attribute name="Value" use="required">
                        <xs:simpleType>
                          <xs:restriction base="xs:string">
                            <xs:pattern value="[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}"/>
                          </xs:restriction>
                        </xs:simpleType>
                      </xs:attribute>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
            <xs:element name="ManifestDataPackages" minOccurs="0">
              <xs:annotation>
                <xs:documentation>Lists the data packages containing ETW manifests for the components of this service manifest. The data package containing ETW manifests should not contain any other files. </xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="ManifestDataPackage" type="DataPackageType" minOccurs="0" maxOccurs="unbounded"/>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

ETW

이 서비스 매니페스트의 구성 요소에 대한 ETW 설정을 설명합니다.

attribute
name ETW
Minoccurs 0

ServiceFabricRuntimeAccessPolicyType complexType

attribute
콘텐츠 0개 요소, 2개 특성
정의 세계적 으로
name ServiceFabricRuntimeAccessPolicyType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServiceFabricRuntimeAccessPolicyType">
    <xs:attribute name="RemoveServiceFabricRuntimeAccess" type="xs:boolean" default="false">
      <xs:annotation>
        <xs:documentation>Indicates if Fabric Runtime specific information should be exposed to the Code packages in the Service package.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="UseServiceFabricReplicatedStore" type="xs:boolean" default="false">
      <xs:annotation>
        <xs:documentation>Indicates if Service Fabric replicated blockstore should be used to provide volume for containers in service package.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

RemoveServiceFabricRuntimeAccess

패브릭 런타임 특정 정보를 서비스 패키지의 코드 패키지에 노출해야 하는지를 나타냅니다.

attribute
name RemoveServiceFabricRuntimeAccess
type xs:boolean
default false

UseServiceFabricReplicatedStore

Service Fabric 복제된 blockstore를 사용하여 서비스 패키지의 컨테이너에 대한 볼륨을 제공해야 하는지 여부를 나타냅니다.

attribute
name UseServiceFabricReplicatedStore
type xs:boolean
default false

ServiceGroupMemberType complexType

attribute
콘텐츠 1개 요소, 2개 특성
정의 세계적 으로
name ServiceGroupMemberType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServiceGroupMemberType">
        <xs:sequence>
            <xs:element name="LoadMetrics" minOccurs="0">
                <xs:annotation>
                    <xs:documentation>Load metrics reported by this service.</xs:documentation>
                </xs:annotation>
                <xs:complexType>
                    <xs:sequence>
                        <xs:element name="LoadMetric" type="LoadMetricType" maxOccurs="unbounded"/>
                    </xs:sequence>
                </xs:complexType>
            </xs:element>
        </xs:sequence>
        <xs:attribute name="ServiceTypeName" use="required">
            <xs:annotation>
                <xs:documentation>Type of the service group member.</xs:documentation>
            </xs:annotation>
            <xs:simpleType>
                <xs:restriction base="xs:string">
                    <xs:minLength value="1"/>
                </xs:restriction>
            </xs:simpleType>
        </xs:attribute>
        <xs:attribute name="Name" use="required">
            <xs:annotation>
                <xs:documentation>Name of the service group member relative to the name of the service group.</xs:documentation>
            </xs:annotation>
            <xs:simpleType>
                <xs:restriction base="xs:string">
                    <xs:minLength value="1"/>
                </xs:restriction>
            </xs:simpleType>
        </xs:attribute>
    </xs:complexType>
    

특성 세부 정보

ServiceTypeName

서비스 그룹 구성원의 유형입니다.

attribute
name ServiceTypeName
use 필수

이름

서비스 그룹의 이름을 기준으로 하는 서비스 그룹 멤버의 이름입니다.

attribute
name 이름
use 필수

콘텐츠 요소 세부 정보

LoadMetrics

이 서비스에서 보고한 메트릭을 로드합니다.

attribute
name LoadMetrics
Minoccurs 0

ServiceGroupTypeType complexType

상태 저장 또는 상태 비저장 ServiceGroupType을 설명하는 기본 형식입니다.

attribute
콘텐츠 4개 요소, 2개 특성
정의 세계적 으로
name ServiceGroupTypeType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServiceGroupTypeType">
    <xs:annotation>
      <xs:documentation>Base type that describes a stateful or a stateless ServiceGroupType.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="LoadMetrics" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Load metrics reported by this service.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="LoadMetric" type="LoadMetricType" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="PlacementConstraints" type="xs:string" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Constraints for the placement of services that are part of this package.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ServiceGroupMembers" minOccurs="0" maxOccurs="1">
        <xs:annotation>
          <xs:documentation>Member types of this service group type.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="ServiceGroupTypeMember" minOccurs="1" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element ref="Extensions" minOccurs="0"/>
    </xs:sequence>
    <xs:attribute name="ServiceGroupTypeName" use="required">
      <xs:annotation>
        <xs:documentation>User-defined type identifier for a service group, For example, "ActorQueueSGType". This value is used in the ApplicationManifest.xml file to identify the service group.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="UseImplicitFactory" type="xs:boolean" use="optional">
      <xs:annotation>
        <xs:documentation>Specifies whether the service group instance is created by the implicit factory. If false (default), one of the code packages must register the service group factory</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

ServiceGroupTypeName

서비스 그룹의 사용자 정의 형식 식별자입니다(예: "ActorQueueSGType"). 이 값은 ApplicationManifest.xml 파일에서 서비스 그룹을 식별하는 데 사용됩니다.

attribute
name ServiceGroupTypeName
use 필수

UseImplicitFactory

암시적 팩터리에서 서비스 그룹 인스턴스를 만들지 여부를 지정합니다. False(기본값)인 경우 코드 패키지 중 하나가 서비스 그룹 팩터리를 등록해야 합니다.

attribute
name UseImplicitFactory
type xs:boolean
use 선택적

콘텐츠 요소 세부 정보

LoadMetrics

이 서비스에서 보고한 메트릭을 로드합니다.

attribute
name LoadMetrics
Minoccurs 0

PlacementConstraints

이 패키지의 일부인 서비스의 배치에 대한 제약 조건입니다.

attribute
name PlacementConstraints
type xs:string
Minoccurs 0

ServiceGroupMembers

이 서비스 그룹 유형의 멤버 유형입니다.

attribute
name ServiceGroupMembers
Minoccurs 0
Maxoccurs 1

없음

attribute
ref 확장
Minoccurs 0

ServiceManifestImportPoliciesType complexType

가져온 서비스 매니페스트에 적용할 정책(엔드포인트 바인딩, 패키지 공유, 실행 및 보안 액세스)에 대해 설명합니다.

attribute
콘텐츠 11개 요소, 0개 특성
정의 세계적 으로
name ServiceManifestImportPoliciesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServiceManifestImportPoliciesType">
    <xs:annotation>
      <xs:documentation>Describes policies (end-point binding, package sharing, run-as, and security access) to be applied on the imported service manifest.</xs:documentation>
    </xs:annotation>
    <xs:choice minOccurs="0" maxOccurs="unbounded">
      <xs:element name="RunAsPolicy" type="RunAsPolicyType" minOccurs="0"/>
      <xs:element name="SecurityAccessPolicy" type="SecurityAccessPolicyType" minOccurs="0"/>
      <xs:element name="PackageSharingPolicy" type="PackageSharingPolicyType" minOccurs="0"/>
      <xs:element name="EndpointBindingPolicy" type="EndpointBindingPolicyType" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Specifies a certificate that should be returned to a client for an HTTPS endpoint.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ServiceFabricRuntimeAccessPolicy" type="ServiceFabricRuntimeAccessPolicyType" minOccurs="0" maxOccurs="1">
      <xs:annotation>
        <xs:documentation>Specifies policies that determine how the service fabric runtime is exposed to the replicas.</xs:documentation>
      </xs:annotation>
      </xs:element>
      <xs:element name="ServicePackageResourceGovernancePolicy" type="ServicePackageResourceGovernancePolicyType" minOccurs="0" maxOccurs="1">
        <xs:annotation>
          <xs:documentation>Defines the resource governance policy that is applied at the level of the entire service package.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ResourceGovernancePolicy" type="ResourceGovernancePolicyType" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Specifies resource limits for a codepackage.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ServicePackageContainerPolicy" type="ServicePackageContainerPolicyType" minOccurs="0" maxOccurs="1"/>
      <xs:element name="ContainerHostPolicies" type="ContainerHostPoliciesType" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Specifies policies for activating container hosts.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ConfigPackagePolicies" type="ConfigPackagePoliciesType" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Config Packages to be mounted inside the container.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="NetworkPolicies" type="NetworkPoliciesType" minOccurs="0" maxOccurs="1">
        <xs:annotation>
          <xs:documentation>Specifies network policies including container network policies.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:choice>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

RunAsPolicy

attribute
name RunAsPolicy
type RunAsPolicyType
Minoccurs 0

SecurityAccessPolicy

attribute
name SecurityAccessPolicy
type SecurityAccessPolicyType
Minoccurs 0

PackageSharingPolicy

attribute
name PackageSharingPolicy
type PackageSharingPolicyType
Minoccurs 0

EndpointBindingPolicy

HTTPS 엔드포인트에 대해 클라이언트에 반환해야 하는 인증서를 지정합니다.

attribute
name EndpointBindingPolicy
type EndpointBindingPolicyType
Minoccurs 0

ServiceFabricRuntimeAccessPolicy

서비스 패브릭 런타임이 복제본(replica) 노출되는 방식을 결정하는 정책을 지정합니다.

attribute
name ServiceFabricRuntimeAccessPolicy
type ServiceFabricRuntimeAccessPolicyType
Minoccurs 0
Maxoccurs 1

ServicePackageResourceGovernancePolicy

전체 서비스 패키지 수준에서 적용되는 리소스 거버넌스 정책을 정의합니다.

attribute
name ServicePackageResourceGovernancePolicy
type ServicePackageResourceGovernancePolicyType
Minoccurs 0
Maxoccurs 1

ResourceGovernancePolicy

codepackage에 대한 리소스 제한을 지정합니다.

attribute
name ResourceGovernancePolicy
type ResourceGovernancePolicyType
Minoccurs 0

ServicePackageContainerPolicy

attribute
name ServicePackageContainerPolicy
type ServicePackageContainerPolicyType
Minoccurs 0
Maxoccurs 1

ContainerHostPolicies

컨테이너 호스트를 활성화하기 위한 정책을 지정합니다.

attribute
name ContainerHostPolicies
type ContainerHostPoliciesType
Minoccurs 0

ConfigPackagePolicies

컨테이너 내부에 탑재할 구성 패키지입니다.

attribute
name ConfigPackagePolicies
type ConfigPackagePoliciesType
Minoccurs 0

NetworkPolicies

컨테이너 네트워크 정책을 포함한 네트워크 정책을 지정합니다.

attribute
name NetworkPolicies
type NetworkPoliciesType
Minoccurs 0
Maxoccurs 1

ServiceManifestRefType complexType

참조별로 서비스 매니페스트를 가져옵니다. 현재 서비스 매니페스트 파일(ServiceManifest.xml)은 빌드 패키지에 있어야 합니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name ServiceManifestRefType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServiceManifestRefType">
    <xs:annotation>
      <xs:documentation>Imports the service manifest by reference. Currently the service manifest file (ServiceManifest.xml) must be present in the build package.</xs:documentation>
    </xs:annotation>
    <xs:attributeGroup ref="ServiceManifestIdentifier"/>
  </xs:complexType>
  

ServiceManifestType complexType

서비스 유형 및 버전을 선언적으로 설명합니다. 하나 이상의 서비스 유형을 지원하도록 서비스 패키지를 함께 구성하는 독립적으로 업그레이드 가능한 코드, 구성 및 데이터 패키지를 나열합니다. 리소스, 진단 설정 및 서비스 메타데이터(예: 서비스 유형, 상태 속성 및 부하 분산 메트릭)도 지정됩니다.

attribute
콘텐츠 7개 요소, 1개 특성
정의 세계적 으로
name ServiceManifestType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServiceManifestType">
    <xs:annotation>
      <xs:documentation>Declaratively describes the service type and version. It lists the independently upgradeable code, configuration, and data packages that together compose a service package to support one or more service types. Resources, diagnostics settings, and service metadata, such as service type, health properties, and load-balancing metrics, are also specified.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Description" type="xs:string" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Text describing this service.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ServiceTypes" type="ServiceAndServiceGroupTypesType">
        <xs:annotation>
          <xs:documentation>Defines what service types are supported by a CodePackage in this manifest. When a service is instantiated against one of these service types, all code packages declared in this manifest are activated by running their entry points. Service types are declared at the manifest level and not the code package level.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="CodePackage" type="CodePackageType" maxOccurs="unbounded"/>
      <xs:element name="ConfigPackage" type="ConfigPackageType" minOccurs="0" maxOccurs="unbounded"/>
      <xs:element name="DataPackage" type="DataPackageType" minOccurs="0" maxOccurs="unbounded"/>
      <xs:element name="Resources" type="ResourcesType" minOccurs="0"/>
      <xs:element name="Diagnostics" type="ServiceDiagnosticsType" minOccurs="0"/>
    </xs:sequence>
    <xs:attribute name="ManifestId" use="optional" default="" type="xs:string">
      <xs:annotation>
        <xs:documentation>The identifier of this service manifest, an unstructured string.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attributeGroup ref="VersionedName"/>
    <xs:anyAttribute processContents="skip"/> <!-- Allow unknown attributes to be used. -->
  </xs:complexType>
  

특성 세부 정보

ManifestId

이 서비스 매니페스트의 식별자이며, 구조화되지 않은 문자열입니다.

attribute
name ManifestId
use 선택적
default
type xs:string

콘텐츠 요소 세부 정보

설명

이 서비스를 설명하는 텍스트입니다.

attribute
name Description
type xs:string
Minoccurs 0

ServiceTypes

이 매니페스트에서 CodePackage에서 지원하는 서비스 유형을 정의합니다. 이러한 서비스 유형 중 하나에 대해 서비스가 인스턴스화되면 코드 패키지의 진입점을 실행하여 이 매니페스트에 선언된 모든 코드 패키지가 활성화됩니다. 서비스 형식은 코드 패키지 수준이 아니라 매니페스트 수준에서 선언됩니다.

attribute
name ServiceTypes
type ServiceAndServiceGroupTypesType

CodePackage

attribute
name CodePackage
type CodePackageType
Maxoccurs 바인딩되지 않은

ConfigPackage

attribute
name ConfigPackage
type ConfigPackageType
Minoccurs 0
Maxoccurs 바인딩되지 않은

Datapackage

attribute
name Datapackage
type DataPackageType
Minoccurs 0
Maxoccurs 바인딩되지 않은

리소스

attribute
name 리소스
type ResourcesType
Minoccurs 0

진단

attribute
name 진단
type ServiceDiagnosticsType
Minoccurs 0

ServicePackageContainerPolicyType complexType

attribute
콘텐츠 1개 요소, 2개 특성
정의 세계적 으로
name ServicePackageContainerPolicyType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServicePackageContainerPolicyType">
    <xs:choice minOccurs="0" maxOccurs="unbounded">
      <xs:element name="PortBinding" type="PortBindingType" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>Specifies which endpoint resource to bind container exposed port.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:choice>
    <xs:attribute name="Hostname" use="optional" type="xs:string">
      <xs:annotation>
        <xs:documentation>Specify Hostname for container.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="Isolation" use="optional" type="xs:string">
      <xs:annotation>
        <xs:documentation>Isolation mode for container. Valid values are "default", "process" or "hyperv".</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

Hostname

컨테이너의 호스트 이름을 지정합니다.

attribute
name Hostname
use 선택적
type xs:string

격리

컨테이너의 격리 모드입니다. 유효한 값은 "default", "process" 또는 "hyperv"입니다.

attribute
name 격리
use 선택적
type xs:string

콘텐츠 요소 세부 정보

PortBinding

컨테이너에 노출된 포트를 바인딩할 엔드포인트 리소스를 지정합니다.

attribute
name PortBinding
type PortBindingType
Minoccurs 0
Maxoccurs 바인딩되지 않은

ServicePackageResourceGovernancePolicyType complexType

attribute
콘텐츠 0개 요소, 2개 특성
정의 세계적 으로
name ServicePackageResourceGovernancePolicyType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServicePackageResourceGovernancePolicyType">
    <xs:attribute name="CpuCores" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>CPU limit in number of logical cores. Must be a positive integer.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="MemoryInMB" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>Memory limits in MB. Must be a positive integer.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

CpuCores

CPU의 논리 코어 수 제한입니다. 양의 정수여야 합니다.

attribute
name CpuCores
type xs:string
use 선택적
기본값 0

MemoryInMB

메모리 제한(MB)입니다. 양의 정수여야 합니다.

attribute
name MemoryInMB
type xs:string
use 선택적
기본값 0

ServicePackageType complexType

ServicePackage는 버전이 지정된 배포 및 활성화 단위를 나타냅니다. ServicePackage 버전은 매니페스트 버전 및 재정의 버전에 따라 결정됩니다.

attribute
콘텐츠 11개 요소, 4개 특성
정의 세계적 으로
name ServicePackageType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServicePackageType">
    <xs:annotation>
      <xs:documentation>ServicePackage represents a versioned unit of deployment and activation. The version of the ServicePackage is determined based on the manifest version and the version of the overrides.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Description" type="xs:string" minOccurs="0"/>
      <xs:element name="ServicePackageResourceGovernancePolicy" type="ServicePackageResourceGovernancePolicyType" minOccurs="0" maxOccurs="1"/>
      <xs:element name="ServicePackageContainerPolicy" type="ServicePackageContainerPolicyType" minOccurs="0" maxOccurs="1"/>
      <xs:element name="ServiceFabricRuntimeAccessPolicy" type="ServiceFabricRuntimeAccessPolicyType" minOccurs="0" maxOccurs="1"/>
      <xs:element name="DigestedServiceTypes">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="ServiceTypes" type="ServiceTypesType"/>
          </xs:sequence>
          <xs:attributeGroup ref="VersionedItemAttrGroup"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="DigestedCodePackage" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="CodePackage" type="CodePackageType"/>
            <xs:element name="RunAsPolicy" type="RunAsPolicyType" minOccurs="0" maxOccurs="2"/>
            <xs:element name="DebugParameters" type="DebugParametersType" minOccurs="0" maxOccurs="1"/>
            <xs:element name="ContainerHostPolicies" type="ContainerHostPoliciesType" minOccurs="0">
              <xs:annotation>
                <xs:documentation>Specifies policies for activating container hosts.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="ResourceGovernancePolicy" type="ResourceGovernancePolicyType" minOccurs="0">
              <xs:annotation>
                <xs:documentation>Specifies resource limits for codepackage.</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="ConfigPackagePolicies" type="ConfigPackagePoliciesType" minOccurs="0">
              <xs:annotation>
                <xs:documentation>Specifies config policies for mounts.</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
          <xs:attributeGroup ref="VersionedItemAttrGroup"/>
          <xs:attribute name="ContentChecksum" type="xs:string"/>
          <xs:attribute name="IsShared" type="xs:boolean"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="DigestedConfigPackage" minOccurs="0" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="ConfigPackage" type="ConfigPackageType"/>
            <xs:element name="ConfigOverride" type="ConfigOverrideType" minOccurs="0"/>
            <xs:element name="DebugParameters" type="DebugParametersType" minOccurs="0" maxOccurs="1"/>
          </xs:sequence>
          <xs:attributeGroup ref="VersionedItemAttrGroup"/>
          <xs:attribute name="ContentChecksum" type="xs:string"/>
          <xs:attribute name="IsShared" type="xs:boolean"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="DigestedDataPackage" minOccurs="0" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="DataPackage" type="DataPackageType"/>
            <xs:element name="DebugParameters" type="DebugParametersType" minOccurs="0" maxOccurs="1"/>
          </xs:sequence>
          <xs:attributeGroup ref="VersionedItemAttrGroup"/>
          <xs:attribute name="ContentChecksum" type="xs:string"/>
          <xs:attribute name="IsShared" type="xs:boolean"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="DigestedResources" minOccurs="1">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="DigestedEndpoints" minOccurs="0">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="DigestedEndpoint" minOccurs="0" maxOccurs="unbounded">
                    <xs:complexType>
                      <xs:sequence>
                        <xs:element name="Endpoint" type="EndpointType"/>
                        <xs:element name="SecurityAccessPolicy" type="SecurityAccessPolicyType" minOccurs="0"/>
                        <xs:element name="EndpointBindingPolicy" type="EndpointBindingPolicyType" minOccurs="0"/>
                        <xs:element name="ResourceGovernancePolicy" type="ResourceGovernancePolicyType" minOccurs="0" maxOccurs="1"/>
                      </xs:sequence>
                    </xs:complexType>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
            <xs:element name="DigestedCertificates" minOccurs="0" maxOccurs="1">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="EndpointCertificate" type="EndpointCertificateType" minOccurs="0" maxOccurs="unbounded"/>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
          <xs:attributeGroup ref="VersionedItemAttrGroup"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="NetworkPolicies" type="NetworkPoliciesType" minOccurs="0" maxOccurs="1"/>
      <xs:element name="Diagnostics" type="ServiceDiagnosticsType"/>
    </xs:sequence>
    <xs:attribute name="Name" type="xs:string" use="required"/>
    <xs:attribute name="ManifestVersion" type="xs:string" use="required"/>
    <xs:attributeGroup ref="VersionedItemAttrGroup"/>
    <xs:attribute name="ManifestChecksum" type="xs:string">
      <xs:annotation>
        <xs:documentation>Checksum value of the ServiceManifest file.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="ContentChecksum" type="xs:string">
      <xs:annotation>
        <xs:documentation>Checksum value of this ServicePackage content.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

이름

attribute
name 이름
type xs:string
use 필수

ManifestVersion

attribute
name ManifestVersion
type xs:string
use 필수

ManifestChecksum

ServiceManifest 파일의 체크섬 값입니다.

attribute
name ManifestChecksum
type xs:string

ContentChecksum

이 ServicePackage 콘텐츠의 체크섬 값입니다.

attribute
name ContentChecksum
type xs:string

콘텐츠 요소 세부 정보

설명

attribute
name Description
type xs:string
Minoccurs 0

ServicePackageResourceGovernancePolicy

attribute
name ServicePackageResourceGovernancePolicy
type ServicePackageResourceGovernancePolicyType
Minoccurs 0
Maxoccurs 1

ServicePackageContainerPolicy

attribute
name ServicePackageContainerPolicy
type ServicePackageContainerPolicyType
Minoccurs 0
Maxoccurs 1

ServiceFabricRuntimeAccessPolicy

attribute
name ServiceFabricRuntimeAccessPolicy
type ServiceFabricRuntimeAccessPolicyType
Minoccurs 0
Maxoccurs 1

DigestedServiceTypes

attribute
name DigestedServiceTypes

DigestedCodePackage

attribute
name DigestedCodePackage
Maxoccurs 바인딩되지 않은

DigestedConfigPackage

attribute
name DigestedConfigPackage
Minoccurs 0
Maxoccurs 바인딩되지 않은

DigestedDataPackage

attribute
name DigestedDataPackage
Minoccurs 0
Maxoccurs 바인딩되지 않은

DigestedResources

attribute
name DigestedResources
Minoccurs 1

NetworkPolicies

attribute
name NetworkPolicies
type NetworkPoliciesType
Minoccurs 0
Maxoccurs 1

진단

attribute
name 진단
type ServiceDiagnosticsType

ServiceTemplatesType complexType

attribute
콘텐츠 4개 요소, 0개 특성
정의 세계적 으로
name ServiceTemplatesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServiceTemplatesType">
        <xs:choice minOccurs="0" maxOccurs="unbounded">
            <xs:element name="StatelessService" type="StatelessServiceType"/>
            <xs:element name="StatefulService" type="StatefulServiceType"/>
            <xs:element name="StatelessServiceGroup" type="StatelessServiceGroupType"/>
            <xs:element name="StatefulServiceGroup" type="StatefulServiceGroupType"/>
        </xs:choice>
    </xs:complexType>
    

콘텐츠 요소 세부 정보

StatelessService

attribute
name StatelessService
type StatelessServiceType

StatefulService

attribute
name StatefulService
type StatefulServiceType

StatelessServiceGroup

attribute
name StatelessServiceGroup
type StatelessServiceGroupType

StatefulServiceGroup

attribute
name StatefulServiceGroup
type StatefulServiceGroupType

ServiceType complexType

Microsoft Azure Service Fabric 서비스를 정의하는 기본 형식입니다.

attribute
콘텐츠 5개 요소, 2개 특성
정의 세계적 으로
name ServiceType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServiceType">
        <xs:annotation>
            <xs:documentation>Base type that defines a Microsoft Azure Service Fabric service.</xs:documentation>
        </xs:annotation>
        <xs:sequence>
            <xs:group ref="PartitionDescriptionGroup"/>
            <xs:element name="LoadMetrics" minOccurs="0">
                <xs:annotation>
                    <xs:documentation>Load metrics reported by this service, used for resource balancing services.</xs:documentation>
                </xs:annotation>
                <xs:complexType>
                    <xs:sequence>
                        <xs:element name="LoadMetric" type="LoadMetricType" maxOccurs="unbounded"/>
                    </xs:sequence>
                </xs:complexType>
            </xs:element>
            <xs:element name="PlacementConstraints" type="xs:string" minOccurs="0">
                <xs:annotation>
                    <xs:documentation>Used to control which nodes in the cluster a service can run on. A key/value pair which describes the node property name and the service's requirements for the value. Individual statements can be grouped together with simple boolean logic to create the necessary constraint. For example, "(FirmwareVersion&gt;12  &amp;&amp; InDMZ == True)".</xs:documentation>
                </xs:annotation>
            </xs:element>
            <xs:element name="ServiceCorrelations" minOccurs="0">
                <xs:annotation>
                    <xs:documentation>Defines affinity relationships between services.</xs:documentation>
                </xs:annotation>
                <xs:complexType>
                    <xs:sequence>
                        <xs:element name="ServiceCorrelation" maxOccurs="unbounded">
                            <xs:annotation>
                                <xs:documentation>Defines an affinity relationship with another service. Useful when splitting a previously-monolithic application into microservices.  One service has a local dependency on another service and both services need to run on the same node in order to work.</xs:documentation>
                            </xs:annotation>
                            <xs:complexType>
                                <xs:attribute name="ServiceName" use="required">
                                    <xs:annotation>
                                        <xs:documentation>The name of the other service as a URI. Example, "fabric:/otherApplication/parentService".</xs:documentation>
                                    </xs:annotation>
                                    <xs:simpleType>
                                        <xs:restriction base="xs:string">
                                            <xs:minLength value="1"/>
                                        </xs:restriction>
                                    </xs:simpleType>
                                </xs:attribute>
                                <xs:attribute name="Scheme" use="required">
                                    <xs:annotation>
                                        <xs:documentation>In NonAlignedAffinity the replicas or instances of the different services are placed on the same nodes. AlignedAffinity is used with stateful services. Configuring one stateful service as having aligned affinity with another stateful service ensures that the primaries of those services are placed on the same nodes as each other, and that each pair of secondaries are also placed on the same nodes.</xs:documentation>
                                    </xs:annotation>
                                    <xs:simpleType>
                                        <xs:restriction base="xs:string">
                                            <xs:enumeration value="Affinity"/>
                                            <xs:enumeration value="AlignedAffinity"/>
                                            <xs:enumeration value="NonAlignedAffinity"/>
                                        </xs:restriction>
                                    </xs:simpleType>
                                </xs:attribute>
                            </xs:complexType>
                        </xs:element>
                    </xs:sequence>
                </xs:complexType>
            </xs:element>
            <xs:element name="ServicePlacementPolicies" minOccurs="0">
                <xs:annotation>
                    <xs:documentation>Declares placement policies for a service.  Useful when the cluster spans geographic distances or and/or geopolitical regions.</xs:documentation>
                </xs:annotation>
                <xs:complexType>
                    <xs:sequence>
                        <xs:element name="ServicePlacementPolicy" maxOccurs="unbounded">
                            <xs:annotation>
                                <xs:documentation>Defines a service placement policy, which specifies that the service should or should not run in certain cluster fault domains.  Useful when the cluster spans geographic distances or and/or geopolitical regions.</xs:documentation>
                            </xs:annotation>
                            <xs:complexType>
                                <xs:attribute name="DomainName">
                                    <xs:annotation>
                                        <xs:documentation>The fault domain where the service should or should not be placed, depending on the Type value.</xs:documentation>
                                    </xs:annotation>
                                    <xs:simpleType>
                                        <xs:restriction base="xs:string">
                                            <xs:minLength value="1"/>
                                        </xs:restriction>
                                    </xs:simpleType>
                                </xs:attribute>
                                <xs:attribute name="Type" use="required">
                                    <xs:annotation>
                                        <xs:documentation>InvalidDomain allows you to specify that a particular Fault Domain is invalid for this workload. RequiredDomain requires that all of the replicas be present in the specified domain. Multiple required domains can be specified. PreferredPrimaryDomain specifies the preferred Fault Domain for primary replicas. Useful in geographically spanned clusters where you are using other locations for redundancy, but would prefer that the primary replicas be placed in a certain location in order to provider lower latency for operations which go to the primary. RequiredDomainDistribution specifies that replicas are required to be distributed among the available fault domains. NonPartiallyPlace controls if the service replicas will be partially place if not all of them can be placed.</xs:documentation>
                                    </xs:annotation>
                                    <xs:simpleType>
                                        <xs:restriction base="xs:string">
                                            <xs:enumeration value="InvalidDomain"/>
                                            <xs:enumeration value="RequiredDomain"/>
                                            <xs:enumeration value="PreferredPrimaryDomain"/>
                                            <xs:enumeration value="RequiredDomainDistribution"/>
                                            <xs:enumeration value="NonPartiallyPlace"/>
                                        </xs:restriction>
                                    </xs:simpleType>
                                </xs:attribute>
                            </xs:complexType>
                        </xs:element>
                    </xs:sequence>
                </xs:complexType>
            </xs:element>
            <xs:element name="ServiceScalingPolicies" minOccurs="0">
                <xs:annotation>
                    <xs:documentation>Declares scaling policies for a service. Useful for dynamically scaling the service based on needs. </xs:documentation>
                </xs:annotation>
                <xs:complexType>
                    <xs:sequence>
                        <xs:element name="ScalingPolicy" type="ScalingPolicyType" maxOccurs="unbounded"/>
                    </xs:sequence>
                </xs:complexType>
            </xs:element>
            <xs:element name="TagsRequiredToPlace" minOccurs="0">
              <xs:annotation>
                <xs:documentation>Declares tags required for placement of a service. </xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="TagRequiredToPlace" type="xs:string" maxOccurs="unbounded"/>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
            <xs:element name="TagsRequiredToRun" minOccurs="0">
              <xs:annotation>
                <xs:documentation>Declares tags required for placement and running of a service. <xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="TagRequiredToRun" type="xs:string" maxOccurs="unbounded"/>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
        </xs:sequence>
        <xs:attribute name="ServiceTypeName" use="required">
            <xs:annotation>
                <xs:documentation>Name of the service type, declared in the service manifest, that will be instantiated.</xs:documentation>
            </xs:annotation>
            <xs:simpleType>
                <xs:restriction base="xs:string">
                    <xs:minLength value="1"/>
                </xs:restriction>
            </xs:simpleType>
        </xs:attribute>
        <xs:attribute name="DefaultMoveCost">
            <xs:annotation>
                <xs:documentation>Specifies default move cost for this service.</xs:documentation>
            </xs:annotation>
            <xs:simpleType>
                <xs:restriction base="xs:string">
                    <xs:enumeration value="Zero"/>
                    <xs:enumeration value="Low"/>
                    <xs:enumeration value="Medium"/>
                    <xs:enumeration value="High"/>
                </xs:restriction>
            </xs:simpleType>
        </xs:attribute>
    </xs:complexType>
    

특성 세부 정보

ServiceTypeName

인스턴스화될 서비스 매니페스트에 선언된 서비스 유형의 이름입니다.

attribute
name ServiceTypeName
use 필수

DefaultMoveCost

이 서비스의 기본 이동 비용을 지정합니다.

attribute
name DefaultMoveCost

콘텐츠 요소 세부 정보

LoadMetrics

리소스 분산 서비스에 사용되는 이 서비스에서 보고한 로드 메트릭입니다.

attribute
name LoadMetrics
Minoccurs 0

PlacementConstraints

서비스를 실행할 수 있는 클러스터의 노드를 제어하는 데 사용됩니다. 노드 속성 이름 및 값에 대한 서비스의 요구 사항을 설명하는 키/값 쌍입니다. 개별 문을 간단한 부울 논리로 함께 그룹화하여 필요한 제약 조건을 만들 수 있습니다. 예를 들어 "(FirmwareVersion>12 && InDMZ == True)"입니다.

attribute
name PlacementConstraints
type xs:string
Minoccurs 0

ServiceCorrelations

서비스 간의 선호도 관계를 정의합니다.

attribute
name ServiceCorrelations
Minoccurs 0

ServicePlacementPolicies

서비스에 대한 배치 정책을 선언합니다. 클러스터가 지리적 거리 및/또는 지정학적 지역에 걸쳐 있는 경우에 유용합니다.

attribute
name ServicePlacementPolicies
Minoccurs 0

ServiceScalingPolicies

서비스에 대한 크기 조정 정책을 선언합니다. 요구에 따라 서비스를 동적으로 확장하는 데 유용합니다.

attribute
name ServiceScalingPolicies
Minoccurs 0

TagsRequiredToPlace

서비스 배치에 필요한 태그를 선언합니다. 동적으로 서비스 배치에 영향을 주는 데 유용합니다.

attribute
name TagsRequiredToPlace
Minoccurs 0

TagRequiredToRun

서비스의 배치 및 실행에 필요한 태그를 선언합니다. 서비스 배치 및 실행에 동적으로 영향을 주는 데 유용합니다.

attribute
name TagRequiredToRun
Minoccurs 0

ServiceTypeExtensionPolicyPropertiesType complexType

지속성 및 제거 정책에 대한 속성을 정의합니다.

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name ServiceTypeExtensionPolicyPropertiesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServiceTypeExtensionPolicyPropertiesType">
    <xs:annotation>
      <xs:documentation>Defines Properties for the Persistence and Eviction policies.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Property" minOccurs="0" maxOccurs="unbounded">
        <xs:complexType>
          <xs:attribute name="Name" type="xs:string" use="required"/>
          <xs:attribute name="Value" type="xs:string" use="required"/>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

속성

attribute
name 속성
Minoccurs 0
Maxoccurs 바인딩되지 않은

ServiceTypeHealthPolicyType complexType

attribute
콘텐츠 0개 요소, 3개 특성
정의 세계적 으로
name ServiceTypeHealthPolicyType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServiceTypeHealthPolicyType">    
    <xs:attribute name="MaxPercentUnhealthyServices" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>Specifies the maximum tolerated percentage of unhealthy services before the application is considered unhealthy. Default percentage: 0.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="MaxPercentUnhealthyPartitionsPerService" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>Specifies the maximum tolerated percentage of unhealthy partitions before a service is considered unhealthy. Default percentage: 0.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="MaxPercentUnhealthyReplicasPerPartition" type="xs:string" use="optional" default="0">
      <xs:annotation>
        <xs:documentation>Specifies the maximum tolerated percentage of unhealthy replicas before a partition is considered unhealthy. Default percentage: 0.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

MaxPercentUnhealthyServices

애플리케이션이 비정상으로 간주되기 전에 허용되는 비정상 서비스의 최대 허용 비율을 지정합니다. 기본 백분율: 0.

attribute
name MaxPercentUnhealthyServices
type xs:string
use 선택적
기본값 0

MaxPercentUnhealthyPartitionsPerService

서비스가 비정상으로 간주되기 전에 허용되는 최대 비정상 파티션 비율을 지정합니다. 기본 백분율: 0.

attribute
name MaxPercentUnhealthyPartitionsPerService
type xs:string
use 선택적
기본값 0

MaxPercentUnhealthyReplicasPerPartition

파티션을 비정상으로 처리하기 전에 허용되는 최대 비정상 복제본 비율을 지정합니다. 기본 백분율: 0.

attribute
name MaxPercentUnhealthyReplicasPerPartition
type xs:string
use 선택적
기본값 0

ServiceTypeType complexType

상태 저장 또는 상태 비저장 ServiceType을 설명하는 기본 형식입니다.

attribute
콘텐츠 4개 요소, 1개 특성
정의 세계적 으로
name ServiceTypeType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServiceTypeType">
    <xs:annotation>
      <xs:documentation>Base type that describes a stateful or a stateless ServiceType.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="LoadMetrics" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Load metrics reported by this service.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="LoadMetric" type="LoadMetricType" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="PlacementConstraints" type="xs:string" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Used to control which nodes in the cluster a service can run on. A key/value pair which describes the node property name and the service's requirements for the value. Individual statements can be grouped together with simple boolean logic to create the necessary constraint. For example, "(FirmwareVersion&gt;12  &amp;&amp; InDMZ == True)".</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="ServicePlacementPolicies" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Declares placement policies for a service.  Useful when the cluster spans geographic distances or and/or geopolitical regions.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="ServicePlacementPolicy" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>Defines a service placement policy, which specifies that the service should or should not run in certain cluster fault domains.  Useful when the cluster spans geographic distances or and/or geopolitical regions.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:attribute name="DomainName">
                  <xs:annotation>
                    <xs:documentation>The fault domain where the service should or should not be placed, depending on the Type value.</xs:documentation>
                  </xs:annotation>
                  <xs:simpleType>
                    <xs:restriction base="xs:string">
                      <xs:minLength value="1"/>
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
                <xs:attribute name="Type" use="required">
                  <xs:annotation>
                    <xs:documentation>InvalidDomain allows you to specify that a particular Fault Domain is invalid for this workload. RequiredDomain requires that all of the replicas be present in the specified domain. Multiple required domains can be specified. PreferredPrimaryDomain specifies the preferred Fault Domain for primary replicas. Useful in geographically spanned clusters where you are using other locations for redundancy, but would prefer that the primary replicas be placed in a certain location in order to provider lower latency for operations which go to the primary. RequiredDomainDistribution specifies that replicas are required to be distributed among the available fault domains. NonPartiallyPlace controls if the service replicas will be partially place if not all of them can be placed. </xs:documentation>
                  </xs:annotation>
                  <xs:simpleType>
                    <xs:restriction base="xs:string">
                      <xs:enumeration value="InvalidDomain"/>
                      <xs:enumeration value="RequiredDomain"/>
                      <xs:enumeration value="PreferredPrimaryDomain"/>
                      <xs:enumeration value="RequiredDomainDistribution"/>
                      <xs:enumeration value="NonPartiallyPlace"/>
                    </xs:restriction>
                  </xs:simpleType>
                </xs:attribute>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element ref="Extensions" minOccurs="0"/>
    </xs:sequence>
    <xs:attribute name="ServiceTypeName" use="required">
      <xs:annotation>
        <xs:documentation>User-defined type identifier for a service. For example, "QueueType" or "CalculatorType". This value is used in the ApplicationManifest.xml file to identify the service.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:minLength value="1"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

ServiceTypeName

서비스에 대한 사용자 정의 형식 식별자입니다. 예를 들어 "QueueType" 또는 "CalculatorType"입니다. 이 값은 ApplicationManifest.xml 파일에서 서비스를 식별하는 데 사용됩니다.

attribute
name ServiceTypeName
use 필수

콘텐츠 요소 세부 정보

LoadMetrics

이 서비스에서 보고한 메트릭을 로드합니다.

attribute
name LoadMetrics
Minoccurs 0

PlacementConstraints

서비스를 실행할 수 있는 클러스터의 노드를 제어하는 데 사용됩니다. 노드 속성 이름 및 값에 대한 서비스의 요구 사항을 설명하는 키/값 쌍입니다. 개별 문을 간단한 부울 논리로 함께 그룹화하여 필요한 제약 조건을 만들 수 있습니다. 예를 들어 "(FirmwareVersion>12 && InDMZ == True)"입니다.

attribute
name PlacementConstraints
type xs:string
Minoccurs 0

ServicePlacementPolicies

서비스에 대한 배치 정책을 선언합니다. 클러스터가 지리적 거리 및/또는 지정학적 지역에 걸쳐 있는 경우에 유용합니다.

attribute
name ServicePlacementPolicies
Minoccurs 0

없음

attribute
ref 확장
Minoccurs 0

ServiceTypesType complexType

attribute
콘텐츠 2개 요소, 0개 특성
정의 세계적 으로
name ServiceTypesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="ServiceTypesType">
    <xs:choice maxOccurs="unbounded">
      <xs:element name="StatefulServiceType" type="StatefulServiceTypeType">
        <xs:annotation>
          <xs:documentation>Describes a stateful ServiceType.</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="StatelessServiceType" type="StatelessServiceTypeType">
        <xs:annotation>
          <xs:documentation>Describes a stateless ServiceType.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:choice>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

StatefulServiceType

상태 저장 ServiceType을 설명합니다.

attribute
name StatefulServiceType
type StatefulServiceTypeType

StatelessServiceType

상태 비정상 ServiceType에 대해 설명합니다.

attribute
name StatelessServiceType
type StatelessServiceTypeType

설정OverridesType complexType

재정의할 서비스 매니페스트의 구성 설정을 선언합니다. 키-값 쌍의 하나 이상의 섹션으로 구성됩니다. 매개 변수 값은 Invoke-ServiceFabricEncryptSecret cmdlet을 사용하여 암호화할 수 있습니다.

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name SettingsOverridesType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="SettingsOverridesType">
    <xs:annotation>
      <xs:documentation>Declares configuration settings in a service manifest to be overridden. It consists of one or more sections of key-value pairs. Parameter values can be encrypted using the Invoke-ServiceFabricEncryptSecret cmdlet.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Section" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>A section in the Settings.xml file to override.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Parameter" minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
                <xs:documentation>The setting to override.</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                <xs:attributeGroup ref="NameValuePair"/>
                <xs:attribute name="IsEncrypted" type="xs:boolean" default="false">
                  <xs:annotation>
                    <xs:documentation>
                      If true, the value of this parameter is encrypted. The application developer is responsible for creating a certificate and using the Invoke-ServiceFabricEncryptSecret cmdlet to encrypt sensitive information. The certificate information that will be used to encrypt the value is specified in the Certificates section. This attribute is deprecated. Please use Type attribute.
                    </xs:documentation>
                                    </xs:annotation>
                                </xs:attribute>
                <xs:attribute name="Type" type="xs:string" use="optional">
                  <xs:annotation>
                    <xs:documentation>
                      This value defines the type of value you have specified in the 'Value' Attribute. It can be SecretsStoreRef/Encrypted/PlainText.
                      If set to SecretsStoreRef, we retrieve  the reference value from the SecretStore.
                      If set to Encrypted, the application developer is responsible for creating a certificate and using the Invoke-ServiceFabricEncryptSecret cmdlet to encrypt sensitive information.
                    </xs:documentation>
                  </xs:annotation>
                </xs:attribute>
                            </xs:complexType>
                        </xs:element>
                    </xs:sequence>
                    <xs:attribute name="Name" use="required">
                        <xs:annotation>
                            <xs:documentation>The name of the section in the Settings.xml file to override.</xs:documentation>
                        </xs:annotation>
                        <xs:simpleType>
                            <xs:restriction base="xs:string">
                                <xs:minLength value="1"/>
                            </xs:restriction>
                        </xs:simpleType>
                    </xs:attribute>
                </xs:complexType>
            </xs:element>
        </xs:sequence>
    </xs:complexType>
    

콘텐츠 요소 세부 정보

섹션

재정의할 설정.xml 파일의 섹션입니다.

attribute
name 섹션
Maxoccurs 바인딩되지 않은

설정Type complexType

ServiceComponent 또는 애플리케이션에 대한 사용자 정의 설정을 설명합니다. 키-값 쌍의 하나 이상의 섹션으로 구성됩니다.

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name 설정Type

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="SettingsType">
    <xs:annotation>
      <xs:documentation>Describes user-defined settings for a ServiceComponent or an Application. It consists of one or more sections of key-value pairs.</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="Section" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>A user-defined named section.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Parameter" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:attribute name="Name" type="xs:string" use="required"/>
                <xs:attribute name="Value" type="xs:string" use="required"/>
                <xs:attribute name="MustOverride" type="xs:boolean" default="false">
                  <xs:annotation>
                    <xs:documentation>If true, the value of this parameter must be overridden by higher level configuration.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
                <xs:attribute name="IsEncrypted" type="xs:boolean" default="false">
                  <xs:annotation>
                    <xs:documentation>If true, the value of this parameter is encrypted.</xs:documentation>
                  </xs:annotation>
                </xs:attribute>
                <xs:attribute name="Type" type="xs:string" use="optional"/>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="Name" type="xs:string" use="required"/>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

섹션

사용자 정의 이름으로 지정된 섹션입니다.

attribute
name 섹션
Minoccurs 0
Maxoccurs 바인딩되지 않은

StatefulServiceGroupType complexType

상태 저장 서비스 그룹을 정의합니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name StatefulServiceGroupType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="StatefulServiceGroupType">
        <xs:annotation>
            <xs:documentation>Defines a stateful service group.</xs:documentation>
        </xs:annotation>
        <xs:complexContent>
            <xs:extension base="StatefulServiceType">
                <xs:sequence>
                    <xs:element name="Members" minOccurs="1" maxOccurs="1">
                        <xs:annotation>
                            <xs:documentation>Member services of this service group</xs:documentation>
                        </xs:annotation>
                        <xs:complexType>
                            <xs:sequence>
                                <xs:element name="Member" type="ServiceGroupMemberType" minOccurs="1" maxOccurs="unbounded"/>
                            </xs:sequence>
                        </xs:complexType>
                    </xs:element>
                </xs:sequence>
            </xs:extension>
        </xs:complexContent>
    </xs:complexType>
    

StatefulServiceGroupTypeType complexType

상태 저장 서비스 그룹 유형을 설명합니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name StatefulServiceGroupTypeType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="StatefulServiceGroupTypeType">
    <xs:annotation>
      <xs:documentation>Describes a stateful service group type.</xs:documentation>
    </xs:annotation>
    <xs:complexContent>
      <xs:extension base="ServiceGroupTypeType">
        <xs:attribute name="HasPersistedState" type="xs:boolean" default="false">
          <xs:annotation>
            <xs:documentation>True if the service group has state that needs to be persisted.</xs:documentation>
          </xs:annotation>
        </xs:attribute>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  

StatefulServiceType complexType

상태 저장 서비스를 정의합니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name StatefulServiceType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="StatefulServiceType">
        <xs:annotation>
            <xs:documentation>Defines a stateful service.</xs:documentation>
        </xs:annotation>
        <xs:complexContent>
            <xs:extension base="ServiceType">
                <xs:attribute name="TargetReplicaSetSize" type="xs:string" default="1">
                    <xs:annotation>
                        <xs:documentation>Desired replica set size for the partitions of this stateful service. Must be a positive integer. This is a target size; a replica set is still functional with less members. The quorum is a majority based quorum.</xs:documentation>
                    </xs:annotation>
                </xs:attribute>
                <xs:attribute name="MinReplicaSetSize" type="xs:string" default="1">
                    <xs:annotation>
                        <xs:documentation>Minimum number of replicas required in the replica set to allow writes.  Must be positive integer less than TargetReplicaSetSize. </xs:documentation>
                    </xs:annotation>
                </xs:attribute>
                <xs:attribute name="ReplicaRestartWaitDurationSeconds" type="xs:string" use="optional" default="">
                    <xs:annotation>
                        <xs:documentation>The duration between when a replica goes down and when a new replica is created. When a persistent replica goes down, this timer starts.  When it expires Service Fabric will create a new replica on any node in the cluster.</xs:documentation>
                    </xs:annotation>
                </xs:attribute>
                <xs:attribute name="QuorumLossWaitDurationSeconds" type="xs:string" use="optional" default="">
                    <xs:annotation>
                        <xs:documentation>The maximum duration for which a partition is allowed to be in a state of quorum loss. If the partition is still in quorum loss after this duration, the partition is recovered from quorum loss by considering the down replicas as lost. Note that this can potentially incur data loss.</xs:documentation>
                    </xs:annotation>
                </xs:attribute>
                <xs:attribute name="StandByReplicaKeepDurationSeconds" type="xs:string" use="optional" default="">
                    <xs:annotation>
                        <xs:documentation>How long StandBy replicas should be maintained before being removed. Sometimes a replica will be down for longer than the ReplicaRestartWaitDuration. In these cases a new replica will be built to replace it. Sometimes however the loss is not permanent and the persistent replica is eventually recovered. This now constitutes a StandBy replica.</xs:documentation>
                    </xs:annotation>
                </xs:attribute>
            </xs:extension>
        </xs:complexContent>
    </xs:complexType>
    

StatefulServiceTypeType complexType

상태 저장 서비스 유형을 설명합니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name StatefulServiceTypeType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="StatefulServiceTypeType">
    <xs:annotation>
      <xs:documentation>Describes a stateful service type.</xs:documentation>
    </xs:annotation>
    <xs:complexContent>
      <xs:extension base="ServiceTypeType">
        <xs:attribute name="HasPersistedState" type="xs:boolean" default="false">
          <xs:annotation>
            <xs:documentation>True if the service has state that needs to be persisted on the local disk.</xs:documentation>
          </xs:annotation>
        </xs:attribute>
        <xs:attribute name="UseImplicitHost" type="xs:boolean" default="false">
          <xs:annotation>
            <xs:documentation>Specifies if the service type should be implemented implicitly as a guest executable. Guest executables are used for hosting any type of applications (such as Node.js or Java) or legacy applications that do not implement the Service Fabric service interfaces.</xs:documentation>
          </xs:annotation>
        </xs:attribute>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  

StatelessServiceGroupType complexType

상태 비정상 서비스 그룹을 정의합니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name StatelessServiceGroupType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="StatelessServiceGroupType">
        <xs:annotation>
            <xs:documentation>Defines a stateless service group.</xs:documentation>
        </xs:annotation>
        <xs:complexContent>
            <xs:extension base="StatelessServiceType">
                <xs:sequence>
                    <xs:element name="Members" minOccurs="1" maxOccurs="1">
                        <xs:annotation>
                            <xs:documentation>Member services of this service group</xs:documentation>
                        </xs:annotation>
                        <xs:complexType>
                            <xs:sequence>
                                <xs:element name="Member" type="ServiceGroupMemberType" minOccurs="1" maxOccurs="unbounded"/>
                            </xs:sequence>
                        </xs:complexType>
                    </xs:element>
                </xs:sequence>
            </xs:extension>
        </xs:complexContent>
    </xs:complexType>
    

StatelessServiceGroupTypeType complexType

상태 비지정 서비스 그룹 유형을 설명합니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name StatelessServiceGroupTypeType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="StatelessServiceGroupTypeType">
    <xs:annotation>
      <xs:documentation>Describes a stateless service group type.</xs:documentation>
    </xs:annotation>
    <xs:complexContent>
      <xs:extension base="ServiceGroupTypeType"/>
    </xs:complexContent>
  </xs:complexType>
  

StatelessServiceType complexType

상태 비정상 서비스를 정의합니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name StatelessServiceType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="StatelessServiceType">
        <xs:annotation>
            <xs:documentation>Defines a stateless service.</xs:documentation>
        </xs:annotation>
        <xs:complexContent>
            <xs:extension base="ServiceType">
                <xs:attribute name="InstanceCount" type="xs:string" default="1">
                    <xs:annotation>
                        <xs:documentation>Number of instances required for this stateless service (positive integer).</xs:documentation>
                    </xs:annotation>
                </xs:attribute>
            </xs:extension>
        </xs:complexContent>
    </xs:complexType>
    

StatelessServiceTypeType complexType

상태 비지정 서비스 유형을 설명합니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name StatelessServiceTypeType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="StatelessServiceTypeType">
    <xs:annotation>
      <xs:documentation>Describes a stateless service type.</xs:documentation>
    </xs:annotation>
    <xs:complexContent>
      <xs:extension base="ServiceTypeType">
        <xs:attribute name="UseImplicitHost" type="xs:boolean" default="false">
          <xs:annotation>
            <xs:documentation>Specifies if the service type should be implemented implicitly as a guest executable. Guest executables are used for hosting any type of applications (such as Node.js or Java) or legacy applications that do not implement the Service Fabric service interfaces.</xs:documentation>
          </xs:annotation>
        </xs:attribute>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  

TargetInformationType complexType

attribute
콘텐츠 2개 요소, 0개 특성
정의 세계적 으로
name TargetInformationType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="TargetInformationType">
    <xs:all>
      <xs:element name="CurrentInstallation" type="WindowsFabricDeploymentInformation" minOccurs="0"/>
      <xs:element name="TargetInstallation" type="WindowsFabricDeploymentInformation" minOccurs="1"/>
    </xs:all>
  </xs:complexType>
  

콘텐츠 요소 세부 정보

CurrentInstallation

attribute
name CurrentInstallation
type WindowsFabricDeploymentInformation
Minoccurs 0

TargetInstallation

attribute
name TargetInstallation
type WindowsFabricDeploymentInformation
Minoccurs 1

UnmanagedDllType complexType

지원되지 않는 경우 사용하지 마세요. 호스트할 관리되지 않는 어셈블리의 이름(예: Queue.dll)입니다.

attribute
콘텐츠 0개 요소, 0개 특성
정의 세계적 으로
name UnmanagedDllType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="UnmanagedDllType">
    <xs:annotation>
        <xs:documentation>Unsupported, do not use. The name of unmanaged assembly (for example, Queue.dll), to host.</xs:documentation>
    </xs:annotation>
    <xs:simpleContent>
      <xs:extension base="xs:string"/>
    </xs:simpleContent>
  </xs:complexType>
  

WindowsFabricDeploymentInformation complexType

attribute
콘텐츠 0개 요소, 11개 특성
정의 세계적 으로
name WindowsFabricDeploymentInformation

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="WindowsFabricDeploymentInformation">
    <xs:attribute name="InstanceId" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>This is the target instance of the node.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="MSILocation" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>This is the full path to the MSI location.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="ClusterManifestLocation" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>This is the full path to the Cluster Manifest Location.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="InfrastructureManifestLocation" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>This location of the infrastructure manifest that is internally generated.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="TargetVersion" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>This is the Target Version of the deployment.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="NodeName" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>This is the name of the Node to which the Fabric Upgrade is to happen</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="RemoveNodeState" type="xs:boolean" use="optional" default="false">
        <xs:annotation>
            <xs:documentation>A flag indicating if RemoveNodeState Api should be called after removing node configuration.</xs:documentation>
        </xs:annotation>
    </xs:attribute>
    <xs:attribute name="UpgradeEntryPointExe" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>Name of the exe used by the installer service to upgrade </xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="UpgradeEntryPointExeParameters" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>Parameters to the Setup Entry point exe</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="UndoUpgradeEntryPointExe" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>Name of the exe used by the installer service to undo the upgrade</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="UndoUpgradeEntryPointExeParameters" type="xs:string" use="optional">
      <xs:annotation>
        <xs:documentation>Parameters to the Setup Entry point exe</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
  

특성 세부 정보

InstanceId

노드의 대상 인스턴스입니다.

attribute
name InstanceId
type xs:string
use 선택적

MSILocation

MSI 위치의 전체 경로입니다.

attribute
name MSILocation
type xs:string
use 선택적

ClusterManifestLocation

클러스터 매니페스트 위치의 전체 경로입니다.

attribute
name ClusterManifestLocation
type xs:string
use 선택적

InfrastructureManifestLocation

내부적으로 생성된 인프라 매니페스트의 위치입니다.

attribute
name InfrastructureManifestLocation
type xs:string
use 선택적

TargetVersion

배포의 대상 버전입니다.

attribute
name TargetVersion
type xs:string
use 선택적

NodeName

패브릭 업그레이드가 수행되는 노드의 이름입니다.

attribute
name NodeName
type xs:string
use 선택적

RemoveNodeState

노드 구성을 제거한 후 RemoveNodeState Api를 호출해야 하는지 여부를 나타내는 플래그입니다.

attribute
name RemoveNodeState
type xs:boolean
use 선택적
default false

UpgradeEntryPointExe

설치 관리자 서비스에서 업그레이드하는 데 사용하는 exe의 이름입니다.

attribute
name UpgradeEntryPointExe
type xs:string
use 선택적

UpgradeEntryPointExeParameters

설치 진입점 exe에 대한 매개 변수입니다.

attribute
name UpgradeEntryPointExeParameters
type xs:string
use 선택적

UndoUpgradeEntryPointExe

설치 관리자 서비스에서 업그레이드를 실행 취소하는 데 사용하는 exe의 이름

attribute
name UndoUpgradeEntryPointExe
type xs:string
use 선택적

UndoUpgradeEntryPointExeParameters

설치 진입점 exe에 대한 매개 변수입니다.

attribute
name UndoUpgradeEntryPointExeParameters
type xs:string
use 선택적

WindowsInfrastructureType complexType

attribute
콘텐츠 1개 요소, 0개 특성
정의 세계적 으로
name WindowsInfrastructureType

XML 원본

<xs:complexType xmlns:xs="https://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/2011/01/fabric" name="WindowsInfrastructureType">
                <xs:sequence>
                        <xs:element name="NodeList">
                                <xs:complexType>
                                        <xs:sequence>
                                                <xs:element name="Node" type="FabricNodeType" maxOccurs="unbounded"/>
                                        </xs:sequence>
                                </xs:complexType>
                        </xs:element>
                </xs:sequence>
        </xs:complexType>
  

콘텐츠 요소 세부 정보

NodeList

attribute
name NodeList