aboutsummaryrefslogtreecommitdiffstats
path: root/mso-api-handlers/mso-api-handler-infra/src/test/resources/OrchestrationRequest/AlaCarteRequest.json
blob: 0eaa37b1f80c11e248a05cad3085a516f98b2aed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  "requestDetails": {
      "modelInfo": {
		"modelType": "service",
         "modelInvariantId": "ff3514e3-5a33-55df-13ab-12abad84e7fe",
         "modelVersionId": "fe6985cd-ea33-3346-ac12-ab121484a3ff",
         "modelName": "Test",
         "modelVersion": "2.0"
      },
      "cloudConfiguration": {  
          "lcpCloudRegionId": "mdt1",
          "tenantId": "88a6ca3ee0394ade9403f075db23167e"
      },
      "subscriberInfo": {
          "globalSubscriberId": "{some subscriber id}",
          "subscriberName": "{some subscriber name}"
      },
      "requestInfo": {
      	 "productFamilyId": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
          "source": "VID",
          "suppressRollback": true,
          "requestorId": "xxxxxx"
      },
      "requestParameters": {
          "subscriptionServiceType": "MOG",
          "aLaCarte": false,
          "alaCarte": false,
          "userParams": [
            {
              "name": "someUserParam",
              "value": "someValue"
            } 
          ]
      }
  }
}
="nt"><artifactId>appc-config-data-services-installer</artifactId> <version>1.6.0-SNAPSHOT</version> <name>Config Component Data Services - Installer</name> <packaging>pom</packaging> <properties> <application.name>appc-config-data-services</application.name> <features.boot>appc-config-data-services</features.boot> <features.repositories>mvn:org.onap.appc/onap-appc-config-data-services/${project.version}/xml/features</features.repositories> <include.transitive.dependencies>false</include.transitive.dependencies> </properties> <dependencies> <dependency> <groupId>org.onap.appc</groupId> <artifactId>onap-appc-config-data-services</artifactId> <classifier>features</classifier> <version>${project.version}</version> <type>xml</type> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.onap.appc</groupId> <artifactId>appc-config-data-services-provider</artifactId> <version>1.6.0-SNAPSHOT</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>maven-repo-zip</id> <goals> <goal>single</goal> </goals> <phase>package</phase> <configuration> <appendAssemblyId>false</appendAssemblyId> <attach>false</attach> <finalName>stage/${application.name}-${project.version}</finalName> <descriptors> <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor> </descriptors> </configuration> </execution> <execution> <id>installer-zip</id> <goals> <goal>single</goal> </goals> <phase>package</phase> <configuration> <appendAssemblyId>false</appendAssemblyId> <attach>true</attach> <finalName>${application.name}-${project.version}</finalName> <descriptors> <descriptor>src/assembly/assemble_installer_zip.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-dependencies</id> <goals> <goal>copy-dependencies</goal> </goals> <phase>prepare-package</phase> <configuration> <transitive>false</transitive> <outputDirectory>${project.build.directory}/assembly/system</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> <overWriteIfNewer>true</overWriteIfNewer> <useRepositoryLayout>true</useRepositoryLayout> <addParentPoms>false</addParentPoms> <copyPom>false</copyPom> <excludeGroupIds>org.opendaylight</excludeGroupIds> <scope>provided</scope> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-version</id> <goals> <goal>copy-resources</goal> </goals> <!-- here the phase you need --> <phase>validate</phase> <configuration> <outputDirectory>${basedir}/target/stage</outputDirectory> <resources> <resource> <directory>src/main/resources/scripts</directory> <includes> <include>install-feature.sh</include> </includes> <filtering>true</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>