aws-sdk 2.1414.0 → 2.1415.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -156,6 +156,14 @@ declare class Proton extends Service {
156
156
  * Delete an Proton component resource. For more information about components, see Proton components in the Proton User Guide.
157
157
  */
158
158
  deleteComponent(callback?: (err: AWSError, data: Proton.Types.DeleteComponentOutput) => void): Request<Proton.Types.DeleteComponentOutput, AWSError>;
159
+ /**
160
+ * Delete the deployment.
161
+ */
162
+ deleteDeployment(params: Proton.Types.DeleteDeploymentInput, callback?: (err: AWSError, data: Proton.Types.DeleteDeploymentOutput) => void): Request<Proton.Types.DeleteDeploymentOutput, AWSError>;
163
+ /**
164
+ * Delete the deployment.
165
+ */
166
+ deleteDeployment(callback?: (err: AWSError, data: Proton.Types.DeleteDeploymentOutput) => void): Request<Proton.Types.DeleteDeploymentOutput, AWSError>;
159
167
  /**
160
168
  * Delete an environment.
161
169
  */
@@ -252,6 +260,14 @@ declare class Proton extends Service {
252
260
  * Get detailed data for a component. For more information about components, see Proton components in the Proton User Guide.
253
261
  */
254
262
  getComponent(callback?: (err: AWSError, data: Proton.Types.GetComponentOutput) => void): Request<Proton.Types.GetComponentOutput, AWSError>;
263
+ /**
264
+ * Get detailed data for a deployment.
265
+ */
266
+ getDeployment(params: Proton.Types.GetDeploymentInput, callback?: (err: AWSError, data: Proton.Types.GetDeploymentOutput) => void): Request<Proton.Types.GetDeploymentOutput, AWSError>;
267
+ /**
268
+ * Get detailed data for a deployment.
269
+ */
270
+ getDeployment(callback?: (err: AWSError, data: Proton.Types.GetDeploymentOutput) => void): Request<Proton.Types.GetDeploymentOutput, AWSError>;
255
271
  /**
256
272
  * Get detailed data for an environment.
257
273
  */
@@ -404,6 +420,14 @@ declare class Proton extends Service {
404
420
  * List components with summary data. You can filter the result list by environment, service, or a single service instance. For more information about components, see Proton components in the Proton User Guide.
405
421
  */
406
422
  listComponents(callback?: (err: AWSError, data: Proton.Types.ListComponentsOutput) => void): Request<Proton.Types.ListComponentsOutput, AWSError>;
423
+ /**
424
+ * List deployments. You can filter the result list by environment, service, or a single service instance.
425
+ */
426
+ listDeployments(params: Proton.Types.ListDeploymentsInput, callback?: (err: AWSError, data: Proton.Types.ListDeploymentsOutput) => void): Request<Proton.Types.ListDeploymentsOutput, AWSError>;
427
+ /**
428
+ * List deployments. You can filter the result list by environment, service, or a single service instance.
429
+ */
430
+ listDeployments(callback?: (err: AWSError, data: Proton.Types.ListDeploymentsOutput) => void): Request<Proton.Types.ListDeploymentsOutput, AWSError>;
407
431
  /**
408
432
  * View a list of environment account connections. For more information, see Environment account connections in the Proton User guide.
409
433
  */
@@ -897,6 +921,10 @@ declare namespace Proton {
897
921
  * The name of the Proton environment that this component is associated with.
898
922
  */
899
923
  environmentName: ResourceName;
924
+ /**
925
+ * The ID of the last attempted deployment of this component.
926
+ */
927
+ lastAttemptedDeploymentId?: DeploymentId;
900
928
  /**
901
929
  * The last token the client requested.
902
930
  */
@@ -913,6 +941,10 @@ declare namespace Proton {
913
941
  * The time when the component was last modified.
914
942
  */
915
943
  lastModifiedAt: Timestamp;
944
+ /**
945
+ * The ID of the last successful deployment of this component.
946
+ */
947
+ lastSucceededDeploymentId?: DeploymentId;
916
948
  /**
917
949
  * The name of the component.
918
950
  */
@@ -931,7 +963,26 @@ declare namespace Proton {
931
963
  serviceSpec?: SpecContents;
932
964
  }
933
965
  export type ComponentArn = string;
966
+ export type ComponentDeploymentIdList = DeploymentId[];
934
967
  export type ComponentDeploymentUpdateType = "NONE"|"CURRENT_VERSION"|string;
968
+ export interface ComponentState {
969
+ /**
970
+ * The name of the service instance that this component is attached to. Provided when a component is attached to a service instance.
971
+ */
972
+ serviceInstanceName?: ResourceNameOrEmpty;
973
+ /**
974
+ * The name of the service that serviceInstanceName is associated with. Provided when a component is attached to a service instance.
975
+ */
976
+ serviceName?: ResourceNameOrEmpty;
977
+ /**
978
+ * The service spec that the component uses to access service inputs. Provided when a component is attached to a service instance.
979
+ */
980
+ serviceSpec?: SpecContents;
981
+ /**
982
+ * The template file used.
983
+ */
984
+ templateFile?: TemplateFileContents;
985
+ }
935
986
  export interface ComponentSummary {
936
987
  /**
937
988
  * The Amazon Resource Name (ARN) of the component.
@@ -953,6 +1004,10 @@ declare namespace Proton {
953
1004
  * The name of the Proton environment that this component is associated with.
954
1005
  */
955
1006
  environmentName: ResourceName;
1007
+ /**
1008
+ * The ID of the last attempted deployment of this component.
1009
+ */
1010
+ lastAttemptedDeploymentId?: DeploymentId;
956
1011
  /**
957
1012
  * The time when a deployment of the component was last attempted.
958
1013
  */
@@ -965,6 +1020,10 @@ declare namespace Proton {
965
1020
  * The time when the component was last modified.
966
1021
  */
967
1022
  lastModifiedAt: Timestamp;
1023
+ /**
1024
+ * The ID of the last successful deployment of this component.
1025
+ */
1026
+ lastSucceededDeploymentId?: DeploymentId;
968
1027
  /**
969
1028
  * The name of the component.
970
1029
  */
@@ -1469,6 +1528,18 @@ declare namespace Proton {
1469
1528
  */
1470
1529
  component?: Component;
1471
1530
  }
1531
+ export interface DeleteDeploymentInput {
1532
+ /**
1533
+ * The ID of the deployment to delete.
1534
+ */
1535
+ id: DeploymentId;
1536
+ }
1537
+ export interface DeleteDeploymentOutput {
1538
+ /**
1539
+ * The detailed data of the deployment being deleted.
1540
+ */
1541
+ deployment?: Deployment;
1542
+ }
1472
1543
  export interface DeleteEnvironmentAccountConnectionInput {
1473
1544
  /**
1474
1545
  * The ID of the environment account connection to delete.
@@ -1613,8 +1684,165 @@ declare namespace Proton {
1613
1684
  */
1614
1685
  templateSyncConfig?: TemplateSyncConfig;
1615
1686
  }
1687
+ export interface Deployment {
1688
+ /**
1689
+ * The Amazon Resource Name (ARN) of the deployment.
1690
+ */
1691
+ arn: DeploymentArn;
1692
+ /**
1693
+ * The date and time the deployment was completed.
1694
+ */
1695
+ completedAt?: Timestamp;
1696
+ /**
1697
+ * The name of the component associated with this deployment.
1698
+ */
1699
+ componentName?: ResourceName;
1700
+ /**
1701
+ * The date and time the deployment was created.
1702
+ */
1703
+ createdAt: Timestamp;
1704
+ /**
1705
+ * The status of the deployment.
1706
+ */
1707
+ deploymentStatus: DeploymentStatus;
1708
+ /**
1709
+ * The deployment status message.
1710
+ */
1711
+ deploymentStatusMessage?: StatusMessage;
1712
+ /**
1713
+ * The name of the environment associated with this deployment.
1714
+ */
1715
+ environmentName: ResourceName;
1716
+ /**
1717
+ * The ID of the deployment.
1718
+ */
1719
+ id: DeploymentId;
1720
+ /**
1721
+ * The initial state of the target resource at the time of the deployment.
1722
+ */
1723
+ initialState?: DeploymentState;
1724
+ /**
1725
+ * The ID of the last attempted deployment.
1726
+ */
1727
+ lastAttemptedDeploymentId?: DeploymentId;
1728
+ /**
1729
+ * The date and time the deployment was last modified.
1730
+ */
1731
+ lastModifiedAt: Timestamp;
1732
+ /**
1733
+ * The ID of the last successful deployment.
1734
+ */
1735
+ lastSucceededDeploymentId?: DeploymentId;
1736
+ /**
1737
+ * The name of the deployment's service instance.
1738
+ */
1739
+ serviceInstanceName?: ResourceName;
1740
+ /**
1741
+ * The name of the service in this deployment.
1742
+ */
1743
+ serviceName?: ResourceName;
1744
+ /**
1745
+ * The Amazon Resource Name (ARN) of the target of the deployment.
1746
+ */
1747
+ targetArn: Arn;
1748
+ /**
1749
+ * The date and time the depoyment target was created.
1750
+ */
1751
+ targetResourceCreatedAt: Timestamp;
1752
+ /**
1753
+ * The resource type of the deployment target. It can be an environment, service, service instance, or component.
1754
+ */
1755
+ targetResourceType: DeploymentTargetResourceType;
1756
+ /**
1757
+ * The target state of the target resource at the time of the deployment.
1758
+ */
1759
+ targetState?: DeploymentState;
1760
+ }
1761
+ export type DeploymentArn = string;
1616
1762
  export type DeploymentId = string;
1763
+ export interface DeploymentState {
1764
+ /**
1765
+ * The state of the component associated with the deployment.
1766
+ */
1767
+ component?: ComponentState;
1768
+ /**
1769
+ * The state of the environment associated with the deployment.
1770
+ */
1771
+ environment?: EnvironmentState;
1772
+ /**
1773
+ * The state of the service instance associated with the deployment.
1774
+ */
1775
+ serviceInstance?: ServiceInstanceState;
1776
+ /**
1777
+ * The state of the service pipeline associated with the deployment.
1778
+ */
1779
+ servicePipeline?: ServicePipelineState;
1780
+ }
1617
1781
  export type DeploymentStatus = "IN_PROGRESS"|"FAILED"|"SUCCEEDED"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|"DELETE_COMPLETE"|"CANCELLING"|"CANCELLED"|string;
1782
+ export interface DeploymentSummary {
1783
+ /**
1784
+ * The Amazon Resource Name (ARN) of the deployment.
1785
+ */
1786
+ arn: DeploymentArn;
1787
+ /**
1788
+ * The date and time the deployment was completed.
1789
+ */
1790
+ completedAt?: Timestamp;
1791
+ /**
1792
+ * The name of the component associated with the deployment.
1793
+ */
1794
+ componentName?: ResourceName;
1795
+ /**
1796
+ * The date and time the deployment was created.
1797
+ */
1798
+ createdAt: Timestamp;
1799
+ /**
1800
+ * The current status of the deployment.
1801
+ */
1802
+ deploymentStatus: DeploymentStatus;
1803
+ /**
1804
+ * The name of the environment associated with the deployment.
1805
+ */
1806
+ environmentName: ResourceName;
1807
+ /**
1808
+ * The ID of the deployment.
1809
+ */
1810
+ id: DeploymentId;
1811
+ /**
1812
+ * The ID of the last attempted deployment.
1813
+ */
1814
+ lastAttemptedDeploymentId?: DeploymentId;
1815
+ /**
1816
+ * The date and time the deployment was last modified.
1817
+ */
1818
+ lastModifiedAt: Timestamp;
1819
+ /**
1820
+ * The ID of the last successful deployment.
1821
+ */
1822
+ lastSucceededDeploymentId?: DeploymentId;
1823
+ /**
1824
+ * The name of the service instance associated with the deployment.
1825
+ */
1826
+ serviceInstanceName?: ResourceName;
1827
+ /**
1828
+ * The name of the service associated with the deployment.
1829
+ */
1830
+ serviceName?: ResourceName;
1831
+ /**
1832
+ * The Amazon Resource Name (ARN) of the target of the deployment.
1833
+ */
1834
+ targetArn: Arn;
1835
+ /**
1836
+ * The date and time the target resource was created.
1837
+ */
1838
+ targetResourceCreatedAt: Timestamp;
1839
+ /**
1840
+ * The resource type of the deployment target. It can be an environment, service, service instance, or component.
1841
+ */
1842
+ targetResourceType: DeploymentTargetResourceType;
1843
+ }
1844
+ export type DeploymentSummaryList = DeploymentSummary[];
1845
+ export type DeploymentTargetResourceType = "ENVIRONMENT"|"SERVICE_PIPELINE"|"SERVICE_INSTANCE"|"COMPONENT"|string;
1618
1846
  export type DeploymentUpdateType = "NONE"|"CURRENT_VERSION"|"MINOR_VERSION"|"MAJOR_VERSION"|string;
1619
1847
  export type Description = string;
1620
1848
  export type DisplayName = string;
@@ -1656,6 +1884,10 @@ declare namespace Proton {
1656
1884
  * The ID of the environment account that the environment infrastructure resources are provisioned in.
1657
1885
  */
1658
1886
  environmentAccountId?: AwsAccountId;
1887
+ /**
1888
+ * The ID of the last attempted deployment of this environment.
1889
+ */
1890
+ lastAttemptedDeploymentId?: DeploymentId;
1659
1891
  /**
1660
1892
  * The time when a deployment of the environment was last attempted.
1661
1893
  */
@@ -1664,6 +1896,10 @@ declare namespace Proton {
1664
1896
  * The time when the environment was last deployed successfully.
1665
1897
  */
1666
1898
  lastDeploymentSucceededAt: Timestamp;
1899
+ /**
1900
+ * The ID of the last successful deployment of this environment.
1901
+ */
1902
+ lastSucceededDeploymentId?: DeploymentId;
1667
1903
  /**
1668
1904
  * The name of the environment.
1669
1905
  */
@@ -1792,6 +2028,24 @@ declare namespace Proton {
1792
2028
  }
1793
2029
  export type EnvironmentAccountConnectionSummaryList = EnvironmentAccountConnectionSummary[];
1794
2030
  export type EnvironmentArn = string;
2031
+ export interface EnvironmentState {
2032
+ /**
2033
+ * The environment spec that was used to create the environment.
2034
+ */
2035
+ spec?: SpecContents;
2036
+ /**
2037
+ * The major version of the environment template that was used to create the environment.
2038
+ */
2039
+ templateMajorVersion: TemplateVersionPart;
2040
+ /**
2041
+ * The minor version of the environment template that was used to create the environment.
2042
+ */
2043
+ templateMinorVersion: TemplateVersionPart;
2044
+ /**
2045
+ * The name of the environment template that was used to create the environment.
2046
+ */
2047
+ templateName: ResourceName;
2048
+ }
1795
2049
  export interface EnvironmentSummary {
1796
2050
  /**
1797
2051
  * The Amazon Resource Name (ARN) of the environment.
@@ -1825,6 +2079,10 @@ declare namespace Proton {
1825
2079
  * The ID of the environment account that the environment infrastructure resources are provisioned in.
1826
2080
  */
1827
2081
  environmentAccountId?: AwsAccountId;
2082
+ /**
2083
+ * The ID of the last attempted deployment of this environment.
2084
+ */
2085
+ lastAttemptedDeploymentId?: DeploymentId;
1828
2086
  /**
1829
2087
  * The time when a deployment of the environment was last attempted.
1830
2088
  */
@@ -1833,6 +2091,10 @@ declare namespace Proton {
1833
2091
  * The time when the environment was last deployed successfully.
1834
2092
  */
1835
2093
  lastDeploymentSucceededAt: Timestamp;
2094
+ /**
2095
+ * The ID of the last successful deployment of this environment.
2096
+ */
2097
+ lastSucceededDeploymentId?: DeploymentId;
1836
2098
  /**
1837
2099
  * The name of the environment.
1838
2100
  */
@@ -2055,6 +2317,34 @@ declare namespace Proton {
2055
2317
  */
2056
2318
  component?: Component;
2057
2319
  }
2320
+ export interface GetDeploymentInput {
2321
+ /**
2322
+ * The name of a component that you want to get the detailed data for.
2323
+ */
2324
+ componentName?: ResourceName;
2325
+ /**
2326
+ * The name of a environment that you want to get the detailed data for.
2327
+ */
2328
+ environmentName?: ResourceName;
2329
+ /**
2330
+ * The ID of the deployment that you want to get the detailed data for.
2331
+ */
2332
+ id: DeploymentId;
2333
+ /**
2334
+ * The name of the service instance associated with the given deployment ID. serviceName must be specified to identify the service instance.
2335
+ */
2336
+ serviceInstanceName?: ResourceName;
2337
+ /**
2338
+ * The name of the service associated with the given deployment ID.
2339
+ */
2340
+ serviceName?: ResourceName;
2341
+ }
2342
+ export interface GetDeploymentOutput {
2343
+ /**
2344
+ * The detailed data of the requested deployment.
2345
+ */
2346
+ deployment?: Deployment;
2347
+ }
2058
2348
  export interface GetEnvironmentAccountConnectionInput {
2059
2349
  /**
2060
2350
  * The ID of the environment account connection that you want to get the detailed data for.
@@ -2323,6 +2613,10 @@ declare namespace Proton {
2323
2613
  * The name of the component whose outputs you want.
2324
2614
  */
2325
2615
  componentName: ResourceName;
2616
+ /**
2617
+ * The ID of the deployment whose outputs you want.
2618
+ */
2619
+ deploymentId?: DeploymentId;
2326
2620
  /**
2327
2621
  * A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.
2328
2622
  */
@@ -2390,6 +2684,42 @@ declare namespace Proton {
2390
2684
  */
2391
2685
  nextToken?: NextToken;
2392
2686
  }
2687
+ export interface ListDeploymentsInput {
2688
+ /**
2689
+ * The name of a component for result list filtering. Proton returns deployments associated with that component.
2690
+ */
2691
+ componentName?: ResourceName;
2692
+ /**
2693
+ * The name of an environment for result list filtering. Proton returns deployments associated with the environment.
2694
+ */
2695
+ environmentName?: ResourceName;
2696
+ /**
2697
+ * The maximum number of deployments to list.
2698
+ */
2699
+ maxResults?: MaxPageResults;
2700
+ /**
2701
+ * A token that indicates the location of the next deployment in the array of deployment, after the list of deployment that was previously requested.
2702
+ */
2703
+ nextToken?: NextToken;
2704
+ /**
2705
+ * The name of a service instance for result list filtering. Proton returns the deployments associated with the service instance.
2706
+ */
2707
+ serviceInstanceName?: ResourceName;
2708
+ /**
2709
+ * The name of a service for result list filtering. Proton returns deployments associated with service instances of the service.
2710
+ */
2711
+ serviceName?: ResourceName;
2712
+ }
2713
+ export interface ListDeploymentsOutput {
2714
+ /**
2715
+ * An array of deployment with summary data.
2716
+ */
2717
+ deployments: DeploymentSummaryList;
2718
+ /**
2719
+ * A token that indicates the location of the next deployment in the array of deployment, after the current requested list of deployment.
2720
+ */
2721
+ nextToken?: NextToken;
2722
+ }
2393
2723
  export interface ListEnvironmentAccountConnectionsInput {
2394
2724
  /**
2395
2725
  * The environment name that's associated with each listed environment account connection.
@@ -2423,6 +2753,10 @@ declare namespace Proton {
2423
2753
  nextToken?: NextToken;
2424
2754
  }
2425
2755
  export interface ListEnvironmentOutputsInput {
2756
+ /**
2757
+ * The ID of the deployment whose outputs you want.
2758
+ */
2759
+ deploymentId?: DeploymentId;
2426
2760
  /**
2427
2761
  * The environment name.
2428
2762
  */
@@ -2583,6 +2917,10 @@ declare namespace Proton {
2583
2917
  syncDefinitions: RepositorySyncDefinitionList;
2584
2918
  }
2585
2919
  export interface ListServiceInstanceOutputsInput {
2920
+ /**
2921
+ * The ID of the deployment whose outputs you want.
2922
+ */
2923
+ deploymentId?: DeploymentId;
2586
2924
  /**
2587
2925
  * A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.
2588
2926
  */
@@ -2681,6 +3019,10 @@ declare namespace Proton {
2681
3019
  }
2682
3020
  export type ListServiceInstancesSortBy = "name"|"deploymentStatus"|"templateName"|"serviceName"|"environmentName"|"lastDeploymentAttemptedAt"|"createdAt"|string;
2683
3021
  export interface ListServicePipelineOutputsInput {
3022
+ /**
3023
+ * The ID of the deployment you want the outputs for.
3024
+ */
3025
+ deploymentId?: DeploymentId;
2684
3026
  /**
2685
3027
  * A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.
2686
3028
  */
@@ -3199,6 +3541,10 @@ declare namespace Proton {
3199
3541
  * The name of the environment that the service instance was deployed into.
3200
3542
  */
3201
3543
  environmentName: ResourceName;
3544
+ /**
3545
+ * The ID of the last attempted deployment of this service instance.
3546
+ */
3547
+ lastAttemptedDeploymentId?: DeploymentId;
3202
3548
  /**
3203
3549
  * The last client request token received.
3204
3550
  */
@@ -3211,6 +3557,10 @@ declare namespace Proton {
3211
3557
  * The time when the service instance was last deployed successfully.
3212
3558
  */
3213
3559
  lastDeploymentSucceededAt: Timestamp;
3560
+ /**
3561
+ * The ID of the last successful deployment of this service instance.
3562
+ */
3563
+ lastSucceededDeploymentId?: DeploymentId;
3214
3564
  /**
3215
3565
  * The name of the service instance.
3216
3566
  */
@@ -3237,6 +3587,36 @@ declare namespace Proton {
3237
3587
  templateName: ResourceName;
3238
3588
  }
3239
3589
  export type ServiceInstanceArn = string;
3590
+ export interface ServiceInstanceState {
3591
+ /**
3592
+ * The IDs for the last successful components deployed for this service instance.
3593
+ */
3594
+ lastSuccessfulComponentDeploymentIds?: ComponentDeploymentIdList;
3595
+ /**
3596
+ * The ID for the last successful environment deployed for this service instance.
3597
+ */
3598
+ lastSuccessfulEnvironmentDeploymentId?: DeploymentId;
3599
+ /**
3600
+ * The ID for the last successful service pipeline deployed for this service instance.
3601
+ */
3602
+ lastSuccessfulServicePipelineDeploymentId?: DeploymentId;
3603
+ /**
3604
+ * The service spec that was used to create the service instance.
3605
+ */
3606
+ spec: SpecContents;
3607
+ /**
3608
+ * The major version of the service template that was used to create the service pipeline.
3609
+ */
3610
+ templateMajorVersion: TemplateVersionPart;
3611
+ /**
3612
+ * The minor version of the service template that was used to create the service pipeline.
3613
+ */
3614
+ templateMinorVersion: TemplateVersionPart;
3615
+ /**
3616
+ * The name of the service template that was used to create the service instance.
3617
+ */
3618
+ templateName: ResourceName;
3619
+ }
3240
3620
  export interface ServiceInstanceSummary {
3241
3621
  /**
3242
3622
  * The Amazon Resource Name (ARN) of the service instance.
@@ -3258,6 +3638,10 @@ declare namespace Proton {
3258
3638
  * The name of the environment that the service instance was deployed into.
3259
3639
  */
3260
3640
  environmentName: ResourceName;
3641
+ /**
3642
+ * The ID of the last attempted deployment of this service instance.
3643
+ */
3644
+ lastAttemptedDeploymentId?: DeploymentId;
3261
3645
  /**
3262
3646
  * The time when a deployment of the service was last attempted.
3263
3647
  */
@@ -3266,6 +3650,10 @@ declare namespace Proton {
3266
3650
  * The time when the service was last deployed successfully.
3267
3651
  */
3268
3652
  lastDeploymentSucceededAt: Timestamp;
3653
+ /**
3654
+ * The ID of the last successful deployment of this service instance.
3655
+ */
3656
+ lastSucceededDeploymentId?: DeploymentId;
3269
3657
  /**
3270
3658
  * The name of the service instance.
3271
3659
  */
@@ -3305,6 +3693,10 @@ declare namespace Proton {
3305
3693
  * A service pipeline deployment status message.
3306
3694
  */
3307
3695
  deploymentStatusMessage?: StatusMessage;
3696
+ /**
3697
+ * The ID of the last attempted deployment of this service pipeline.
3698
+ */
3699
+ lastAttemptedDeploymentId?: DeploymentId;
3308
3700
  /**
3309
3701
  * The time when a deployment of the service pipeline was last attempted.
3310
3702
  */
@@ -3313,6 +3705,28 @@ declare namespace Proton {
3313
3705
  * The time when the service pipeline was last deployed successfully.
3314
3706
  */
3315
3707
  lastDeploymentSucceededAt: Timestamp;
3708
+ /**
3709
+ * The ID of the last successful deployment of this service pipeline.
3710
+ */
3711
+ lastSucceededDeploymentId?: DeploymentId;
3712
+ /**
3713
+ * The service spec that was used to create the service pipeline.
3714
+ */
3715
+ spec?: SpecContents;
3716
+ /**
3717
+ * The major version of the service template that was used to create the service pipeline.
3718
+ */
3719
+ templateMajorVersion: TemplateVersionPart;
3720
+ /**
3721
+ * The minor version of the service template that was used to create the service pipeline.
3722
+ */
3723
+ templateMinorVersion: TemplateVersionPart;
3724
+ /**
3725
+ * The name of the service template that was used to create the service pipeline.
3726
+ */
3727
+ templateName: ResourceName;
3728
+ }
3729
+ export interface ServicePipelineState {
3316
3730
  /**
3317
3731
  * The service spec that was used to create the service pipeline.
3318
3732
  */