diff --git a/sample/sagemaker/2017-07-24/service-2.json b/sample/sagemaker/2017-07-24/service-2.json index 89cc7ffa..ea2098e7 100644 --- a/sample/sagemaker/2017-07-24/service-2.json +++ b/sample/sagemaker/2017-07-24/service-2.json @@ -5130,6 +5130,7 @@ "ml.trn1.32xlarge", "ml.trn1n.32xlarge", "ml.p5.48xlarge", + "ml.p5en.48xlarge", "ml.m6i.large", "ml.m6i.xlarge", "ml.m6i.2xlarge", @@ -11613,10 +11614,7 @@ }, "CreateProjectInput":{ "type":"structure", - "required":[ - "ProjectName", - "ServiceCatalogProvisioningDetails" - ], + "required":["ProjectName"], "members":{ "ProjectName":{ "shape":"ProjectEntityName", @@ -13044,8 +13042,7 @@ }, "DeleteFlowDefinitionResponse":{ "type":"structure", - "members":{ - } + "members":{} }, "DeleteHubContentReferenceRequest":{ "type":"structure", @@ -13118,8 +13115,7 @@ }, "DeleteHumanTaskUiResponse":{ "type":"structure", - "members":{ - } + "members":{} }, "DeleteHyperParameterTuningJobRequest":{ "type":"structure", @@ -13143,8 +13139,7 @@ }, "DeleteImageResponse":{ "type":"structure", - "members":{ - } + "members":{} }, "DeleteImageVersionRequest":{ "type":"structure", @@ -13166,8 +13161,7 @@ }, "DeleteImageVersionResponse":{ "type":"structure", - "members":{ - } + "members":{} }, "DeleteInferenceComponentInput":{ "type":"structure", @@ -13445,8 +13439,7 @@ }, "DeleteTagsOutput":{ "type":"structure", - "members":{ - } + "members":{} }, "DeleteTrialComponentRequest":{ "type":"structure", @@ -13515,8 +13508,7 @@ }, "DeleteWorkforceResponse":{ "type":"structure", - "members":{ - } + "members":{} }, "DeleteWorkteamRequest":{ "type":"structure", @@ -17610,7 +17602,6 @@ "ProjectArn", "ProjectName", "ProjectId", - "ServiceCatalogProvisioningDetails", "ProjectStatus", "CreationTime" ], @@ -18744,13 +18735,11 @@ "DisableProfiler":{"type":"boolean"}, "DisableSagemakerServicecatalogPortfolioInput":{ "type":"structure", - "members":{ - } + "members":{} }, "DisableSagemakerServicecatalogPortfolioOutput":{ "type":"structure", - "members":{ - } + "members":{} }, "DisassociateAdditionalCodeRepositories":{"type":"boolean"}, "DisassociateDefaultCodeRepository":{"type":"boolean"}, @@ -19531,13 +19520,11 @@ "EnableRemoteDebug":{"type":"boolean"}, "EnableSagemakerServicecatalogPortfolioInput":{ "type":"structure", - "members":{ - } + "members":{} }, "EnableSagemakerServicecatalogPortfolioOutput":{ "type":"structure", - "members":{ - } + "members":{} }, "EnableSessionTagChaining":{"type":"boolean"}, "EnabledOrDisabled":{ @@ -21021,8 +21008,7 @@ }, "GetSagemakerServicecatalogPortfolioStatusInput":{ "type":"structure", - "members":{ - } + "members":{} }, "GetSagemakerServicecatalogPortfolioStatusOutput":{ "type":"structure", @@ -31189,8 +31175,7 @@ }, "MonitoringParquetDatasetFormat":{ "type":"structure", - "members":{ - }, + "members":{}, "documentation":"

Represents the Parquet dataset format used when running a monitoring job.

" }, "MonitoringProblemType":{ @@ -41599,13 +41584,11 @@ }, "UpdateNotebookInstanceLifecycleConfigOutput":{ "type":"structure", - "members":{ - } + "members":{} }, "UpdateNotebookInstanceOutput":{ "type":"structure", - "members":{ - } + "members":{} }, "UpdatePartnerAppRequest":{ "type":"structure", diff --git a/src/sagemaker_core/main/resources.py b/src/sagemaker_core/main/resources.py index 76284112..c29f1199 100644 --- a/src/sagemaker_core/main/resources.py +++ b/src/sagemaker_core/main/resources.py @@ -26151,10 +26151,10 @@ class Project(Base): project_arn: The Amazon Resource Name (ARN) of the project. project_name: The name of the project. project_id: The ID of the project. - service_catalog_provisioning_details: Information used to provision a service catalog product. For information, see What is Amazon Web Services Service Catalog. project_status: The status of the project. creation_time: The time when the project was created. project_description: The description of the project. + service_catalog_provisioning_details: Information used to provision a service catalog product. For information, see What is Amazon Web Services Service Catalog. service_catalog_provisioned_product_details: Information about a provisioned service catalog product. created_by: last_modified_time: The timestamp when project was last modified. @@ -26199,8 +26199,10 @@ def get_name(self) -> str: def create( cls, project_name: str, - service_catalog_provisioning_details: shapes.ServiceCatalogProvisioningDetails, project_description: Optional[str] = Unassigned(), + service_catalog_provisioning_details: Optional[ + shapes.ServiceCatalogProvisioningDetails + ] = Unassigned(), tags: Optional[List[shapes.Tag]] = Unassigned(), session: Optional[Session] = None, region: Optional[str] = None, @@ -26210,8 +26212,8 @@ def create( Parameters: project_name: The name of the project. - service_catalog_provisioning_details: The product ID and provisioning artifact ID to provision a service catalog. The provisioning artifact ID will default to the latest provisioning artifact ID of the product, if you don't provide the provisioning artifact ID. For more information, see What is Amazon Web Services Service Catalog. project_description: A description for the project. + service_catalog_provisioning_details: The product ID and provisioning artifact ID to provision a service catalog. The provisioning artifact ID will default to the latest provisioning artifact ID of the product, if you don't provide the provisioning artifact ID. For more information, see What is Amazon Web Services Service Catalog. tags: An array of key-value pairs that you want to use to organize and track your Amazon Web Services resource costs. For more information, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference Guide. session: Boto3 session. region: Region name.