Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 16 additions & 33 deletions sample/sagemaker/2017-07-24/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -11613,10 +11614,7 @@
},
"CreateProjectInput":{
"type":"structure",
"required":[
"ProjectName",
"ServiceCatalogProvisioningDetails"
],
"required":["ProjectName"],
"members":{
"ProjectName":{
"shape":"ProjectEntityName",
Expand Down Expand Up @@ -13044,8 +13042,7 @@
},
"DeleteFlowDefinitionResponse":{
"type":"structure",
"members":{
}
"members":{}
},
"DeleteHubContentReferenceRequest":{
"type":"structure",
Expand Down Expand Up @@ -13118,8 +13115,7 @@
},
"DeleteHumanTaskUiResponse":{
"type":"structure",
"members":{
}
"members":{}
},
"DeleteHyperParameterTuningJobRequest":{
"type":"structure",
Expand All @@ -13143,8 +13139,7 @@
},
"DeleteImageResponse":{
"type":"structure",
"members":{
}
"members":{}
},
"DeleteImageVersionRequest":{
"type":"structure",
Expand All @@ -13166,8 +13161,7 @@
},
"DeleteImageVersionResponse":{
"type":"structure",
"members":{
}
"members":{}
},
"DeleteInferenceComponentInput":{
"type":"structure",
Expand Down Expand Up @@ -13445,8 +13439,7 @@
},
"DeleteTagsOutput":{
"type":"structure",
"members":{
}
"members":{}
},
"DeleteTrialComponentRequest":{
"type":"structure",
Expand Down Expand Up @@ -13515,8 +13508,7 @@
},
"DeleteWorkforceResponse":{
"type":"structure",
"members":{
}
"members":{}
},
"DeleteWorkteamRequest":{
"type":"structure",
Expand Down Expand Up @@ -17610,7 +17602,6 @@
"ProjectArn",
"ProjectName",
"ProjectId",
"ServiceCatalogProvisioningDetails",
"ProjectStatus",
"CreationTime"
],
Expand Down Expand Up @@ -18744,13 +18735,11 @@
"DisableProfiler":{"type":"boolean"},
"DisableSagemakerServicecatalogPortfolioInput":{
"type":"structure",
"members":{
}
"members":{}
},
"DisableSagemakerServicecatalogPortfolioOutput":{
"type":"structure",
"members":{
}
"members":{}
},
"DisassociateAdditionalCodeRepositories":{"type":"boolean"},
"DisassociateDefaultCodeRepository":{"type":"boolean"},
Expand Down Expand Up @@ -19531,13 +19520,11 @@
"EnableRemoteDebug":{"type":"boolean"},
"EnableSagemakerServicecatalogPortfolioInput":{
"type":"structure",
"members":{
}
"members":{}
},
"EnableSagemakerServicecatalogPortfolioOutput":{
"type":"structure",
"members":{
}
"members":{}
},
"EnableSessionTagChaining":{"type":"boolean"},
"EnabledOrDisabled":{
Expand Down Expand Up @@ -21021,8 +21008,7 @@
},
"GetSagemakerServicecatalogPortfolioStatusInput":{
"type":"structure",
"members":{
}
"members":{}
},
"GetSagemakerServicecatalogPortfolioStatusOutput":{
"type":"structure",
Expand Down Expand Up @@ -31189,8 +31175,7 @@
},
"MonitoringParquetDatasetFormat":{
"type":"structure",
"members":{
},
"members":{},
"documentation":"<p>Represents the Parquet dataset format used when running a monitoring job.</p>"
},
"MonitoringProblemType":{
Expand Down Expand Up @@ -41599,13 +41584,11 @@
},
"UpdateNotebookInstanceLifecycleConfigOutput":{
"type":"structure",
"members":{
}
"members":{}
},
"UpdateNotebookInstanceOutput":{
"type":"structure",
"members":{
}
"members":{}
},
"UpdatePartnerAppRequest":{
"type":"structure",
Expand Down
8 changes: 5 additions & 3 deletions src/sagemaker_core/main/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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,
Expand All @@ -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.
Expand Down
Loading