Commit e051666a authored by bradburyr's avatar bradburyr
Browse files

In contribution configuration, canonicalDomainName needs to be read-only at M1...

In contribution configuration, canonicalDomainName needs to be read-only at M1 and read/write at M3, so can't be promoted to a common base data type.
parent a3dca77f
Loading
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -333,7 +333,6 @@ components:
      description: 'A configuration for content contribution.'
      required:
        - contributionId
        - canonicalDomainName
        - baseURL
        - entryPoint
      properties:
@@ -372,6 +371,13 @@ components:
      description: 'A content contribution configuration.'
      allOf:
        - $ref: '#/components/schemas/BaseContributionConfiguration'
        - type: object
          properties:
            canonicalDomainName:
              readOnly: true
              type: string
              description: 'Default Fully-Qualified Domain Name assigned by the Media AF for use at reference point M4.'


    # Schema for the resource itself
    ContentPublishingConfiguration:
+6 −0
Original line number Diff line number Diff line
@@ -334,6 +334,12 @@ components:
      description: 'A content contribution configuration used to configure a Media AS.'
      allOf:
        - $ref: 'TS26510_Maf_Provisioning_ContentPublishing.yaml#/components/schemas/BaseContributionConfiguration'
        - type: object
          properties:
            canonicalDomainName:
              type: string
              description: 'Default Fully-Qualified Domain Name assigned by the Media AF for use at reference point M4.'


    # Schema for the resource itself
    ApplicationServerContentPublishingConfiguration: