hexsha stringlengths 40 40 | repo stringlengths 7 114 | path stringlengths 4 124 | license listlengths 1 9 | language stringclasses 1
value | identifier stringlengths 1 71 | return_type stringlengths 1 749 ⌀ | original_string stringlengths 76 22.7k | original_docstring stringlengths 16 7.61k | docstring stringlengths 16 2.47k | docstring_tokens listlengths 6 477 | code stringlengths 14 10.2k | code_tokens listlengths 6 996 | short_docstring stringlengths 2 644 | short_docstring_tokens listlengths 1 116 | comment listlengths 1 89 | parameters listlengths 0 64 | docstring_params dict |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
604b6c22a11d8bc462e7a3caf4ec652d57cc442a | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/web/v20160901/app_service_plan.py | [
"Apache-2.0"
] | Python | hosting_environment_profile | pulumi.Output[Optional['outputs.HostingEnvironmentProfileResponse']] | def hosting_environment_profile(self) -> pulumi.Output[Optional['outputs.HostingEnvironmentProfileResponse']]:
"""
Specification for the App Service Environment to use for the App Service plan.
"""
return pulumi.get(self, "hosting_environment_profile") |
Specification for the App Service Environment to use for the App Service plan.
| Specification for the App Service Environment to use for the App Service plan. | [
"Specification",
"for",
"the",
"App",
"Service",
"Environment",
"to",
"use",
"for",
"the",
"App",
"Service",
"plan",
"."
] | def hosting_environment_profile(self) -> pulumi.Output[Optional['outputs.HostingEnvironmentProfileResponse']]:
return pulumi.get(self, "hosting_environment_profile") | [
"def",
"hosting_environment_profile",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"'outputs.HostingEnvironmentProfileResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"hosting_environment_profile\"",
")"
] | Specification for the App Service Environment to use for the App Service plan. | [
"Specification",
"for",
"the",
"App",
"Service",
"Environment",
"to",
"use",
"for",
"the",
"App",
"Service",
"plan",
"."
] | [
"\"\"\"\n Specification for the App Service Environment to use for the App Service plan.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
604b6c22a11d8bc462e7a3caf4ec652d57cc442a | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/web/v20160901/app_service_plan.py | [
"Apache-2.0"
] | Python | is_spot | pulumi.Output[Optional[bool]] | def is_spot(self) -> pulumi.Output[Optional[bool]]:
"""
If <code>true</code>, this App Service Plan owns spot instances.
"""
return pulumi.get(self, "is_spot") |
If <code>true</code>, this App Service Plan owns spot instances.
| If true, this App Service Plan owns spot instances. | [
"If",
"true",
"this",
"App",
"Service",
"Plan",
"owns",
"spot",
"instances",
"."
] | def is_spot(self) -> pulumi.Output[Optional[bool]]:
return pulumi.get(self, "is_spot") | [
"def",
"is_spot",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"bool",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"is_spot\"",
")"
] | If <code>true</code>, this App Service Plan owns spot instances. | [
"If",
"<code",
">",
"true<",
"/",
"code",
">",
"this",
"App",
"Service",
"Plan",
"owns",
"spot",
"instances",
"."
] | [
"\"\"\"\n If <code>true</code>, this App Service Plan owns spot instances.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
604b6c22a11d8bc462e7a3caf4ec652d57cc442a | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/web/v20160901/app_service_plan.py | [
"Apache-2.0"
] | Python | maximum_number_of_workers | pulumi.Output[int] | def maximum_number_of_workers(self) -> pulumi.Output[int]:
"""
Maximum number of instances that can be assigned to this App Service plan.
"""
return pulumi.get(self, "maximum_number_of_workers") |
Maximum number of instances that can be assigned to this App Service plan.
| Maximum number of instances that can be assigned to this App Service plan. | [
"Maximum",
"number",
"of",
"instances",
"that",
"can",
"be",
"assigned",
"to",
"this",
"App",
"Service",
"plan",
"."
] | def maximum_number_of_workers(self) -> pulumi.Output[int]:
return pulumi.get(self, "maximum_number_of_workers") | [
"def",
"maximum_number_of_workers",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"int",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"maximum_number_of_workers\"",
")"
] | Maximum number of instances that can be assigned to this App Service plan. | [
"Maximum",
"number",
"of",
"instances",
"that",
"can",
"be",
"assigned",
"to",
"this",
"App",
"Service",
"plan",
"."
] | [
"\"\"\"\n Maximum number of instances that can be assigned to this App Service plan.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
604b6c22a11d8bc462e7a3caf4ec652d57cc442a | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/web/v20160901/app_service_plan.py | [
"Apache-2.0"
] | Python | number_of_sites | pulumi.Output[int] | def number_of_sites(self) -> pulumi.Output[int]:
"""
Number of apps assigned to this App Service plan.
"""
return pulumi.get(self, "number_of_sites") |
Number of apps assigned to this App Service plan.
| Number of apps assigned to this App Service plan. | [
"Number",
"of",
"apps",
"assigned",
"to",
"this",
"App",
"Service",
"plan",
"."
] | def number_of_sites(self) -> pulumi.Output[int]:
return pulumi.get(self, "number_of_sites") | [
"def",
"number_of_sites",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"int",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"number_of_sites\"",
")"
] | Number of apps assigned to this App Service plan. | [
"Number",
"of",
"apps",
"assigned",
"to",
"this",
"App",
"Service",
"plan",
"."
] | [
"\"\"\"\n Number of apps assigned to this App Service plan.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
604b6c22a11d8bc462e7a3caf4ec652d57cc442a | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/web/v20160901/app_service_plan.py | [
"Apache-2.0"
] | Python | per_site_scaling | pulumi.Output[Optional[bool]] | def per_site_scaling(self) -> pulumi.Output[Optional[bool]]:
"""
If <code>true</code>, apps assigned to this App Service plan can be scaled independently.
If <code>false</code>, apps assigned to this App Service plan will scale to all instances of the plan.
"""
return pulumi.get(... |
If <code>true</code>, apps assigned to this App Service plan can be scaled independently.
If <code>false</code>, apps assigned to this App Service plan will scale to all instances of the plan.
| If true, apps assigned to this App Service plan can be scaled independently.
If false, apps assigned to this App Service plan will scale to all instances of the plan. | [
"If",
"true",
"apps",
"assigned",
"to",
"this",
"App",
"Service",
"plan",
"can",
"be",
"scaled",
"independently",
".",
"If",
"false",
"apps",
"assigned",
"to",
"this",
"App",
"Service",
"plan",
"will",
"scale",
"to",
"all",
"instances",
"of",
"the",
"plan"... | def per_site_scaling(self) -> pulumi.Output[Optional[bool]]:
return pulumi.get(self, "per_site_scaling") | [
"def",
"per_site_scaling",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"bool",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"per_site_scaling\"",
")"
] | If <code>true</code>, apps assigned to this App Service plan can be scaled independently. | [
"If",
"<code",
">",
"true<",
"/",
"code",
">",
"apps",
"assigned",
"to",
"this",
"App",
"Service",
"plan",
"can",
"be",
"scaled",
"independently",
"."
] | [
"\"\"\"\n If <code>true</code>, apps assigned to this App Service plan can be scaled independently.\n If <code>false</code>, apps assigned to this App Service plan will scale to all instances of the plan.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
604b6c22a11d8bc462e7a3caf4ec652d57cc442a | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/web/v20160901/app_service_plan.py | [
"Apache-2.0"
] | Python | resource_group | pulumi.Output[str] | def resource_group(self) -> pulumi.Output[str]:
"""
Resource group of the App Service plan.
"""
return pulumi.get(self, "resource_group") |
Resource group of the App Service plan.
| Resource group of the App Service plan. | [
"Resource",
"group",
"of",
"the",
"App",
"Service",
"plan",
"."
] | def resource_group(self) -> pulumi.Output[str]:
return pulumi.get(self, "resource_group") | [
"def",
"resource_group",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"resource_group\"",
")"
] | Resource group of the App Service plan. | [
"Resource",
"group",
"of",
"the",
"App",
"Service",
"plan",
"."
] | [
"\"\"\"\n Resource group of the App Service plan.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
604b6c22a11d8bc462e7a3caf4ec652d57cc442a | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/web/v20160901/app_service_plan.py | [
"Apache-2.0"
] | Python | sku | pulumi.Output[Optional['outputs.SkuDescriptionResponse']] | def sku(self) -> pulumi.Output[Optional['outputs.SkuDescriptionResponse']]:
"""
Description of a SKU for a scalable resource.
"""
return pulumi.get(self, "sku") |
Description of a SKU for a scalable resource.
| Description of a SKU for a scalable resource. | [
"Description",
"of",
"a",
"SKU",
"for",
"a",
"scalable",
"resource",
"."
] | def sku(self) -> pulumi.Output[Optional['outputs.SkuDescriptionResponse']]:
return pulumi.get(self, "sku") | [
"def",
"sku",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"'outputs.SkuDescriptionResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"sku\"",
")"
] | Description of a SKU for a scalable resource. | [
"Description",
"of",
"a",
"SKU",
"for",
"a",
"scalable",
"resource",
"."
] | [
"\"\"\"\n Description of a SKU for a scalable resource.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
604b6c22a11d8bc462e7a3caf4ec652d57cc442a | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/web/v20160901/app_service_plan.py | [
"Apache-2.0"
] | Python | spot_expiration_time | pulumi.Output[Optional[str]] | def spot_expiration_time(self) -> pulumi.Output[Optional[str]]:
"""
The time when the server farm expires. Valid only if it is a spot server farm.
"""
return pulumi.get(self, "spot_expiration_time") |
The time when the server farm expires. Valid only if it is a spot server farm.
| The time when the server farm expires. Valid only if it is a spot server farm. | [
"The",
"time",
"when",
"the",
"server",
"farm",
"expires",
".",
"Valid",
"only",
"if",
"it",
"is",
"a",
"spot",
"server",
"farm",
"."
] | def spot_expiration_time(self) -> pulumi.Output[Optional[str]]:
return pulumi.get(self, "spot_expiration_time") | [
"def",
"spot_expiration_time",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"spot_expiration_time\"",
")"
] | The time when the server farm expires. | [
"The",
"time",
"when",
"the",
"server",
"farm",
"expires",
"."
] | [
"\"\"\"\n The time when the server farm expires. Valid only if it is a spot server farm.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
604b6c22a11d8bc462e7a3caf4ec652d57cc442a | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/web/v20160901/app_service_plan.py | [
"Apache-2.0"
] | Python | worker_tier_name | pulumi.Output[Optional[str]] | def worker_tier_name(self) -> pulumi.Output[Optional[str]]:
"""
Target worker tier assigned to the App Service plan.
"""
return pulumi.get(self, "worker_tier_name") |
Target worker tier assigned to the App Service plan.
| Target worker tier assigned to the App Service plan. | [
"Target",
"worker",
"tier",
"assigned",
"to",
"the",
"App",
"Service",
"plan",
"."
] | def worker_tier_name(self) -> pulumi.Output[Optional[str]]:
return pulumi.get(self, "worker_tier_name") | [
"def",
"worker_tier_name",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"worker_tier_name\"",
")"
] | Target worker tier assigned to the App Service plan. | [
"Target",
"worker",
"tier",
"assigned",
"to",
"the",
"App",
"Service",
"plan",
"."
] | [
"\"\"\"\n Target worker tier assigned to the App Service plan.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | collation | Optional[str] | def collation(self) -> Optional[str]:
"""
The collation of the database. If createMode is not Default, this value is ignored.
"""
return pulumi.get(self, "collation") |
The collation of the database. If createMode is not Default, this value is ignored.
| The collation of the database. If createMode is not Default, this value is ignored. | [
"The",
"collation",
"of",
"the",
"database",
".",
"If",
"createMode",
"is",
"not",
"Default",
"this",
"value",
"is",
"ignored",
"."
] | def collation(self) -> Optional[str]:
return pulumi.get(self, "collation") | [
"def",
"collation",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"collation\"",
")"
] | The collation of the database. | [
"The",
"collation",
"of",
"the",
"database",
"."
] | [
"\"\"\"\n The collation of the database. If createMode is not Default, this value is ignored.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | containment_state | float | def containment_state(self) -> float:
"""
The containment state of the database.
"""
return pulumi.get(self, "containment_state") |
The containment state of the database.
| The containment state of the database. | [
"The",
"containment",
"state",
"of",
"the",
"database",
"."
] | def containment_state(self) -> float:
return pulumi.get(self, "containment_state") | [
"def",
"containment_state",
"(",
"self",
")",
"->",
"float",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"containment_state\"",
")"
] | The containment state of the database. | [
"The",
"containment",
"state",
"of",
"the",
"database",
"."
] | [
"\"\"\"\n The containment state of the database.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | create_mode | Optional[str] | def create_mode(self) -> Optional[str]:
"""
Specifies the mode of database creation.
Default: regular database creation.
Copy: creates a database as a copy of an existing database. sourceDatabaseId must be specified as the resource ID of the source database.
OnlineSecondary/No... |
Specifies the mode of database creation.
Default: regular database creation.
Copy: creates a database as a copy of an existing database. sourceDatabaseId must be specified as the resource ID of the source database.
OnlineSecondary/NonReadableSecondary: creates a database as a (readab... | Specifies the mode of database creation.
Default: regular database creation.
creates a database as a copy of an existing database. sourceDatabaseId must be specified as the resource ID of the source database.
OnlineSecondary/NonReadableSecondary: creates a database as a (readable or nonreadable) secondary replica of ... | [
"Specifies",
"the",
"mode",
"of",
"database",
"creation",
".",
"Default",
":",
"regular",
"database",
"creation",
".",
"creates",
"a",
"database",
"as",
"a",
"copy",
"of",
"an",
"existing",
"database",
".",
"sourceDatabaseId",
"must",
"be",
"specified",
"as",
... | def create_mode(self) -> Optional[str]:
return pulumi.get(self, "create_mode") | [
"def",
"create_mode",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"create_mode\"",
")"
] | Specifies the mode of database creation. | [
"Specifies",
"the",
"mode",
"of",
"database",
"creation",
"."
] | [
"\"\"\"\n Specifies the mode of database creation.\n\n Default: regular database creation.\n\n Copy: creates a database as a copy of an existing database. sourceDatabaseId must be specified as the resource ID of the source database.\n\n OnlineSecondary/NonReadableSecondary: creates a dat... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | current_service_objective_id | str | def current_service_objective_id(self) -> str:
"""
The current service level objective ID of the database. This is the ID of the service level objective that is currently active.
"""
return pulumi.get(self, "current_service_objective_id") |
The current service level objective ID of the database. This is the ID of the service level objective that is currently active.
| The current service level objective ID of the database. This is the ID of the service level objective that is currently active. | [
"The",
"current",
"service",
"level",
"objective",
"ID",
"of",
"the",
"database",
".",
"This",
"is",
"the",
"ID",
"of",
"the",
"service",
"level",
"objective",
"that",
"is",
"currently",
"active",
"."
] | def current_service_objective_id(self) -> str:
return pulumi.get(self, "current_service_objective_id") | [
"def",
"current_service_objective_id",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"current_service_objective_id\"",
")"
] | The current service level objective ID of the database. | [
"The",
"current",
"service",
"level",
"objective",
"ID",
"of",
"the",
"database",
"."
] | [
"\"\"\"\n The current service level objective ID of the database. This is the ID of the service level objective that is currently active.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | database_id | str | def database_id(self) -> str:
"""
The ID of the database.
"""
return pulumi.get(self, "database_id") |
The ID of the database.
| The ID of the database. | [
"The",
"ID",
"of",
"the",
"database",
"."
] | def database_id(self) -> str:
return pulumi.get(self, "database_id") | [
"def",
"database_id",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"database_id\"",
")"
] | The ID of the database. | [
"The",
"ID",
"of",
"the",
"database",
"."
] | [
"\"\"\"\n The ID of the database.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | default_secondary_location | str | def default_secondary_location(self) -> str:
"""
The default secondary region for this database.
"""
return pulumi.get(self, "default_secondary_location") |
The default secondary region for this database.
| The default secondary region for this database. | [
"The",
"default",
"secondary",
"region",
"for",
"this",
"database",
"."
] | def default_secondary_location(self) -> str:
return pulumi.get(self, "default_secondary_location") | [
"def",
"default_secondary_location",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"default_secondary_location\"",
")"
] | The default secondary region for this database. | [
"The",
"default",
"secondary",
"region",
"for",
"this",
"database",
"."
] | [
"\"\"\"\n The default secondary region for this database.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | earliest_restore_date | str | def earliest_restore_date(self) -> str:
"""
This records the earliest start date and time that restore is available for this database (ISO8601 format).
"""
return pulumi.get(self, "earliest_restore_date") |
This records the earliest start date and time that restore is available for this database (ISO8601 format).
| This records the earliest start date and time that restore is available for this database (ISO8601 format). | [
"This",
"records",
"the",
"earliest",
"start",
"date",
"and",
"time",
"that",
"restore",
"is",
"available",
"for",
"this",
"database",
"(",
"ISO8601",
"format",
")",
"."
] | def earliest_restore_date(self) -> str:
return pulumi.get(self, "earliest_restore_date") | [
"def",
"earliest_restore_date",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"earliest_restore_date\"",
")"
] | This records the earliest start date and time that restore is available for this database (ISO8601 format). | [
"This",
"records",
"the",
"earliest",
"start",
"date",
"and",
"time",
"that",
"restore",
"is",
"available",
"for",
"this",
"database",
"(",
"ISO8601",
"format",
")",
"."
] | [
"\"\"\"\n This records the earliest start date and time that restore is available for this database (ISO8601 format).\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | edition | Optional[str] | def edition(self) -> Optional[str]:
"""
The edition of the database. The DatabaseEditions enumeration contains all the valid editions. If createMode is NonReadableSecondary or OnlineSecondary, this value is ignored.
The list of SKUs may vary by region and support offer. To determine t... |
The edition of the database. The DatabaseEditions enumeration contains all the valid editions. If createMode is NonReadableSecondary or OnlineSecondary, this value is ignored.
The list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name, tier/edition, ... | The edition of the database. The DatabaseEditions enumeration contains all the valid editions. If createMode is NonReadableSecondary or OnlineSecondary, this value is ignored.
The list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name, tier/edition, family, and capacity) that a... | [
"The",
"edition",
"of",
"the",
"database",
".",
"The",
"DatabaseEditions",
"enumeration",
"contains",
"all",
"the",
"valid",
"editions",
".",
"If",
"createMode",
"is",
"NonReadableSecondary",
"or",
"OnlineSecondary",
"this",
"value",
"is",
"ignored",
".",
"The",
... | def edition(self) -> Optional[str]:
return pulumi.get(self, "edition") | [
"def",
"edition",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"edition\"",
")"
] | The edition of the database. | [
"The",
"edition",
"of",
"the",
"database",
"."
] | [
"\"\"\"\n The edition of the database. The DatabaseEditions enumeration contains all the valid editions. If createMode is NonReadableSecondary or OnlineSecondary, this value is ignored.\r\n \r\n The list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | elastic_pool_name | Optional[str] | def elastic_pool_name(self) -> Optional[str]:
"""
The name of the elastic pool the database is in. If elasticPoolName and requestedServiceObjectiveName are both updated, the value of requestedServiceObjectiveName is ignored. Not supported for DataWarehouse edition.
"""
return pulumi.get(... |
The name of the elastic pool the database is in. If elasticPoolName and requestedServiceObjectiveName are both updated, the value of requestedServiceObjectiveName is ignored. Not supported for DataWarehouse edition.
| The name of the elastic pool the database is in. If elasticPoolName and requestedServiceObjectiveName are both updated, the value of requestedServiceObjectiveName is ignored. Not supported for DataWarehouse edition. | [
"The",
"name",
"of",
"the",
"elastic",
"pool",
"the",
"database",
"is",
"in",
".",
"If",
"elasticPoolName",
"and",
"requestedServiceObjectiveName",
"are",
"both",
"updated",
"the",
"value",
"of",
"requestedServiceObjectiveName",
"is",
"ignored",
".",
"Not",
"suppo... | def elastic_pool_name(self) -> Optional[str]:
return pulumi.get(self, "elastic_pool_name") | [
"def",
"elastic_pool_name",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"elastic_pool_name\"",
")"
] | The name of the elastic pool the database is in. | [
"The",
"name",
"of",
"the",
"elastic",
"pool",
"the",
"database",
"is",
"in",
"."
] | [
"\"\"\"\n The name of the elastic pool the database is in. If elasticPoolName and requestedServiceObjectiveName are both updated, the value of requestedServiceObjectiveName is ignored. Not supported for DataWarehouse edition.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | failover_group_id | str | def failover_group_id(self) -> str:
"""
The resource identifier of the failover group containing this database.
"""
return pulumi.get(self, "failover_group_id") |
The resource identifier of the failover group containing this database.
| The resource identifier of the failover group containing this database. | [
"The",
"resource",
"identifier",
"of",
"the",
"failover",
"group",
"containing",
"this",
"database",
"."
] | def failover_group_id(self) -> str:
return pulumi.get(self, "failover_group_id") | [
"def",
"failover_group_id",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"failover_group_id\"",
")"
] | The resource identifier of the failover group containing this database. | [
"The",
"resource",
"identifier",
"of",
"the",
"failover",
"group",
"containing",
"this",
"database",
"."
] | [
"\"\"\"\n The resource identifier of the failover group containing this database.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | max_size_bytes | Optional[str] | def max_size_bytes(self) -> Optional[str]:
"""
The max size of the database expressed in bytes. If createMode is not Default, this value is ignored. To see possible values, query the capabilities API (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) referred t... |
The max size of the database expressed in bytes. If createMode is not Default, this value is ignored. To see possible values, query the capabilities API (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) referred to by operationId: "Capabilities_ListByLocation."
... | The max size of the database expressed in bytes. If createMode is not Default, this value is ignored. | [
"The",
"max",
"size",
"of",
"the",
"database",
"expressed",
"in",
"bytes",
".",
"If",
"createMode",
"is",
"not",
"Default",
"this",
"value",
"is",
"ignored",
"."
] | def max_size_bytes(self) -> Optional[str]:
return pulumi.get(self, "max_size_bytes") | [
"def",
"max_size_bytes",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"max_size_bytes\"",
")"
] | The max size of the database expressed in bytes. | [
"The",
"max",
"size",
"of",
"the",
"database",
"expressed",
"in",
"bytes",
"."
] | [
"\"\"\"\n The max size of the database expressed in bytes. If createMode is not Default, this value is ignored. To see possible values, query the capabilities API (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) referred to by operationId: \"Capabilities_ListByLoc... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | read_scale | Optional[str] | def read_scale(self) -> Optional[str]:
"""
Conditional. If the database is a geo-secondary, readScale indicates whether read-only connections are allowed to this database or not. Not supported for DataWarehouse edition.
"""
return pulumi.get(self, "read_scale") |
Conditional. If the database is a geo-secondary, readScale indicates whether read-only connections are allowed to this database or not. Not supported for DataWarehouse edition.
| Conditional. If the database is a geo-secondary, readScale indicates whether read-only connections are allowed to this database or not. Not supported for DataWarehouse edition. | [
"Conditional",
".",
"If",
"the",
"database",
"is",
"a",
"geo",
"-",
"secondary",
"readScale",
"indicates",
"whether",
"read",
"-",
"only",
"connections",
"are",
"allowed",
"to",
"this",
"database",
"or",
"not",
".",
"Not",
"supported",
"for",
"DataWarehouse",
... | def read_scale(self) -> Optional[str]:
return pulumi.get(self, "read_scale") | [
"def",
"read_scale",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"read_scale\"",
")"
] | Conditional. | [
"Conditional",
"."
] | [
"\"\"\"\n Conditional. If the database is a geo-secondary, readScale indicates whether read-only connections are allowed to this database or not. Not supported for DataWarehouse edition.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | recommended_index | Sequence['outputs.RecommendedIndexResponse'] | def recommended_index(self) -> Sequence['outputs.RecommendedIndexResponse']:
"""
The recommended indices for this database.
"""
return pulumi.get(self, "recommended_index") |
The recommended indices for this database.
| The recommended indices for this database. | [
"The",
"recommended",
"indices",
"for",
"this",
"database",
"."
] | def recommended_index(self) -> Sequence['outputs.RecommendedIndexResponse']:
return pulumi.get(self, "recommended_index") | [
"def",
"recommended_index",
"(",
"self",
")",
"->",
"Sequence",
"[",
"'outputs.RecommendedIndexResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"recommended_index\"",
")"
] | The recommended indices for this database. | [
"The",
"recommended",
"indices",
"for",
"this",
"database",
"."
] | [
"\"\"\"\n The recommended indices for this database.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | recovery_services_recovery_point_resource_id | Optional[str] | def recovery_services_recovery_point_resource_id(self) -> Optional[str]:
"""
Conditional. If createMode is RestoreLongTermRetentionBackup, then this value is required. Specifies the resource ID of the recovery point to restore from.
"""
return pulumi.get(self, "recovery_services_recovery... |
Conditional. If createMode is RestoreLongTermRetentionBackup, then this value is required. Specifies the resource ID of the recovery point to restore from.
| Conditional. If createMode is RestoreLongTermRetentionBackup, then this value is required. Specifies the resource ID of the recovery point to restore from. | [
"Conditional",
".",
"If",
"createMode",
"is",
"RestoreLongTermRetentionBackup",
"then",
"this",
"value",
"is",
"required",
".",
"Specifies",
"the",
"resource",
"ID",
"of",
"the",
"recovery",
"point",
"to",
"restore",
"from",
"."
] | def recovery_services_recovery_point_resource_id(self) -> Optional[str]:
return pulumi.get(self, "recovery_services_recovery_point_resource_id") | [
"def",
"recovery_services_recovery_point_resource_id",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"recovery_services_recovery_point_resource_id\"",
")"
] | Conditional. | [
"Conditional",
"."
] | [
"\"\"\"\n Conditional. If createMode is RestoreLongTermRetentionBackup, then this value is required. Specifies the resource ID of the recovery point to restore from.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | requested_service_objective_id | Optional[str] | def requested_service_objective_id(self) -> Optional[str]:
"""
The configured service level objective ID of the database. This is the service level objective that is in the process of being applied to the database. Once successfully updated, it will match the value of currentServiceObjectiveId property.... |
The configured service level objective ID of the database. This is the service level objective that is in the process of being applied to the database. Once successfully updated, it will match the value of currentServiceObjectiveId property. If requestedServiceObjectiveId and requestedServiceObjectiveName are ... | The configured service level objective ID of the database. This is the service level objective that is in the process of being applied to the database. Once successfully updated, it will match the value of currentServiceObjectiveId property. If requestedServiceObjectiveId and requestedServiceObjectiveName are both upda... | [
"The",
"configured",
"service",
"level",
"objective",
"ID",
"of",
"the",
"database",
".",
"This",
"is",
"the",
"service",
"level",
"objective",
"that",
"is",
"in",
"the",
"process",
"of",
"being",
"applied",
"to",
"the",
"database",
".",
"Once",
"successfull... | def requested_service_objective_id(self) -> Optional[str]:
return pulumi.get(self, "requested_service_objective_id") | [
"def",
"requested_service_objective_id",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"requested_service_objective_id\"",
")"
] | The configured service level objective ID of the database. | [
"The",
"configured",
"service",
"level",
"objective",
"ID",
"of",
"the",
"database",
"."
] | [
"\"\"\"\n The configured service level objective ID of the database. This is the service level objective that is in the process of being applied to the database. Once successfully updated, it will match the value of currentServiceObjectiveId property. If requestedServiceObjectiveId and requestedServiceObject... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | requested_service_objective_name | Optional[str] | def requested_service_objective_name(self) -> Optional[str]:
"""
The name of the configured service level objective of the database. This is the service level objective that is in the process of being applied to the database. Once successfully updated, it will match the value of serviceLevelObjective pr... |
The name of the configured service level objective of the database. This is the service level objective that is in the process of being applied to the database. Once successfully updated, it will match the value of serviceLevelObjective property.
The list of SKUs may vary by region and supp... | The name of the configured service level objective of the database. This is the service level objective that is in the process of being applied to the database. Once successfully updated, it will match the value of serviceLevelObjective property.
The list of SKUs may vary by region and support offer. To determine the S... | [
"The",
"name",
"of",
"the",
"configured",
"service",
"level",
"objective",
"of",
"the",
"database",
".",
"This",
"is",
"the",
"service",
"level",
"objective",
"that",
"is",
"in",
"the",
"process",
"of",
"being",
"applied",
"to",
"the",
"database",
".",
"On... | def requested_service_objective_name(self) -> Optional[str]:
return pulumi.get(self, "requested_service_objective_name") | [
"def",
"requested_service_objective_name",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"requested_service_objective_name\"",
")"
] | The name of the configured service level objective of the database. | [
"The",
"name",
"of",
"the",
"configured",
"service",
"level",
"objective",
"of",
"the",
"database",
"."
] | [
"\"\"\"\n The name of the configured service level objective of the database. This is the service level objective that is in the process of being applied to the database. Once successfully updated, it will match the value of serviceLevelObjective property. \r\n \r\n The list of SKUs may vary by... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | restore_point_in_time | Optional[str] | def restore_point_in_time(self) -> Optional[str]:
"""
Conditional. If createMode is PointInTimeRestore, this value is required. If createMode is Restore, this value is optional. Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. Must be ... |
Conditional. If createMode is PointInTimeRestore, this value is required. If createMode is Restore, this value is optional. Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. Must be greater than or equal to the source database's earliestRestor... | Conditional. If createMode is PointInTimeRestore, this value is required. If createMode is Restore, this value is optional. Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. Must be greater than or equal to the source database's earliestRestoreDate val... | [
"Conditional",
".",
"If",
"createMode",
"is",
"PointInTimeRestore",
"this",
"value",
"is",
"required",
".",
"If",
"createMode",
"is",
"Restore",
"this",
"value",
"is",
"optional",
".",
"Specifies",
"the",
"point",
"in",
"time",
"(",
"ISO8601",
"format",
")",
... | def restore_point_in_time(self) -> Optional[str]:
return pulumi.get(self, "restore_point_in_time") | [
"def",
"restore_point_in_time",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"restore_point_in_time\"",
")"
] | Conditional. | [
"Conditional",
"."
] | [
"\"\"\"\n Conditional. If createMode is PointInTimeRestore, this value is required. If createMode is Restore, this value is optional. Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. Must be greater than or equal to the source database's ea... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | sample_name | Optional[str] | def sample_name(self) -> Optional[str]:
"""
Indicates the name of the sample schema to apply when creating this database. If createMode is not Default, this value is ignored. Not supported for DataWarehouse edition.
"""
return pulumi.get(self, "sample_name") |
Indicates the name of the sample schema to apply when creating this database. If createMode is not Default, this value is ignored. Not supported for DataWarehouse edition.
| Indicates the name of the sample schema to apply when creating this database. If createMode is not Default, this value is ignored. Not supported for DataWarehouse edition. | [
"Indicates",
"the",
"name",
"of",
"the",
"sample",
"schema",
"to",
"apply",
"when",
"creating",
"this",
"database",
".",
"If",
"createMode",
"is",
"not",
"Default",
"this",
"value",
"is",
"ignored",
".",
"Not",
"supported",
"for",
"DataWarehouse",
"edition",
... | def sample_name(self) -> Optional[str]:
return pulumi.get(self, "sample_name") | [
"def",
"sample_name",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"sample_name\"",
")"
] | Indicates the name of the sample schema to apply when creating this database. | [
"Indicates",
"the",
"name",
"of",
"the",
"sample",
"schema",
"to",
"apply",
"when",
"creating",
"this",
"database",
"."
] | [
"\"\"\"\n Indicates the name of the sample schema to apply when creating this database. If createMode is not Default, this value is ignored. Not supported for DataWarehouse edition.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | service_level_objective | str | def service_level_objective(self) -> str:
"""
The current service level objective of the database.
"""
return pulumi.get(self, "service_level_objective") |
The current service level objective of the database.
| The current service level objective of the database. | [
"The",
"current",
"service",
"level",
"objective",
"of",
"the",
"database",
"."
] | def service_level_objective(self) -> str:
return pulumi.get(self, "service_level_objective") | [
"def",
"service_level_objective",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"service_level_objective\"",
")"
] | The current service level objective of the database. | [
"The",
"current",
"service",
"level",
"objective",
"of",
"the",
"database",
"."
] | [
"\"\"\"\n The current service level objective of the database.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | service_tier_advisors | Sequence['outputs.ServiceTierAdvisorResponse'] | def service_tier_advisors(self) -> Sequence['outputs.ServiceTierAdvisorResponse']:
"""
The list of service tier advisors for this database. Expanded property
"""
return pulumi.get(self, "service_tier_advisors") |
The list of service tier advisors for this database. Expanded property
| The list of service tier advisors for this database. Expanded property | [
"The",
"list",
"of",
"service",
"tier",
"advisors",
"for",
"this",
"database",
".",
"Expanded",
"property"
] | def service_tier_advisors(self) -> Sequence['outputs.ServiceTierAdvisorResponse']:
return pulumi.get(self, "service_tier_advisors") | [
"def",
"service_tier_advisors",
"(",
"self",
")",
"->",
"Sequence",
"[",
"'outputs.ServiceTierAdvisorResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"service_tier_advisors\"",
")"
] | The list of service tier advisors for this database. | [
"The",
"list",
"of",
"service",
"tier",
"advisors",
"for",
"this",
"database",
"."
] | [
"\"\"\"\n The list of service tier advisors for this database. Expanded property\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | source_database_deletion_date | Optional[str] | def source_database_deletion_date(self) -> Optional[str]:
"""
Conditional. If createMode is Restore and sourceDatabaseId is the deleted database's original resource id when it existed (as opposed to its current restorable dropped database id), then this value is required. Specifies the time that the dat... |
Conditional. If createMode is Restore and sourceDatabaseId is the deleted database's original resource id when it existed (as opposed to its current restorable dropped database id), then this value is required. Specifies the time that the database was deleted.
| Conditional. If createMode is Restore and sourceDatabaseId is the deleted database's original resource id when it existed (as opposed to its current restorable dropped database id), then this value is required. Specifies the time that the database was deleted. | [
"Conditional",
".",
"If",
"createMode",
"is",
"Restore",
"and",
"sourceDatabaseId",
"is",
"the",
"deleted",
"database",
"'",
"s",
"original",
"resource",
"id",
"when",
"it",
"existed",
"(",
"as",
"opposed",
"to",
"its",
"current",
"restorable",
"dropped",
"dat... | def source_database_deletion_date(self) -> Optional[str]:
return pulumi.get(self, "source_database_deletion_date") | [
"def",
"source_database_deletion_date",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"source_database_deletion_date\"",
")"
] | Conditional. | [
"Conditional",
"."
] | [
"\"\"\"\n Conditional. If createMode is Restore and sourceDatabaseId is the deleted database's original resource id when it existed (as opposed to its current restorable dropped database id), then this value is required. Specifies the time that the database was deleted.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | source_database_id | Optional[str] | def source_database_id(self) -> Optional[str]:
"""
Conditional. If createMode is Copy, NonReadableSecondary, OnlineSecondary, PointInTimeRestore, Recovery, or Restore, then this value is required. Specifies the resource ID of the source database. If createMode is NonReadableSecondary or OnlineSecondary,... |
Conditional. If createMode is Copy, NonReadableSecondary, OnlineSecondary, PointInTimeRestore, Recovery, or Restore, then this value is required. Specifies the resource ID of the source database. If createMode is NonReadableSecondary or OnlineSecondary, the name of the source database must be the same as the n... | Conditional. If createMode is Copy, NonReadableSecondary, OnlineSecondary, PointInTimeRestore, Recovery, or Restore, then this value is required. Specifies the resource ID of the source database. If createMode is NonReadableSecondary or OnlineSecondary, the name of the source database must be the same as the new databa... | [
"Conditional",
".",
"If",
"createMode",
"is",
"Copy",
"NonReadableSecondary",
"OnlineSecondary",
"PointInTimeRestore",
"Recovery",
"or",
"Restore",
"then",
"this",
"value",
"is",
"required",
".",
"Specifies",
"the",
"resource",
"ID",
"of",
"the",
"source",
"database... | def source_database_id(self) -> Optional[str]:
return pulumi.get(self, "source_database_id") | [
"def",
"source_database_id",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"source_database_id\"",
")"
] | Conditional. | [
"Conditional",
"."
] | [
"\"\"\"\n Conditional. If createMode is Copy, NonReadableSecondary, OnlineSecondary, PointInTimeRestore, Recovery, or Restore, then this value is required. Specifies the resource ID of the source database. If createMode is NonReadableSecondary or OnlineSecondary, the name of the source database must be the s... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | status | str | def status(self) -> str:
"""
The status of the database.
"""
return pulumi.get(self, "status") |
The status of the database.
| The status of the database. | [
"The",
"status",
"of",
"the",
"database",
"."
] | def status(self) -> str:
return pulumi.get(self, "status") | [
"def",
"status",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"status\"",
")"
] | The status of the database. | [
"The",
"status",
"of",
"the",
"database",
"."
] | [
"\"\"\"\n The status of the database.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | transparent_data_encryption | Sequence['outputs.TransparentDataEncryptionResponse'] | def transparent_data_encryption(self) -> Sequence['outputs.TransparentDataEncryptionResponse']:
"""
The transparent data encryption info for this database.
"""
return pulumi.get(self, "transparent_data_encryption") |
The transparent data encryption info for this database.
| The transparent data encryption info for this database. | [
"The",
"transparent",
"data",
"encryption",
"info",
"for",
"this",
"database",
"."
] | def transparent_data_encryption(self) -> Sequence['outputs.TransparentDataEncryptionResponse']:
return pulumi.get(self, "transparent_data_encryption") | [
"def",
"transparent_data_encryption",
"(",
"self",
")",
"->",
"Sequence",
"[",
"'outputs.TransparentDataEncryptionResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"transparent_data_encryption\"",
")"
] | The transparent data encryption info for this database. | [
"The",
"transparent",
"data",
"encryption",
"info",
"for",
"this",
"database",
"."
] | [
"\"\"\"\n The transparent data encryption info for this database.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56703b6560f7f1a3aad1e72d08533a2e22ad31de | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/sql/latest/get_database.py | [
"Apache-2.0"
] | Python | zone_redundant | Optional[bool] | def zone_redundant(self) -> Optional[bool]:
"""
Whether or not this database is zone redundant, which means the replicas of this database will be spread across multiple availability zones.
"""
return pulumi.get(self, "zone_redundant") |
Whether or not this database is zone redundant, which means the replicas of this database will be spread across multiple availability zones.
| Whether or not this database is zone redundant, which means the replicas of this database will be spread across multiple availability zones. | [
"Whether",
"or",
"not",
"this",
"database",
"is",
"zone",
"redundant",
"which",
"means",
"the",
"replicas",
"of",
"this",
"database",
"will",
"be",
"spread",
"across",
"multiple",
"availability",
"zones",
"."
] | def zone_redundant(self) -> Optional[bool]:
return pulumi.get(self, "zone_redundant") | [
"def",
"zone_redundant",
"(",
"self",
")",
"->",
"Optional",
"[",
"bool",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"zone_redundant\"",
")"
] | Whether or not this database is zone redundant, which means the replicas of this database will be spread across multiple availability zones. | [
"Whether",
"or",
"not",
"this",
"database",
"is",
"zone",
"redundant",
"which",
"means",
"the",
"replicas",
"of",
"this",
"database",
"will",
"be",
"spread",
"across",
"multiple",
"availability",
"zones",
"."
] | [
"\"\"\"\n Whether or not this database is zone redundant, which means the replicas of this database will be spread across multiple availability zones.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567923b45dbbe02363110910ac2adad012364a12 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/web/v20190801/get_web_app_swift_virtual_network_connection.py | [
"Apache-2.0"
] | Python | subnet_resource_id | Optional[str] | def subnet_resource_id(self) -> Optional[str]:
"""
The Virtual Network subnet's resource ID. This is the subnet that this Web App will join. This subnet must have a delegation to Microsoft.Web/serverFarms defined first.
"""
return pulumi.get(self, "subnet_resource_id") |
The Virtual Network subnet's resource ID. This is the subnet that this Web App will join. This subnet must have a delegation to Microsoft.Web/serverFarms defined first.
| The Virtual Network subnet's resource ID. This is the subnet that this Web App will join. This subnet must have a delegation to Microsoft.Web/serverFarms defined first. | [
"The",
"Virtual",
"Network",
"subnet",
"'",
"s",
"resource",
"ID",
".",
"This",
"is",
"the",
"subnet",
"that",
"this",
"Web",
"App",
"will",
"join",
".",
"This",
"subnet",
"must",
"have",
"a",
"delegation",
"to",
"Microsoft",
".",
"Web",
"/",
"serverFarm... | def subnet_resource_id(self) -> Optional[str]:
return pulumi.get(self, "subnet_resource_id") | [
"def",
"subnet_resource_id",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"subnet_resource_id\"",
")"
] | The Virtual Network subnet's resource ID. | [
"The",
"Virtual",
"Network",
"subnet",
"'",
"s",
"resource",
"ID",
"."
] | [
"\"\"\"\n The Virtual Network subnet's resource ID. This is the subnet that this Web App will join. This subnet must have a delegation to Microsoft.Web/serverFarms defined first.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567923b45dbbe02363110910ac2adad012364a12 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/web/v20190801/get_web_app_swift_virtual_network_connection.py | [
"Apache-2.0"
] | Python | swift_supported | Optional[bool] | def swift_supported(self) -> Optional[bool]:
"""
A flag that specifies if the scale unit this Web App is on supports Swift integration.
"""
return pulumi.get(self, "swift_supported") |
A flag that specifies if the scale unit this Web App is on supports Swift integration.
| A flag that specifies if the scale unit this Web App is on supports Swift integration. | [
"A",
"flag",
"that",
"specifies",
"if",
"the",
"scale",
"unit",
"this",
"Web",
"App",
"is",
"on",
"supports",
"Swift",
"integration",
"."
] | def swift_supported(self) -> Optional[bool]:
return pulumi.get(self, "swift_supported") | [
"def",
"swift_supported",
"(",
"self",
")",
"->",
"Optional",
"[",
"bool",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"swift_supported\"",
")"
] | A flag that specifies if the scale unit this Web App is on supports Swift integration. | [
"A",
"flag",
"that",
"specifies",
"if",
"the",
"scale",
"unit",
"this",
"Web",
"App",
"is",
"on",
"supports",
"Swift",
"integration",
"."
] | [
"\"\"\"\n A flag that specifies if the scale unit this Web App is on supports Swift integration.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567a0093286d68901f9a47c251461690fe036a58 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/enterpriseknowledgegraph/latest/get_enterprise_knowledge_graph.py | [
"Apache-2.0"
] | Python | properties | 'outputs.EnterpriseKnowledgeGraphPropertiesResponse' | def properties(self) -> 'outputs.EnterpriseKnowledgeGraphPropertiesResponse':
"""
The set of properties specific to EnterpriseKnowledgeGraph resource
"""
return pulumi.get(self, "properties") |
The set of properties specific to EnterpriseKnowledgeGraph resource
| The set of properties specific to EnterpriseKnowledgeGraph resource | [
"The",
"set",
"of",
"properties",
"specific",
"to",
"EnterpriseKnowledgeGraph",
"resource"
] | def properties(self) -> 'outputs.EnterpriseKnowledgeGraphPropertiesResponse':
return pulumi.get(self, "properties") | [
"def",
"properties",
"(",
"self",
")",
"->",
"'outputs.EnterpriseKnowledgeGraphPropertiesResponse'",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"properties\"",
")"
] | The set of properties specific to EnterpriseKnowledgeGraph resource | [
"The",
"set",
"of",
"properties",
"specific",
"to",
"EnterpriseKnowledgeGraph",
"resource"
] | [
"\"\"\"\n The set of properties specific to EnterpriseKnowledgeGraph resource\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567a0093286d68901f9a47c251461690fe036a58 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/enterpriseknowledgegraph/latest/get_enterprise_knowledge_graph.py | [
"Apache-2.0"
] | Python | sku | Optional['outputs.SkuResponse'] | def sku(self) -> Optional['outputs.SkuResponse']:
"""
Gets or sets the SKU of the resource.
"""
return pulumi.get(self, "sku") |
Gets or sets the SKU of the resource.
| Gets or sets the SKU of the resource. | [
"Gets",
"or",
"sets",
"the",
"SKU",
"of",
"the",
"resource",
"."
] | def sku(self) -> Optional['outputs.SkuResponse']:
return pulumi.get(self, "sku") | [
"def",
"sku",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.SkuResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"sku\"",
")"
] | Gets or sets the SKU of the resource. | [
"Gets",
"or",
"sets",
"the",
"SKU",
"of",
"the",
"resource",
"."
] | [
"\"\"\"\n Gets or sets the SKU of the resource.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567e51e7eb67e784fddb422c2c55588f5b1c176c | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/insights/latest/get_action_group.py | [
"Apache-2.0"
] | Python | arm_role_receivers | Optional[Sequence['outputs.ArmRoleReceiverResponse']] | def arm_role_receivers(self) -> Optional[Sequence['outputs.ArmRoleReceiverResponse']]:
"""
The list of ARM role receivers that are part of this action group. Roles are Azure RBAC roles and only built-in roles are supported.
"""
return pulumi.get(self, "arm_role_receivers") |
The list of ARM role receivers that are part of this action group. Roles are Azure RBAC roles and only built-in roles are supported.
| The list of ARM role receivers that are part of this action group. Roles are Azure RBAC roles and only built-in roles are supported. | [
"The",
"list",
"of",
"ARM",
"role",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
".",
"Roles",
"are",
"Azure",
"RBAC",
"roles",
"and",
"only",
"built",
"-",
"in",
"roles",
"are",
"supported",
"."
] | def arm_role_receivers(self) -> Optional[Sequence['outputs.ArmRoleReceiverResponse']]:
return pulumi.get(self, "arm_role_receivers") | [
"def",
"arm_role_receivers",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"'outputs.ArmRoleReceiverResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"arm_role_receivers\"",
")"
] | The list of ARM role receivers that are part of this action group. | [
"The",
"list",
"of",
"ARM",
"role",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | [
"\"\"\"\n The list of ARM role receivers that are part of this action group. Roles are Azure RBAC roles and only built-in roles are supported.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567e51e7eb67e784fddb422c2c55588f5b1c176c | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/insights/latest/get_action_group.py | [
"Apache-2.0"
] | Python | automation_runbook_receivers | Optional[Sequence['outputs.AutomationRunbookReceiverResponse']] | def automation_runbook_receivers(self) -> Optional[Sequence['outputs.AutomationRunbookReceiverResponse']]:
"""
The list of AutomationRunbook receivers that are part of this action group.
"""
return pulumi.get(self, "automation_runbook_receivers") |
The list of AutomationRunbook receivers that are part of this action group.
| The list of AutomationRunbook receivers that are part of this action group. | [
"The",
"list",
"of",
"AutomationRunbook",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | def automation_runbook_receivers(self) -> Optional[Sequence['outputs.AutomationRunbookReceiverResponse']]:
return pulumi.get(self, "automation_runbook_receivers") | [
"def",
"automation_runbook_receivers",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"'outputs.AutomationRunbookReceiverResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"automation_runbook_receivers\"",
")"
] | The list of AutomationRunbook receivers that are part of this action group. | [
"The",
"list",
"of",
"AutomationRunbook",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | [
"\"\"\"\n The list of AutomationRunbook receivers that are part of this action group.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567e51e7eb67e784fddb422c2c55588f5b1c176c | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/insights/latest/get_action_group.py | [
"Apache-2.0"
] | Python | azure_app_push_receivers | Optional[Sequence['outputs.AzureAppPushReceiverResponse']] | def azure_app_push_receivers(self) -> Optional[Sequence['outputs.AzureAppPushReceiverResponse']]:
"""
The list of AzureAppPush receivers that are part of this action group.
"""
return pulumi.get(self, "azure_app_push_receivers") |
The list of AzureAppPush receivers that are part of this action group.
| The list of AzureAppPush receivers that are part of this action group. | [
"The",
"list",
"of",
"AzureAppPush",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | def azure_app_push_receivers(self) -> Optional[Sequence['outputs.AzureAppPushReceiverResponse']]:
return pulumi.get(self, "azure_app_push_receivers") | [
"def",
"azure_app_push_receivers",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"'outputs.AzureAppPushReceiverResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"azure_app_push_receivers\"",
")"
] | The list of AzureAppPush receivers that are part of this action group. | [
"The",
"list",
"of",
"AzureAppPush",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | [
"\"\"\"\n The list of AzureAppPush receivers that are part of this action group.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567e51e7eb67e784fddb422c2c55588f5b1c176c | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/insights/latest/get_action_group.py | [
"Apache-2.0"
] | Python | azure_function_receivers | Optional[Sequence['outputs.AzureFunctionReceiverResponse']] | def azure_function_receivers(self) -> Optional[Sequence['outputs.AzureFunctionReceiverResponse']]:
"""
The list of azure function receivers that are part of this action group.
"""
return pulumi.get(self, "azure_function_receivers") |
The list of azure function receivers that are part of this action group.
| The list of azure function receivers that are part of this action group. | [
"The",
"list",
"of",
"azure",
"function",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | def azure_function_receivers(self) -> Optional[Sequence['outputs.AzureFunctionReceiverResponse']]:
return pulumi.get(self, "azure_function_receivers") | [
"def",
"azure_function_receivers",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"'outputs.AzureFunctionReceiverResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"azure_function_receivers\"",
")"
] | The list of azure function receivers that are part of this action group. | [
"The",
"list",
"of",
"azure",
"function",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | [
"\"\"\"\n The list of azure function receivers that are part of this action group.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567e51e7eb67e784fddb422c2c55588f5b1c176c | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/insights/latest/get_action_group.py | [
"Apache-2.0"
] | Python | email_receivers | Optional[Sequence['outputs.EmailReceiverResponse']] | def email_receivers(self) -> Optional[Sequence['outputs.EmailReceiverResponse']]:
"""
The list of email receivers that are part of this action group.
"""
return pulumi.get(self, "email_receivers") |
The list of email receivers that are part of this action group.
| The list of email receivers that are part of this action group. | [
"The",
"list",
"of",
"email",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | def email_receivers(self) -> Optional[Sequence['outputs.EmailReceiverResponse']]:
return pulumi.get(self, "email_receivers") | [
"def",
"email_receivers",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"'outputs.EmailReceiverResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"email_receivers\"",
")"
] | The list of email receivers that are part of this action group. | [
"The",
"list",
"of",
"email",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | [
"\"\"\"\n The list of email receivers that are part of this action group.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567e51e7eb67e784fddb422c2c55588f5b1c176c | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/insights/latest/get_action_group.py | [
"Apache-2.0"
] | Python | group_short_name | str | def group_short_name(self) -> str:
"""
The short name of the action group. This will be used in SMS messages.
"""
return pulumi.get(self, "group_short_name") |
The short name of the action group. This will be used in SMS messages.
| The short name of the action group. This will be used in SMS messages. | [
"The",
"short",
"name",
"of",
"the",
"action",
"group",
".",
"This",
"will",
"be",
"used",
"in",
"SMS",
"messages",
"."
] | def group_short_name(self) -> str:
return pulumi.get(self, "group_short_name") | [
"def",
"group_short_name",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"group_short_name\"",
")"
] | The short name of the action group. | [
"The",
"short",
"name",
"of",
"the",
"action",
"group",
"."
] | [
"\"\"\"\n The short name of the action group. This will be used in SMS messages.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567e51e7eb67e784fddb422c2c55588f5b1c176c | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/insights/latest/get_action_group.py | [
"Apache-2.0"
] | Python | itsm_receivers | Optional[Sequence['outputs.ItsmReceiverResponse']] | def itsm_receivers(self) -> Optional[Sequence['outputs.ItsmReceiverResponse']]:
"""
The list of ITSM receivers that are part of this action group.
"""
return pulumi.get(self, "itsm_receivers") |
The list of ITSM receivers that are part of this action group.
| The list of ITSM receivers that are part of this action group. | [
"The",
"list",
"of",
"ITSM",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | def itsm_receivers(self) -> Optional[Sequence['outputs.ItsmReceiverResponse']]:
return pulumi.get(self, "itsm_receivers") | [
"def",
"itsm_receivers",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"'outputs.ItsmReceiverResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"itsm_receivers\"",
")"
] | The list of ITSM receivers that are part of this action group. | [
"The",
"list",
"of",
"ITSM",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | [
"\"\"\"\n The list of ITSM receivers that are part of this action group.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567e51e7eb67e784fddb422c2c55588f5b1c176c | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/insights/latest/get_action_group.py | [
"Apache-2.0"
] | Python | logic_app_receivers | Optional[Sequence['outputs.LogicAppReceiverResponse']] | def logic_app_receivers(self) -> Optional[Sequence['outputs.LogicAppReceiverResponse']]:
"""
The list of logic app receivers that are part of this action group.
"""
return pulumi.get(self, "logic_app_receivers") |
The list of logic app receivers that are part of this action group.
| The list of logic app receivers that are part of this action group. | [
"The",
"list",
"of",
"logic",
"app",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | def logic_app_receivers(self) -> Optional[Sequence['outputs.LogicAppReceiverResponse']]:
return pulumi.get(self, "logic_app_receivers") | [
"def",
"logic_app_receivers",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"'outputs.LogicAppReceiverResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"logic_app_receivers\"",
")"
] | The list of logic app receivers that are part of this action group. | [
"The",
"list",
"of",
"logic",
"app",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | [
"\"\"\"\n The list of logic app receivers that are part of this action group.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567e51e7eb67e784fddb422c2c55588f5b1c176c | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/insights/latest/get_action_group.py | [
"Apache-2.0"
] | Python | sms_receivers | Optional[Sequence['outputs.SmsReceiverResponse']] | def sms_receivers(self) -> Optional[Sequence['outputs.SmsReceiverResponse']]:
"""
The list of SMS receivers that are part of this action group.
"""
return pulumi.get(self, "sms_receivers") |
The list of SMS receivers that are part of this action group.
| The list of SMS receivers that are part of this action group. | [
"The",
"list",
"of",
"SMS",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | def sms_receivers(self) -> Optional[Sequence['outputs.SmsReceiverResponse']]:
return pulumi.get(self, "sms_receivers") | [
"def",
"sms_receivers",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"'outputs.SmsReceiverResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"sms_receivers\"",
")"
] | The list of SMS receivers that are part of this action group. | [
"The",
"list",
"of",
"SMS",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | [
"\"\"\"\n The list of SMS receivers that are part of this action group.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567e51e7eb67e784fddb422c2c55588f5b1c176c | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/insights/latest/get_action_group.py | [
"Apache-2.0"
] | Python | voice_receivers | Optional[Sequence['outputs.VoiceReceiverResponse']] | def voice_receivers(self) -> Optional[Sequence['outputs.VoiceReceiverResponse']]:
"""
The list of voice receivers that are part of this action group.
"""
return pulumi.get(self, "voice_receivers") |
The list of voice receivers that are part of this action group.
| The list of voice receivers that are part of this action group. | [
"The",
"list",
"of",
"voice",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | def voice_receivers(self) -> Optional[Sequence['outputs.VoiceReceiverResponse']]:
return pulumi.get(self, "voice_receivers") | [
"def",
"voice_receivers",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"'outputs.VoiceReceiverResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"voice_receivers\"",
")"
] | The list of voice receivers that are part of this action group. | [
"The",
"list",
"of",
"voice",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | [
"\"\"\"\n The list of voice receivers that are part of this action group.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
567e51e7eb67e784fddb422c2c55588f5b1c176c | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/insights/latest/get_action_group.py | [
"Apache-2.0"
] | Python | webhook_receivers | Optional[Sequence['outputs.WebhookReceiverResponse']] | def webhook_receivers(self) -> Optional[Sequence['outputs.WebhookReceiverResponse']]:
"""
The list of webhook receivers that are part of this action group.
"""
return pulumi.get(self, "webhook_receivers") |
The list of webhook receivers that are part of this action group.
| The list of webhook receivers that are part of this action group. | [
"The",
"list",
"of",
"webhook",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | def webhook_receivers(self) -> Optional[Sequence['outputs.WebhookReceiverResponse']]:
return pulumi.get(self, "webhook_receivers") | [
"def",
"webhook_receivers",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"'outputs.WebhookReceiverResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"webhook_receivers\"",
")"
] | The list of webhook receivers that are part of this action group. | [
"The",
"list",
"of",
"webhook",
"receivers",
"that",
"are",
"part",
"of",
"this",
"action",
"group",
"."
] | [
"\"\"\"\n The list of webhook receivers that are part of this action group.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56854c70643739cff55ceee79dba9a592e22300a | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/containerservice/v20200901/get_private_endpoint_connection.py | [
"Apache-2.0"
] | Python | private_endpoint | Optional['outputs.PrivateEndpointResponse'] | def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
"""
The resource of private endpoint.
"""
return pulumi.get(self, "private_endpoint") |
The resource of private endpoint.
| The resource of private endpoint. | [
"The",
"resource",
"of",
"private",
"endpoint",
"."
] | def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
return pulumi.get(self, "private_endpoint") | [
"def",
"private_endpoint",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.PrivateEndpointResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"private_endpoint\"",
")"
] | The resource of private endpoint. | [
"The",
"resource",
"of",
"private",
"endpoint",
"."
] | [
"\"\"\"\n The resource of private endpoint.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56854c70643739cff55ceee79dba9a592e22300a | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/containerservice/v20200901/get_private_endpoint_connection.py | [
"Apache-2.0"
] | Python | private_link_service_connection_state | 'outputs.PrivateLinkServiceConnectionStateResponse' | def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
"""
A collection of information about the state of the connection between service consumer and provider.
"""
return pulumi.get(self, "private_link_service_connection_state") |
A collection of information about the state of the connection between service consumer and provider.
| A collection of information about the state of the connection between service consumer and provider. | [
"A",
"collection",
"of",
"information",
"about",
"the",
"state",
"of",
"the",
"connection",
"between",
"service",
"consumer",
"and",
"provider",
"."
] | def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
return pulumi.get(self, "private_link_service_connection_state") | [
"def",
"private_link_service_connection_state",
"(",
"self",
")",
"->",
"'outputs.PrivateLinkServiceConnectionStateResponse'",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"private_link_service_connection_state\"",
")"
] | A collection of information about the state of the connection between service consumer and provider. | [
"A",
"collection",
"of",
"information",
"about",
"the",
"state",
"of",
"the",
"connection",
"between",
"service",
"consumer",
"and",
"provider",
"."
] | [
"\"\"\"\n A collection of information about the state of the connection between service consumer and provider.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56987da080591244c18c0c01ca97632fbfb73334 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/peering/v20200101preview/registered_prefix.py | [
"Apache-2.0"
] | Python | error_message | pulumi.Output[str] | def error_message(self) -> pulumi.Output[str]:
"""
The error message associated with the validation state, if any.
"""
return pulumi.get(self, "error_message") |
The error message associated with the validation state, if any.
| The error message associated with the validation state, if any. | [
"The",
"error",
"message",
"associated",
"with",
"the",
"validation",
"state",
"if",
"any",
"."
] | def error_message(self) -> pulumi.Output[str]:
return pulumi.get(self, "error_message") | [
"def",
"error_message",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"error_message\"",
")"
] | The error message associated with the validation state, if any. | [
"The",
"error",
"message",
"associated",
"with",
"the",
"validation",
"state",
"if",
"any",
"."
] | [
"\"\"\"\n The error message associated with the validation state, if any.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56987da080591244c18c0c01ca97632fbfb73334 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/peering/v20200101preview/registered_prefix.py | [
"Apache-2.0"
] | Python | peering_service_prefix_key | pulumi.Output[str] | def peering_service_prefix_key(self) -> pulumi.Output[str]:
"""
The peering service prefix key that is to be shared with the customer.
"""
return pulumi.get(self, "peering_service_prefix_key") |
The peering service prefix key that is to be shared with the customer.
| The peering service prefix key that is to be shared with the customer. | [
"The",
"peering",
"service",
"prefix",
"key",
"that",
"is",
"to",
"be",
"shared",
"with",
"the",
"customer",
"."
] | def peering_service_prefix_key(self) -> pulumi.Output[str]:
return pulumi.get(self, "peering_service_prefix_key") | [
"def",
"peering_service_prefix_key",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"peering_service_prefix_key\"",
")"
] | The peering service prefix key that is to be shared with the customer. | [
"The",
"peering",
"service",
"prefix",
"key",
"that",
"is",
"to",
"be",
"shared",
"with",
"the",
"customer",
"."
] | [
"\"\"\"\n The peering service prefix key that is to be shared with the customer.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56987da080591244c18c0c01ca97632fbfb73334 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/peering/v20200101preview/registered_prefix.py | [
"Apache-2.0"
] | Python | prefix | pulumi.Output[Optional[str]] | def prefix(self) -> pulumi.Output[Optional[str]]:
"""
The customer's prefix from which traffic originates.
"""
return pulumi.get(self, "prefix") |
The customer's prefix from which traffic originates.
| The customer's prefix from which traffic originates. | [
"The",
"customer",
"'",
"s",
"prefix",
"from",
"which",
"traffic",
"originates",
"."
] | def prefix(self) -> pulumi.Output[Optional[str]]:
return pulumi.get(self, "prefix") | [
"def",
"prefix",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"prefix\"",
")"
] | The customer's prefix from which traffic originates. | [
"The",
"customer",
"'",
"s",
"prefix",
"from",
"which",
"traffic",
"originates",
"."
] | [
"\"\"\"\n The customer's prefix from which traffic originates.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
5698fa36ad58f71da6e7734648952c64fc3c0ae0 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/compute/v20191201/get_dedicated_host.py | [
"Apache-2.0"
] | Python | auto_replace_on_failure | Optional[bool] | def auto_replace_on_failure(self) -> Optional[bool]:
"""
Specifies whether the dedicated host should be replaced automatically in case of a failure. The value is defaulted to 'true' when not provided.
"""
return pulumi.get(self, "auto_replace_on_failure") |
Specifies whether the dedicated host should be replaced automatically in case of a failure. The value is defaulted to 'true' when not provided.
| Specifies whether the dedicated host should be replaced automatically in case of a failure. The value is defaulted to 'true' when not provided. | [
"Specifies",
"whether",
"the",
"dedicated",
"host",
"should",
"be",
"replaced",
"automatically",
"in",
"case",
"of",
"a",
"failure",
".",
"The",
"value",
"is",
"defaulted",
"to",
"'",
"true",
"'",
"when",
"not",
"provided",
"."
] | def auto_replace_on_failure(self) -> Optional[bool]:
return pulumi.get(self, "auto_replace_on_failure") | [
"def",
"auto_replace_on_failure",
"(",
"self",
")",
"->",
"Optional",
"[",
"bool",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"auto_replace_on_failure\"",
")"
] | Specifies whether the dedicated host should be replaced automatically in case of a failure. | [
"Specifies",
"whether",
"the",
"dedicated",
"host",
"should",
"be",
"replaced",
"automatically",
"in",
"case",
"of",
"a",
"failure",
"."
] | [
"\"\"\"\n Specifies whether the dedicated host should be replaced automatically in case of a failure. The value is defaulted to 'true' when not provided.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
5698fa36ad58f71da6e7734648952c64fc3c0ae0 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/compute/v20191201/get_dedicated_host.py | [
"Apache-2.0"
] | Python | host_id | str | def host_id(self) -> str:
"""
A unique id generated and assigned to the dedicated host by the platform. <br><br> Does not change throughout the lifetime of the host.
"""
return pulumi.get(self, "host_id") |
A unique id generated and assigned to the dedicated host by the platform. <br><br> Does not change throughout the lifetime of the host.
| A unique id generated and assigned to the dedicated host by the platform. Does not change throughout the lifetime of the host. | [
"A",
"unique",
"id",
"generated",
"and",
"assigned",
"to",
"the",
"dedicated",
"host",
"by",
"the",
"platform",
".",
"Does",
"not",
"change",
"throughout",
"the",
"lifetime",
"of",
"the",
"host",
"."
] | def host_id(self) -> str:
return pulumi.get(self, "host_id") | [
"def",
"host_id",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"host_id\"",
")"
] | A unique id generated and assigned to the dedicated host by the platform. | [
"A",
"unique",
"id",
"generated",
"and",
"assigned",
"to",
"the",
"dedicated",
"host",
"by",
"the",
"platform",
"."
] | [
"\"\"\"\n A unique id generated and assigned to the dedicated host by the platform. <br><br> Does not change throughout the lifetime of the host.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
5698fa36ad58f71da6e7734648952c64fc3c0ae0 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/compute/v20191201/get_dedicated_host.py | [
"Apache-2.0"
] | Python | instance_view | 'outputs.DedicatedHostInstanceViewResponse' | def instance_view(self) -> 'outputs.DedicatedHostInstanceViewResponse':
"""
The dedicated host instance view.
"""
return pulumi.get(self, "instance_view") |
The dedicated host instance view.
| The dedicated host instance view. | [
"The",
"dedicated",
"host",
"instance",
"view",
"."
] | def instance_view(self) -> 'outputs.DedicatedHostInstanceViewResponse':
return pulumi.get(self, "instance_view") | [
"def",
"instance_view",
"(",
"self",
")",
"->",
"'outputs.DedicatedHostInstanceViewResponse'",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"instance_view\"",
")"
] | The dedicated host instance view. | [
"The",
"dedicated",
"host",
"instance",
"view",
"."
] | [
"\"\"\"\n The dedicated host instance view.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
5698fa36ad58f71da6e7734648952c64fc3c0ae0 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/compute/v20191201/get_dedicated_host.py | [
"Apache-2.0"
] | Python | license_type | Optional[str] | def license_type(self) -> Optional[str]:
"""
Specifies the software license type that will be applied to the VMs deployed on the dedicated host. <br><br> Possible values are: <br><br> **None** <br><br> **Windows_Server_Hybrid** <br><br> **Windows_Server_Perpetual** <br><br> Default: **None**
"""... |
Specifies the software license type that will be applied to the VMs deployed on the dedicated host. <br><br> Possible values are: <br><br> **None** <br><br> **Windows_Server_Hybrid** <br><br> **Windows_Server_Perpetual** <br><br> Default: **None**
| Specifies the software license type that will be applied to the VMs deployed on the dedicated host. | [
"Specifies",
"the",
"software",
"license",
"type",
"that",
"will",
"be",
"applied",
"to",
"the",
"VMs",
"deployed",
"on",
"the",
"dedicated",
"host",
"."
] | def license_type(self) -> Optional[str]:
return pulumi.get(self, "license_type") | [
"def",
"license_type",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"license_type\"",
")"
] | Specifies the software license type that will be applied to the VMs deployed on the dedicated host. | [
"Specifies",
"the",
"software",
"license",
"type",
"that",
"will",
"be",
"applied",
"to",
"the",
"VMs",
"deployed",
"on",
"the",
"dedicated",
"host",
"."
] | [
"\"\"\"\n Specifies the software license type that will be applied to the VMs deployed on the dedicated host. <br><br> Possible values are: <br><br> **None** <br><br> **Windows_Server_Hybrid** <br><br> **Windows_Server_Perpetual** <br><br> Default: **None**\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
5698fa36ad58f71da6e7734648952c64fc3c0ae0 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/compute/v20191201/get_dedicated_host.py | [
"Apache-2.0"
] | Python | platform_fault_domain | Optional[int] | def platform_fault_domain(self) -> Optional[int]:
"""
Fault domain of the dedicated host within a dedicated host group.
"""
return pulumi.get(self, "platform_fault_domain") |
Fault domain of the dedicated host within a dedicated host group.
| Fault domain of the dedicated host within a dedicated host group. | [
"Fault",
"domain",
"of",
"the",
"dedicated",
"host",
"within",
"a",
"dedicated",
"host",
"group",
"."
] | def platform_fault_domain(self) -> Optional[int]:
return pulumi.get(self, "platform_fault_domain") | [
"def",
"platform_fault_domain",
"(",
"self",
")",
"->",
"Optional",
"[",
"int",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"platform_fault_domain\"",
")"
] | Fault domain of the dedicated host within a dedicated host group. | [
"Fault",
"domain",
"of",
"the",
"dedicated",
"host",
"within",
"a",
"dedicated",
"host",
"group",
"."
] | [
"\"\"\"\n Fault domain of the dedicated host within a dedicated host group.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
5698fa36ad58f71da6e7734648952c64fc3c0ae0 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/compute/v20191201/get_dedicated_host.py | [
"Apache-2.0"
] | Python | provisioning_state | str | def provisioning_state(self) -> str:
"""
The provisioning state, which only appears in the response.
"""
return pulumi.get(self, "provisioning_state") |
The provisioning state, which only appears in the response.
| The provisioning state, which only appears in the response. | [
"The",
"provisioning",
"state",
"which",
"only",
"appears",
"in",
"the",
"response",
"."
] | def provisioning_state(self) -> str:
return pulumi.get(self, "provisioning_state") | [
"def",
"provisioning_state",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"provisioning_state\"",
")"
] | The provisioning state, which only appears in the response. | [
"The",
"provisioning",
"state",
"which",
"only",
"appears",
"in",
"the",
"response",
"."
] | [
"\"\"\"\n The provisioning state, which only appears in the response.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
5698fa36ad58f71da6e7734648952c64fc3c0ae0 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/compute/v20191201/get_dedicated_host.py | [
"Apache-2.0"
] | Python | provisioning_time | str | def provisioning_time(self) -> str:
"""
The date when the host was first provisioned.
"""
return pulumi.get(self, "provisioning_time") |
The date when the host was first provisioned.
| The date when the host was first provisioned. | [
"The",
"date",
"when",
"the",
"host",
"was",
"first",
"provisioned",
"."
] | def provisioning_time(self) -> str:
return pulumi.get(self, "provisioning_time") | [
"def",
"provisioning_time",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"provisioning_time\"",
")"
] | The date when the host was first provisioned. | [
"The",
"date",
"when",
"the",
"host",
"was",
"first",
"provisioned",
"."
] | [
"\"\"\"\n The date when the host was first provisioned.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
5698fa36ad58f71da6e7734648952c64fc3c0ae0 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/compute/v20191201/get_dedicated_host.py | [
"Apache-2.0"
] | Python | sku | 'outputs.SkuResponse' | def sku(self) -> 'outputs.SkuResponse':
"""
SKU of the dedicated host for Hardware Generation and VM family. Only name is required to be set. List Microsoft.Compute SKUs for a list of possible values.
"""
return pulumi.get(self, "sku") |
SKU of the dedicated host for Hardware Generation and VM family. Only name is required to be set. List Microsoft.Compute SKUs for a list of possible values.
| SKU of the dedicated host for Hardware Generation and VM family. Only name is required to be set. List Microsoft.Compute SKUs for a list of possible values. | [
"SKU",
"of",
"the",
"dedicated",
"host",
"for",
"Hardware",
"Generation",
"and",
"VM",
"family",
".",
"Only",
"name",
"is",
"required",
"to",
"be",
"set",
".",
"List",
"Microsoft",
".",
"Compute",
"SKUs",
"for",
"a",
"list",
"of",
"possible",
"values",
"... | def sku(self) -> 'outputs.SkuResponse':
return pulumi.get(self, "sku") | [
"def",
"sku",
"(",
"self",
")",
"->",
"'outputs.SkuResponse'",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"sku\"",
")"
] | SKU of the dedicated host for Hardware Generation and VM family. | [
"SKU",
"of",
"the",
"dedicated",
"host",
"for",
"Hardware",
"Generation",
"and",
"VM",
"family",
"."
] | [
"\"\"\"\n SKU of the dedicated host for Hardware Generation and VM family. Only name is required to be set. List Microsoft.Compute SKUs for a list of possible values.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
5698fa36ad58f71da6e7734648952c64fc3c0ae0 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/compute/v20191201/get_dedicated_host.py | [
"Apache-2.0"
] | Python | virtual_machines | Sequence['outputs.SubResourceReadOnlyResponse'] | def virtual_machines(self) -> Sequence['outputs.SubResourceReadOnlyResponse']:
"""
A list of references to all virtual machines in the Dedicated Host.
"""
return pulumi.get(self, "virtual_machines") |
A list of references to all virtual machines in the Dedicated Host.
| A list of references to all virtual machines in the Dedicated Host. | [
"A",
"list",
"of",
"references",
"to",
"all",
"virtual",
"machines",
"in",
"the",
"Dedicated",
"Host",
"."
] | def virtual_machines(self) -> Sequence['outputs.SubResourceReadOnlyResponse']:
return pulumi.get(self, "virtual_machines") | [
"def",
"virtual_machines",
"(",
"self",
")",
"->",
"Sequence",
"[",
"'outputs.SubResourceReadOnlyResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"virtual_machines\"",
")"
] | A list of references to all virtual machines in the Dedicated Host. | [
"A",
"list",
"of",
"references",
"to",
"all",
"virtual",
"machines",
"in",
"the",
"Dedicated",
"Host",
"."
] | [
"\"\"\"\n A list of references to all virtual machines in the Dedicated Host.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
569cd778e99e158c352291306dea67d2d1bea5f8 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/apimanagement/notification_recipient_user.py | [
"Apache-2.0"
] | Python | user_id | pulumi.Output[Optional[str]] | def user_id(self) -> pulumi.Output[Optional[str]]:
"""
API Management UserId subscribed to notification.
"""
return pulumi.get(self, "user_id") |
API Management UserId subscribed to notification.
| API Management UserId subscribed to notification. | [
"API",
"Management",
"UserId",
"subscribed",
"to",
"notification",
"."
] | def user_id(self) -> pulumi.Output[Optional[str]]:
return pulumi.get(self, "user_id") | [
"def",
"user_id",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"user_id\"",
")"
] | API Management UserId subscribed to notification. | [
"API",
"Management",
"UserId",
"subscribed",
"to",
"notification",
"."
] | [
"\"\"\"\n API Management UserId subscribed to notification.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56a0aa0b6370e49ec915bba94fdeaea02adfbb5b | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20190801/ddos_protection_plan.py | [
"Apache-2.0"
] | Python | virtual_networks | pulumi.Output[Sequence['outputs.SubResourceResponse']] | def virtual_networks(self) -> pulumi.Output[Sequence['outputs.SubResourceResponse']]:
"""
The list of virtual networks associated with the DDoS protection plan resource. This list is read-only.
"""
return pulumi.get(self, "virtual_networks") |
The list of virtual networks associated with the DDoS protection plan resource. This list is read-only.
| The list of virtual networks associated with the DDoS protection plan resource. This list is read-only. | [
"The",
"list",
"of",
"virtual",
"networks",
"associated",
"with",
"the",
"DDoS",
"protection",
"plan",
"resource",
".",
"This",
"list",
"is",
"read",
"-",
"only",
"."
] | def virtual_networks(self) -> pulumi.Output[Sequence['outputs.SubResourceResponse']]:
return pulumi.get(self, "virtual_networks") | [
"def",
"virtual_networks",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Sequence",
"[",
"'outputs.SubResourceResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"virtual_networks\"",
")"
] | The list of virtual networks associated with the DDoS protection plan resource. | [
"The",
"list",
"of",
"virtual",
"networks",
"associated",
"with",
"the",
"DDoS",
"protection",
"plan",
"resource",
"."
] | [
"\"\"\"\n The list of virtual networks associated with the DDoS protection plan resource. This list is read-only.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56aafed2b26f693b33df054cf6a631b1ff217955 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/hybridnetwork/get_device.py | [
"Apache-2.0"
] | Python | azure_stack_edge | Optional['outputs.SubResourceResponse'] | def azure_stack_edge(self) -> Optional['outputs.SubResourceResponse']:
"""
The reference to the Azure stack edge device.
"""
return pulumi.get(self, "azure_stack_edge") |
The reference to the Azure stack edge device.
| The reference to the Azure stack edge device. | [
"The",
"reference",
"to",
"the",
"Azure",
"stack",
"edge",
"device",
"."
] | def azure_stack_edge(self) -> Optional['outputs.SubResourceResponse']:
return pulumi.get(self, "azure_stack_edge") | [
"def",
"azure_stack_edge",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.SubResourceResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"azure_stack_edge\"",
")"
] | The reference to the Azure stack edge device. | [
"The",
"reference",
"to",
"the",
"Azure",
"stack",
"edge",
"device",
"."
] | [
"\"\"\"\n The reference to the Azure stack edge device.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56aafed2b26f693b33df054cf6a631b1ff217955 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/hybridnetwork/get_device.py | [
"Apache-2.0"
] | Python | device_type | str | def device_type(self) -> str:
"""
The type of the device.
"""
return pulumi.get(self, "device_type") |
The type of the device.
| The type of the device. | [
"The",
"type",
"of",
"the",
"device",
"."
] | def device_type(self) -> str:
return pulumi.get(self, "device_type") | [
"def",
"device_type",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"device_type\"",
")"
] | The type of the device. | [
"The",
"type",
"of",
"the",
"device",
"."
] | [
"\"\"\"\n The type of the device.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56aafed2b26f693b33df054cf6a631b1ff217955 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/hybridnetwork/get_device.py | [
"Apache-2.0"
] | Python | location | str | def location(self) -> str:
"""
The geo-location where the resource lives
"""
return pulumi.get(self, "location") |
The geo-location where the resource lives
| The geo-location where the resource lives | [
"The",
"geo",
"-",
"location",
"where",
"the",
"resource",
"lives"
] | def location(self) -> str:
return pulumi.get(self, "location") | [
"def",
"location",
"(",
"self",
")",
"->",
"str",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"location\"",
")"
] | The geo-location where the resource lives | [
"The",
"geo",
"-",
"location",
"where",
"the",
"resource",
"lives"
] | [
"\"\"\"\n The geo-location where the resource lives\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
56aafed2b26f693b33df054cf6a631b1ff217955 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/hybridnetwork/get_device.py | [
"Apache-2.0"
] | Python | network_functions | Sequence['outputs.SubResourceResponse'] | def network_functions(self) -> Sequence['outputs.SubResourceResponse']:
"""
The list of network functions deployed on the device.
"""
return pulumi.get(self, "network_functions") |
The list of network functions deployed on the device.
| The list of network functions deployed on the device. | [
"The",
"list",
"of",
"network",
"functions",
"deployed",
"on",
"the",
"device",
"."
] | def network_functions(self) -> Sequence['outputs.SubResourceResponse']:
return pulumi.get(self, "network_functions") | [
"def",
"network_functions",
"(",
"self",
")",
"->",
"Sequence",
"[",
"'outputs.SubResourceResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"network_functions\"",
")"
] | The list of network functions deployed on the device. | [
"The",
"list",
"of",
"network",
"functions",
"deployed",
"on",
"the",
"device",
"."
] | [
"\"\"\"\n The list of network functions deployed on the device.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
7360130a08a503d47cfd208fc67186dc64884c27 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/storsimple/latest/get_manager.py | [
"Apache-2.0"
] | Python | etag | Optional[str] | def etag(self) -> Optional[str]:
"""
The etag of the manager.
"""
return pulumi.get(self, "etag") |
The etag of the manager.
| The etag of the manager. | [
"The",
"etag",
"of",
"the",
"manager",
"."
] | def etag(self) -> Optional[str]:
return pulumi.get(self, "etag") | [
"def",
"etag",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"etag\"",
")"
] | The etag of the manager. | [
"The",
"etag",
"of",
"the",
"manager",
"."
] | [
"\"\"\"\n The etag of the manager.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
7360130a08a503d47cfd208fc67186dc64884c27 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/storsimple/latest/get_manager.py | [
"Apache-2.0"
] | Python | provisioning_state | Optional[str] | def provisioning_state(self) -> Optional[str]:
"""
Specifies the state of the resource as it is getting provisioned. Value of "Succeeded" means the Manager was successfully created.
"""
return pulumi.get(self, "provisioning_state") |
Specifies the state of the resource as it is getting provisioned. Value of "Succeeded" means the Manager was successfully created.
| Specifies the state of the resource as it is getting provisioned. Value of "Succeeded" means the Manager was successfully created. | [
"Specifies",
"the",
"state",
"of",
"the",
"resource",
"as",
"it",
"is",
"getting",
"provisioned",
".",
"Value",
"of",
"\"",
"Succeeded",
"\"",
"means",
"the",
"Manager",
"was",
"successfully",
"created",
"."
] | def provisioning_state(self) -> Optional[str]:
return pulumi.get(self, "provisioning_state") | [
"def",
"provisioning_state",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"provisioning_state\"",
")"
] | Specifies the state of the resource as it is getting provisioned. | [
"Specifies",
"the",
"state",
"of",
"the",
"resource",
"as",
"it",
"is",
"getting",
"provisioned",
"."
] | [
"\"\"\"\n Specifies the state of the resource as it is getting provisioned. Value of \"Succeeded\" means the Manager was successfully created.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
737655e34a83e40f7ab74c1cb746aa7495efe18a | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/portal/tenant_configuration.py | [
"Apache-2.0"
] | Python | enforce_private_markdown_storage | pulumi.Output[Optional[bool]] | def enforce_private_markdown_storage(self) -> pulumi.Output[Optional[bool]]:
"""
When flag is set to true Markdown tile will require external storage configuration (URI). The inline content configuration will be prohibited.
"""
return pulumi.get(self, "enforce_private_markdown_storage") |
When flag is set to true Markdown tile will require external storage configuration (URI). The inline content configuration will be prohibited.
| When flag is set to true Markdown tile will require external storage configuration (URI). The inline content configuration will be prohibited. | [
"When",
"flag",
"is",
"set",
"to",
"true",
"Markdown",
"tile",
"will",
"require",
"external",
"storage",
"configuration",
"(",
"URI",
")",
".",
"The",
"inline",
"content",
"configuration",
"will",
"be",
"prohibited",
"."
] | def enforce_private_markdown_storage(self) -> pulumi.Output[Optional[bool]]:
return pulumi.get(self, "enforce_private_markdown_storage") | [
"def",
"enforce_private_markdown_storage",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"bool",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"enforce_private_markdown_storage\"",
")"
] | When flag is set to true Markdown tile will require external storage configuration (URI). | [
"When",
"flag",
"is",
"set",
"to",
"true",
"Markdown",
"tile",
"will",
"require",
"external",
"storage",
"configuration",
"(",
"URI",
")",
"."
] | [
"\"\"\"\n When flag is set to true Markdown tile will require external storage configuration (URI). The inline content configuration will be prohibited.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
02185beabc96fe4856d8e4e4dc2cf4b03bca1eee | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20170801/get_public_ip_address.py | [
"Apache-2.0"
] | Python | dns_settings | Optional['outputs.PublicIPAddressDnsSettingsResponse'] | def dns_settings(self) -> Optional['outputs.PublicIPAddressDnsSettingsResponse']:
"""
The FQDN of the DNS record associated with the public IP address.
"""
return pulumi.get(self, "dns_settings") |
The FQDN of the DNS record associated with the public IP address.
| The FQDN of the DNS record associated with the public IP address. | [
"The",
"FQDN",
"of",
"the",
"DNS",
"record",
"associated",
"with",
"the",
"public",
"IP",
"address",
"."
] | def dns_settings(self) -> Optional['outputs.PublicIPAddressDnsSettingsResponse']:
return pulumi.get(self, "dns_settings") | [
"def",
"dns_settings",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.PublicIPAddressDnsSettingsResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"dns_settings\"",
")"
] | The FQDN of the DNS record associated with the public IP address. | [
"The",
"FQDN",
"of",
"the",
"DNS",
"record",
"associated",
"with",
"the",
"public",
"IP",
"address",
"."
] | [
"\"\"\"\n The FQDN of the DNS record associated with the public IP address.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
02185beabc96fe4856d8e4e4dc2cf4b03bca1eee | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20170801/get_public_ip_address.py | [
"Apache-2.0"
] | Python | idle_timeout_in_minutes | Optional[int] | def idle_timeout_in_minutes(self) -> Optional[int]:
"""
The idle timeout of the public IP address.
"""
return pulumi.get(self, "idle_timeout_in_minutes") |
The idle timeout of the public IP address.
| The idle timeout of the public IP address. | [
"The",
"idle",
"timeout",
"of",
"the",
"public",
"IP",
"address",
"."
] | def idle_timeout_in_minutes(self) -> Optional[int]:
return pulumi.get(self, "idle_timeout_in_minutes") | [
"def",
"idle_timeout_in_minutes",
"(",
"self",
")",
"->",
"Optional",
"[",
"int",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"idle_timeout_in_minutes\"",
")"
] | The idle timeout of the public IP address. | [
"The",
"idle",
"timeout",
"of",
"the",
"public",
"IP",
"address",
"."
] | [
"\"\"\"\n The idle timeout of the public IP address.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
02185beabc96fe4856d8e4e4dc2cf4b03bca1eee | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20170801/get_public_ip_address.py | [
"Apache-2.0"
] | Python | ip_address | Optional[str] | def ip_address(self) -> Optional[str]:
"""
The IP address associated with the public IP address resource.
"""
return pulumi.get(self, "ip_address") |
The IP address associated with the public IP address resource.
| The IP address associated with the public IP address resource. | [
"The",
"IP",
"address",
"associated",
"with",
"the",
"public",
"IP",
"address",
"resource",
"."
] | def ip_address(self) -> Optional[str]:
return pulumi.get(self, "ip_address") | [
"def",
"ip_address",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"ip_address\"",
")"
] | The IP address associated with the public IP address resource. | [
"The",
"IP",
"address",
"associated",
"with",
"the",
"public",
"IP",
"address",
"resource",
"."
] | [
"\"\"\"\n The IP address associated with the public IP address resource.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
02185beabc96fe4856d8e4e4dc2cf4b03bca1eee | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20170801/get_public_ip_address.py | [
"Apache-2.0"
] | Python | ip_configuration | 'outputs.IPConfigurationResponse' | def ip_configuration(self) -> 'outputs.IPConfigurationResponse':
"""
The IP configuration associated with the public IP address.
"""
return pulumi.get(self, "ip_configuration") |
The IP configuration associated with the public IP address.
| The IP configuration associated with the public IP address. | [
"The",
"IP",
"configuration",
"associated",
"with",
"the",
"public",
"IP",
"address",
"."
] | def ip_configuration(self) -> 'outputs.IPConfigurationResponse':
return pulumi.get(self, "ip_configuration") | [
"def",
"ip_configuration",
"(",
"self",
")",
"->",
"'outputs.IPConfigurationResponse'",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"ip_configuration\"",
")"
] | The IP configuration associated with the public IP address. | [
"The",
"IP",
"configuration",
"associated",
"with",
"the",
"public",
"IP",
"address",
"."
] | [
"\"\"\"\n The IP configuration associated with the public IP address.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
02185beabc96fe4856d8e4e4dc2cf4b03bca1eee | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20170801/get_public_ip_address.py | [
"Apache-2.0"
] | Python | public_ip_address_version | Optional[str] | def public_ip_address_version(self) -> Optional[str]:
"""
The public IP address version. Possible values are: 'IPv4' and 'IPv6'.
"""
return pulumi.get(self, "public_ip_address_version") |
The public IP address version. Possible values are: 'IPv4' and 'IPv6'.
| The public IP address version. | [
"The",
"public",
"IP",
"address",
"version",
"."
] | def public_ip_address_version(self) -> Optional[str]:
return pulumi.get(self, "public_ip_address_version") | [
"def",
"public_ip_address_version",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"public_ip_address_version\"",
")"
] | The public IP address version. | [
"The",
"public",
"IP",
"address",
"version",
"."
] | [
"\"\"\"\n The public IP address version. Possible values are: 'IPv4' and 'IPv6'.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
02185beabc96fe4856d8e4e4dc2cf4b03bca1eee | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20170801/get_public_ip_address.py | [
"Apache-2.0"
] | Python | resource_guid | Optional[str] | def resource_guid(self) -> Optional[str]:
"""
The resource GUID property of the public IP resource.
"""
return pulumi.get(self, "resource_guid") |
The resource GUID property of the public IP resource.
| The resource GUID property of the public IP resource. | [
"The",
"resource",
"GUID",
"property",
"of",
"the",
"public",
"IP",
"resource",
"."
] | def resource_guid(self) -> Optional[str]:
return pulumi.get(self, "resource_guid") | [
"def",
"resource_guid",
"(",
"self",
")",
"->",
"Optional",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"resource_guid\"",
")"
] | The resource GUID property of the public IP resource. | [
"The",
"resource",
"GUID",
"property",
"of",
"the",
"public",
"IP",
"resource",
"."
] | [
"\"\"\"\n The resource GUID property of the public IP resource.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
02185beabc96fe4856d8e4e4dc2cf4b03bca1eee | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20170801/get_public_ip_address.py | [
"Apache-2.0"
] | Python | sku | Optional['outputs.PublicIPAddressSkuResponse'] | def sku(self) -> Optional['outputs.PublicIPAddressSkuResponse']:
"""
The public IP address SKU.
"""
return pulumi.get(self, "sku") |
The public IP address SKU.
| The public IP address SKU. | [
"The",
"public",
"IP",
"address",
"SKU",
"."
] | def sku(self) -> Optional['outputs.PublicIPAddressSkuResponse']:
return pulumi.get(self, "sku") | [
"def",
"sku",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.PublicIPAddressSkuResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"sku\"",
")"
] | The public IP address SKU. | [
"The",
"public",
"IP",
"address",
"SKU",
"."
] | [
"\"\"\"\n The public IP address SKU.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
02185beabc96fe4856d8e4e4dc2cf4b03bca1eee | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20170801/get_public_ip_address.py | [
"Apache-2.0"
] | Python | zones | Optional[Sequence[str]] | def zones(self) -> Optional[Sequence[str]]:
"""
A list of availability zones denoting the IP allocated for the resource needs to come from.
"""
return pulumi.get(self, "zones") |
A list of availability zones denoting the IP allocated for the resource needs to come from.
| A list of availability zones denoting the IP allocated for the resource needs to come from. | [
"A",
"list",
"of",
"availability",
"zones",
"denoting",
"the",
"IP",
"allocated",
"for",
"the",
"resource",
"needs",
"to",
"come",
"from",
"."
] | def zones(self) -> Optional[Sequence[str]]:
return pulumi.get(self, "zones") | [
"def",
"zones",
"(",
"self",
")",
"->",
"Optional",
"[",
"Sequence",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"zones\"",
")"
] | A list of availability zones denoting the IP allocated for the resource needs to come from. | [
"A",
"list",
"of",
"availability",
"zones",
"denoting",
"the",
"IP",
"allocated",
"for",
"the",
"resource",
"needs",
"to",
"come",
"from",
"."
] | [
"\"\"\"\n A list of availability zones denoting the IP allocated for the resource needs to come from.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0224aa6eeab64ca4af20db22babcaed0726e68c9 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/batchai/v20170901preview/cluster.py | [
"Apache-2.0"
] | Python | allocation_state | pulumi.Output[str] | def allocation_state(self) -> pulumi.Output[str]:
"""
Possible values are: steady and resizing. steady state indicates that the cluster is not resizing. There are no changes to the number of compute nodes in the cluster in progress. A cluster enters this state when it is created and when no operations a... |
Possible values are: steady and resizing. steady state indicates that the cluster is not resizing. There are no changes to the number of compute nodes in the cluster in progress. A cluster enters this state when it is created and when no operations are being performed on the cluster to change the number of com... | Possible values are: steady and resizing. steady state indicates that the cluster is not resizing. There are no changes to the number of compute nodes in the cluster in progress. A cluster enters this state when it is created and when no operations are being performed on the cluster to change the number of compute node... | [
"Possible",
"values",
"are",
":",
"steady",
"and",
"resizing",
".",
"steady",
"state",
"indicates",
"that",
"the",
"cluster",
"is",
"not",
"resizing",
".",
"There",
"are",
"no",
"changes",
"to",
"the",
"number",
"of",
"compute",
"nodes",
"in",
"the",
"clus... | def allocation_state(self) -> pulumi.Output[str]:
return pulumi.get(self, "allocation_state") | [
"def",
"allocation_state",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"str",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"allocation_state\"",
")"
] | Possible values are: steady and resizing. | [
"Possible",
"values",
"are",
":",
"steady",
"and",
"resizing",
"."
] | [
"\"\"\"\n Possible values are: steady and resizing. steady state indicates that the cluster is not resizing. There are no changes to the number of compute nodes in the cluster in progress. A cluster enters this state when it is created and when no operations are being performed on the cluster to change the n... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0224aa6eeab64ca4af20db22babcaed0726e68c9 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/batchai/v20170901preview/cluster.py | [
"Apache-2.0"
] | Python | errors | pulumi.Output[Optional[Sequence['outputs.BatchAIErrorResponse']]] | def errors(self) -> pulumi.Output[Optional[Sequence['outputs.BatchAIErrorResponse']]]:
"""
This element contains all the errors encountered by various compute nodes during node setup.
"""
return pulumi.get(self, "errors") |
This element contains all the errors encountered by various compute nodes during node setup.
| This element contains all the errors encountered by various compute nodes during node setup. | [
"This",
"element",
"contains",
"all",
"the",
"errors",
"encountered",
"by",
"various",
"compute",
"nodes",
"during",
"node",
"setup",
"."
] | def errors(self) -> pulumi.Output[Optional[Sequence['outputs.BatchAIErrorResponse']]]:
return pulumi.get(self, "errors") | [
"def",
"errors",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"Sequence",
"[",
"'outputs.BatchAIErrorResponse'",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"errors\"",
")"
] | This element contains all the errors encountered by various compute nodes during node setup. | [
"This",
"element",
"contains",
"all",
"the",
"errors",
"encountered",
"by",
"various",
"compute",
"nodes",
"during",
"node",
"setup",
"."
] | [
"\"\"\"\n This element contains all the errors encountered by various compute nodes during node setup.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0224aa6eeab64ca4af20db22babcaed0726e68c9 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/batchai/v20170901preview/cluster.py | [
"Apache-2.0"
] | Python | node_setup | pulumi.Output[Optional['outputs.NodeSetupResponse']] | def node_setup(self) -> pulumi.Output[Optional['outputs.NodeSetupResponse']]:
"""
Use this to prepare the VM. NOTE: The volumes specified in mountVolumes are mounted first and then the setupTask is run. Therefore the setup task can use local mountPaths in its execution.
"""
return pulumi... |
Use this to prepare the VM. NOTE: The volumes specified in mountVolumes are mounted first and then the setupTask is run. Therefore the setup task can use local mountPaths in its execution.
| Use this to prepare the VM. NOTE: The volumes specified in mountVolumes are mounted first and then the setupTask is run. Therefore the setup task can use local mountPaths in its execution. | [
"Use",
"this",
"to",
"prepare",
"the",
"VM",
".",
"NOTE",
":",
"The",
"volumes",
"specified",
"in",
"mountVolumes",
"are",
"mounted",
"first",
"and",
"then",
"the",
"setupTask",
"is",
"run",
".",
"Therefore",
"the",
"setup",
"task",
"can",
"use",
"local",
... | def node_setup(self) -> pulumi.Output[Optional['outputs.NodeSetupResponse']]:
return pulumi.get(self, "node_setup") | [
"def",
"node_setup",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"'outputs.NodeSetupResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"node_setup\"",
")"
] | Use this to prepare the VM. | [
"Use",
"this",
"to",
"prepare",
"the",
"VM",
"."
] | [
"\"\"\"\n Use this to prepare the VM. NOTE: The volumes specified in mountVolumes are mounted first and then the setupTask is run. Therefore the setup task can use local mountPaths in its execution.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0224aa6eeab64ca4af20db22babcaed0726e68c9 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/batchai/v20170901preview/cluster.py | [
"Apache-2.0"
] | Python | node_state_counts | pulumi.Output['outputs.NodeStateCountsResponse'] | def node_state_counts(self) -> pulumi.Output['outputs.NodeStateCountsResponse']:
"""
Counts of various compute node states on the cluster.
"""
return pulumi.get(self, "node_state_counts") |
Counts of various compute node states on the cluster.
| Counts of various compute node states on the cluster. | [
"Counts",
"of",
"various",
"compute",
"node",
"states",
"on",
"the",
"cluster",
"."
] | def node_state_counts(self) -> pulumi.Output['outputs.NodeStateCountsResponse']:
return pulumi.get(self, "node_state_counts") | [
"def",
"node_state_counts",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"'outputs.NodeStateCountsResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"node_state_counts\"",
")"
] | Counts of various compute node states on the cluster. | [
"Counts",
"of",
"various",
"compute",
"node",
"states",
"on",
"the",
"cluster",
"."
] | [
"\"\"\"\n Counts of various compute node states on the cluster.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0224aa6eeab64ca4af20db22babcaed0726e68c9 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/batchai/v20170901preview/cluster.py | [
"Apache-2.0"
] | Python | scale_settings | pulumi.Output[Optional['outputs.ScaleSettingsResponse']] | def scale_settings(self) -> pulumi.Output[Optional['outputs.ScaleSettingsResponse']]:
"""
At least one of manual or autoScale settings must be specified. Only one of manual or autoScale settings can be specified. If autoScale settings are specified, the system automatically scales the cluster up and dow... |
At least one of manual or autoScale settings must be specified. Only one of manual or autoScale settings can be specified. If autoScale settings are specified, the system automatically scales the cluster up and down (within the supplied limits) based on the pending jobs on the cluster.
| At least one of manual or autoScale settings must be specified. Only one of manual or autoScale settings can be specified. If autoScale settings are specified, the system automatically scales the cluster up and down (within the supplied limits) based on the pending jobs on the cluster. | [
"At",
"least",
"one",
"of",
"manual",
"or",
"autoScale",
"settings",
"must",
"be",
"specified",
".",
"Only",
"one",
"of",
"manual",
"or",
"autoScale",
"settings",
"can",
"be",
"specified",
".",
"If",
"autoScale",
"settings",
"are",
"specified",
"the",
"syste... | def scale_settings(self) -> pulumi.Output[Optional['outputs.ScaleSettingsResponse']]:
return pulumi.get(self, "scale_settings") | [
"def",
"scale_settings",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"'outputs.ScaleSettingsResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"scale_settings\"",
")"
] | At least one of manual or autoScale settings must be specified. | [
"At",
"least",
"one",
"of",
"manual",
"or",
"autoScale",
"settings",
"must",
"be",
"specified",
"."
] | [
"\"\"\"\n At least one of manual or autoScale settings must be specified. Only one of manual or autoScale settings can be specified. If autoScale settings are specified, the system automatically scales the cluster up and down (within the supplied limits) based on the pending jobs on the cluster.\n \"\... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0224aa6eeab64ca4af20db22babcaed0726e68c9 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/batchai/v20170901preview/cluster.py | [
"Apache-2.0"
] | Python | subnet | pulumi.Output[Optional['outputs.ResourceIdResponse']] | def subnet(self) -> pulumi.Output[Optional['outputs.ResourceIdResponse']]:
"""
Represents a resource ID. For example, for a subnet, it is the resource URL for the subnet.
"""
return pulumi.get(self, "subnet") |
Represents a resource ID. For example, for a subnet, it is the resource URL for the subnet.
| Represents a resource ID. For example, for a subnet, it is the resource URL for the subnet. | [
"Represents",
"a",
"resource",
"ID",
".",
"For",
"example",
"for",
"a",
"subnet",
"it",
"is",
"the",
"resource",
"URL",
"for",
"the",
"subnet",
"."
] | def subnet(self) -> pulumi.Output[Optional['outputs.ResourceIdResponse']]:
return pulumi.get(self, "subnet") | [
"def",
"subnet",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"'outputs.ResourceIdResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"subnet\"",
")"
] | Represents a resource ID. | [
"Represents",
"a",
"resource",
"ID",
"."
] | [
"\"\"\"\n Represents a resource ID. For example, for a subnet, it is the resource URL for the subnet.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0224aa6eeab64ca4af20db22babcaed0726e68c9 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/batchai/v20170901preview/cluster.py | [
"Apache-2.0"
] | Python | user_account_settings | pulumi.Output[Optional['outputs.UserAccountSettingsResponse']] | def user_account_settings(self) -> pulumi.Output[Optional['outputs.UserAccountSettingsResponse']]:
"""
Settings for user account that gets created on each on the nodes of a cluster.
"""
return pulumi.get(self, "user_account_settings") |
Settings for user account that gets created on each on the nodes of a cluster.
| Settings for user account that gets created on each on the nodes of a cluster. | [
"Settings",
"for",
"user",
"account",
"that",
"gets",
"created",
"on",
"each",
"on",
"the",
"nodes",
"of",
"a",
"cluster",
"."
] | def user_account_settings(self) -> pulumi.Output[Optional['outputs.UserAccountSettingsResponse']]:
return pulumi.get(self, "user_account_settings") | [
"def",
"user_account_settings",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"'outputs.UserAccountSettingsResponse'",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"user_account_settings\"",
")"
] | Settings for user account that gets created on each on the nodes of a cluster. | [
"Settings",
"for",
"user",
"account",
"that",
"gets",
"created",
"on",
"each",
"on",
"the",
"nodes",
"of",
"a",
"cluster",
"."
] | [
"\"\"\"\n Settings for user account that gets created on each on the nodes of a cluster.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0224aa6eeab64ca4af20db22babcaed0726e68c9 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/batchai/v20170901preview/cluster.py | [
"Apache-2.0"
] | Python | vm_priority | pulumi.Output[Optional[str]] | def vm_priority(self) -> pulumi.Output[Optional[str]]:
"""
The default value is dedicated. The node can get preempted while the task is running if lowpriority is chosen. This is best suited if the workload is checkpointing and can be restarted.
"""
return pulumi.get(self, "vm_priority") |
The default value is dedicated. The node can get preempted while the task is running if lowpriority is chosen. This is best suited if the workload is checkpointing and can be restarted.
| The default value is dedicated. The node can get preempted while the task is running if lowpriority is chosen. This is best suited if the workload is checkpointing and can be restarted. | [
"The",
"default",
"value",
"is",
"dedicated",
".",
"The",
"node",
"can",
"get",
"preempted",
"while",
"the",
"task",
"is",
"running",
"if",
"lowpriority",
"is",
"chosen",
".",
"This",
"is",
"best",
"suited",
"if",
"the",
"workload",
"is",
"checkpointing",
... | def vm_priority(self) -> pulumi.Output[Optional[str]]:
return pulumi.get(self, "vm_priority") | [
"def",
"vm_priority",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"vm_priority\"",
")"
] | The default value is dedicated. | [
"The",
"default",
"value",
"is",
"dedicated",
"."
] | [
"\"\"\"\n The default value is dedicated. The node can get preempted while the task is running if lowpriority is chosen. This is best suited if the workload is checkpointing and can be restarted.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0224aa6eeab64ca4af20db22babcaed0726e68c9 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/batchai/v20170901preview/cluster.py | [
"Apache-2.0"
] | Python | vm_size | pulumi.Output[Optional[str]] | def vm_size(self) -> pulumi.Output[Optional[str]]:
"""
All virtual machines in a cluster are the same size. For information about available VM sizes for clusters using images from the Virtual Machines Marketplace (see Sizes for Virtual Machines (Linux) or Sizes for Virtual Machines (Windows). Batch AI s... |
All virtual machines in a cluster are the same size. For information about available VM sizes for clusters using images from the Virtual Machines Marketplace (see Sizes for Virtual Machines (Linux) or Sizes for Virtual Machines (Windows). Batch AI service supports all Azure VM sizes except STANDARD_A0 and thos... | All virtual machines in a cluster are the same size. For information about available VM sizes for clusters using images from the Virtual Machines Marketplace or Sizes for Virtual Machines (Windows). Batch AI service supports all Azure VM sizes except STANDARD_A0 and those with premium storage (STANDARD_GS, STANDARD_DS... | [
"All",
"virtual",
"machines",
"in",
"a",
"cluster",
"are",
"the",
"same",
"size",
".",
"For",
"information",
"about",
"available",
"VM",
"sizes",
"for",
"clusters",
"using",
"images",
"from",
"the",
"Virtual",
"Machines",
"Marketplace",
"or",
"Sizes",
"for",
... | def vm_size(self) -> pulumi.Output[Optional[str]]:
return pulumi.get(self, "vm_size") | [
"def",
"vm_size",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"vm_size\"",
")"
] | All virtual machines in a cluster are the same size. | [
"All",
"virtual",
"machines",
"in",
"a",
"cluster",
"are",
"the",
"same",
"size",
"."
] | [
"\"\"\"\n All virtual machines in a cluster are the same size. For information about available VM sizes for clusters using images from the Virtual Machines Marketplace (see Sizes for Virtual Machines (Linux) or Sizes for Virtual Machines (Windows). Batch AI service supports all Azure VM sizes except STANDARD... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0229d41a49db20b3f3ae7c0a030eddb9c2449c56 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20160901/load_balancer.py | [
"Apache-2.0"
] | Python | backend_address_pools | pulumi.Output[Optional[Sequence['outputs.BackendAddressPoolResponse']]] | def backend_address_pools(self) -> pulumi.Output[Optional[Sequence['outputs.BackendAddressPoolResponse']]]:
"""
Collection of backend address pools used by a load balancer
"""
return pulumi.get(self, "backend_address_pools") |
Collection of backend address pools used by a load balancer
| Collection of backend address pools used by a load balancer | [
"Collection",
"of",
"backend",
"address",
"pools",
"used",
"by",
"a",
"load",
"balancer"
] | def backend_address_pools(self) -> pulumi.Output[Optional[Sequence['outputs.BackendAddressPoolResponse']]]:
return pulumi.get(self, "backend_address_pools") | [
"def",
"backend_address_pools",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"Sequence",
"[",
"'outputs.BackendAddressPoolResponse'",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"backend_address_pools\"",
")"... | Collection of backend address pools used by a load balancer | [
"Collection",
"of",
"backend",
"address",
"pools",
"used",
"by",
"a",
"load",
"balancer"
] | [
"\"\"\"\n Collection of backend address pools used by a load balancer\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0229d41a49db20b3f3ae7c0a030eddb9c2449c56 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20160901/load_balancer.py | [
"Apache-2.0"
] | Python | frontend_ip_configurations | pulumi.Output[Optional[Sequence['outputs.FrontendIPConfigurationResponse']]] | def frontend_ip_configurations(self) -> pulumi.Output[Optional[Sequence['outputs.FrontendIPConfigurationResponse']]]:
"""
Object representing the frontend IPs to be used for the load balancer
"""
return pulumi.get(self, "frontend_ip_configurations") |
Object representing the frontend IPs to be used for the load balancer
| Object representing the frontend IPs to be used for the load balancer | [
"Object",
"representing",
"the",
"frontend",
"IPs",
"to",
"be",
"used",
"for",
"the",
"load",
"balancer"
] | def frontend_ip_configurations(self) -> pulumi.Output[Optional[Sequence['outputs.FrontendIPConfigurationResponse']]]:
return pulumi.get(self, "frontend_ip_configurations") | [
"def",
"frontend_ip_configurations",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"Sequence",
"[",
"'outputs.FrontendIPConfigurationResponse'",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"frontend_ip_configura... | Object representing the frontend IPs to be used for the load balancer | [
"Object",
"representing",
"the",
"frontend",
"IPs",
"to",
"be",
"used",
"for",
"the",
"load",
"balancer"
] | [
"\"\"\"\n Object representing the frontend IPs to be used for the load balancer\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0229d41a49db20b3f3ae7c0a030eddb9c2449c56 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20160901/load_balancer.py | [
"Apache-2.0"
] | Python | inbound_nat_pools | pulumi.Output[Optional[Sequence['outputs.InboundNatPoolResponse']]] | def inbound_nat_pools(self) -> pulumi.Output[Optional[Sequence['outputs.InboundNatPoolResponse']]]:
"""
Defines an external port range for inbound NAT to a single backend port on NICs associated with a load balancer. Inbound NAT rules are created automatically for each NIC associated with the Load Balan... |
Defines an external port range for inbound NAT to a single backend port on NICs associated with a load balancer. Inbound NAT rules are created automatically for each NIC associated with the Load Balancer using an external port from this range. Defining an Inbound NAT pool on your Load Balancer is mutually excl... | Defines an external port range for inbound NAT to a single backend port on NICs associated with a load balancer. Inbound NAT rules are created automatically for each NIC associated with the Load Balancer using an external port from this range. Defining an Inbound NAT pool on your Load Balancer is mutually exclusive wit... | [
"Defines",
"an",
"external",
"port",
"range",
"for",
"inbound",
"NAT",
"to",
"a",
"single",
"backend",
"port",
"on",
"NICs",
"associated",
"with",
"a",
"load",
"balancer",
".",
"Inbound",
"NAT",
"rules",
"are",
"created",
"automatically",
"for",
"each",
"NIC... | def inbound_nat_pools(self) -> pulumi.Output[Optional[Sequence['outputs.InboundNatPoolResponse']]]:
return pulumi.get(self, "inbound_nat_pools") | [
"def",
"inbound_nat_pools",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"Sequence",
"[",
"'outputs.InboundNatPoolResponse'",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"inbound_nat_pools\"",
")"
] | Defines an external port range for inbound NAT to a single backend port on NICs associated with a load balancer. | [
"Defines",
"an",
"external",
"port",
"range",
"for",
"inbound",
"NAT",
"to",
"a",
"single",
"backend",
"port",
"on",
"NICs",
"associated",
"with",
"a",
"load",
"balancer",
"."
] | [
"\"\"\"\n Defines an external port range for inbound NAT to a single backend port on NICs associated with a load balancer. Inbound NAT rules are created automatically for each NIC associated with the Load Balancer using an external port from this range. Defining an Inbound NAT pool on your Load Balancer is m... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0229d41a49db20b3f3ae7c0a030eddb9c2449c56 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20160901/load_balancer.py | [
"Apache-2.0"
] | Python | inbound_nat_rules | pulumi.Output[Optional[Sequence['outputs.InboundNatRuleResponse']]] | def inbound_nat_rules(self) -> pulumi.Output[Optional[Sequence['outputs.InboundNatRuleResponse']]]:
"""
Collection of inbound NAT Rules used by a load balancer. Defining inbound NAT rules on your load balancer is mutually exclusive with defining an inbound NAT pool. Inbound NAT pools are referenced from... |
Collection of inbound NAT Rules used by a load balancer. Defining inbound NAT rules on your load balancer is mutually exclusive with defining an inbound NAT pool. Inbound NAT pools are referenced from virtual machine scale sets. NICs that are associated with individual virtual machines cannot reference an Inbo... | Collection of inbound NAT Rules used by a load balancer. Defining inbound NAT rules on your load balancer is mutually exclusive with defining an inbound NAT pool. Inbound NAT pools are referenced from virtual machine scale sets. NICs that are associated with individual virtual machines cannot reference an Inbound NAT p... | [
"Collection",
"of",
"inbound",
"NAT",
"Rules",
"used",
"by",
"a",
"load",
"balancer",
".",
"Defining",
"inbound",
"NAT",
"rules",
"on",
"your",
"load",
"balancer",
"is",
"mutually",
"exclusive",
"with",
"defining",
"an",
"inbound",
"NAT",
"pool",
".",
"Inbou... | def inbound_nat_rules(self) -> pulumi.Output[Optional[Sequence['outputs.InboundNatRuleResponse']]]:
return pulumi.get(self, "inbound_nat_rules") | [
"def",
"inbound_nat_rules",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"Sequence",
"[",
"'outputs.InboundNatRuleResponse'",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"inbound_nat_rules\"",
")"
] | Collection of inbound NAT Rules used by a load balancer. | [
"Collection",
"of",
"inbound",
"NAT",
"Rules",
"used",
"by",
"a",
"load",
"balancer",
"."
] | [
"\"\"\"\n Collection of inbound NAT Rules used by a load balancer. Defining inbound NAT rules on your load balancer is mutually exclusive with defining an inbound NAT pool. Inbound NAT pools are referenced from virtual machine scale sets. NICs that are associated with individual virtual machines cannot refer... | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0229d41a49db20b3f3ae7c0a030eddb9c2449c56 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20160901/load_balancer.py | [
"Apache-2.0"
] | Python | load_balancing_rules | pulumi.Output[Optional[Sequence['outputs.LoadBalancingRuleResponse']]] | def load_balancing_rules(self) -> pulumi.Output[Optional[Sequence['outputs.LoadBalancingRuleResponse']]]:
"""
Object collection representing the load balancing rules Gets the provisioning
"""
return pulumi.get(self, "load_balancing_rules") |
Object collection representing the load balancing rules Gets the provisioning
| Object collection representing the load balancing rules Gets the provisioning | [
"Object",
"collection",
"representing",
"the",
"load",
"balancing",
"rules",
"Gets",
"the",
"provisioning"
] | def load_balancing_rules(self) -> pulumi.Output[Optional[Sequence['outputs.LoadBalancingRuleResponse']]]:
return pulumi.get(self, "load_balancing_rules") | [
"def",
"load_balancing_rules",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"Sequence",
"[",
"'outputs.LoadBalancingRuleResponse'",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"load_balancing_rules\"",
")"
] | Object collection representing the load balancing rules Gets the provisioning | [
"Object",
"collection",
"representing",
"the",
"load",
"balancing",
"rules",
"Gets",
"the",
"provisioning"
] | [
"\"\"\"\n Object collection representing the load balancing rules Gets the provisioning \n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0229d41a49db20b3f3ae7c0a030eddb9c2449c56 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20160901/load_balancer.py | [
"Apache-2.0"
] | Python | probes | pulumi.Output[Optional[Sequence['outputs.ProbeResponse']]] | def probes(self) -> pulumi.Output[Optional[Sequence['outputs.ProbeResponse']]]:
"""
Collection of probe objects used in the load balancer
"""
return pulumi.get(self, "probes") |
Collection of probe objects used in the load balancer
| Collection of probe objects used in the load balancer | [
"Collection",
"of",
"probe",
"objects",
"used",
"in",
"the",
"load",
"balancer"
] | def probes(self) -> pulumi.Output[Optional[Sequence['outputs.ProbeResponse']]]:
return pulumi.get(self, "probes") | [
"def",
"probes",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"Sequence",
"[",
"'outputs.ProbeResponse'",
"]",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"probes\"",
")"
] | Collection of probe objects used in the load balancer | [
"Collection",
"of",
"probe",
"objects",
"used",
"in",
"the",
"load",
"balancer"
] | [
"\"\"\"\n Collection of probe objects used in the load balancer\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0229d41a49db20b3f3ae7c0a030eddb9c2449c56 | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/network/v20160901/load_balancer.py | [
"Apache-2.0"
] | Python | resource_guid | pulumi.Output[Optional[str]] | def resource_guid(self) -> pulumi.Output[Optional[str]]:
"""
The resource GUID property of the load balancer resource.
"""
return pulumi.get(self, "resource_guid") |
The resource GUID property of the load balancer resource.
| The resource GUID property of the load balancer resource. | [
"The",
"resource",
"GUID",
"property",
"of",
"the",
"load",
"balancer",
"resource",
"."
] | def resource_guid(self) -> pulumi.Output[Optional[str]]:
return pulumi.get(self, "resource_guid") | [
"def",
"resource_guid",
"(",
"self",
")",
"->",
"pulumi",
".",
"Output",
"[",
"Optional",
"[",
"str",
"]",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"resource_guid\"",
")"
] | The resource GUID property of the load balancer resource. | [
"The",
"resource",
"GUID",
"property",
"of",
"the",
"load",
"balancer",
"resource",
"."
] | [
"\"\"\"\n The resource GUID property of the load balancer resource.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0236402b2491bd7697477cd29bef672748ac3fdc | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/containerinstance/v20210301/get_container_group.py | [
"Apache-2.0"
] | Python | containers | Sequence['outputs.ContainerResponse'] | def containers(self) -> Sequence['outputs.ContainerResponse']:
"""
The containers within the container group.
"""
return pulumi.get(self, "containers") |
The containers within the container group.
| The containers within the container group. | [
"The",
"containers",
"within",
"the",
"container",
"group",
"."
] | def containers(self) -> Sequence['outputs.ContainerResponse']:
return pulumi.get(self, "containers") | [
"def",
"containers",
"(",
"self",
")",
"->",
"Sequence",
"[",
"'outputs.ContainerResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"containers\"",
")"
] | The containers within the container group. | [
"The",
"containers",
"within",
"the",
"container",
"group",
"."
] | [
"\"\"\"\n The containers within the container group.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0236402b2491bd7697477cd29bef672748ac3fdc | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/containerinstance/v20210301/get_container_group.py | [
"Apache-2.0"
] | Python | diagnostics | Optional['outputs.ContainerGroupDiagnosticsResponse'] | def diagnostics(self) -> Optional['outputs.ContainerGroupDiagnosticsResponse']:
"""
The diagnostic information for a container group.
"""
return pulumi.get(self, "diagnostics") |
The diagnostic information for a container group.
| The diagnostic information for a container group. | [
"The",
"diagnostic",
"information",
"for",
"a",
"container",
"group",
"."
] | def diagnostics(self) -> Optional['outputs.ContainerGroupDiagnosticsResponse']:
return pulumi.get(self, "diagnostics") | [
"def",
"diagnostics",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.ContainerGroupDiagnosticsResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"diagnostics\"",
")"
] | The diagnostic information for a container group. | [
"The",
"diagnostic",
"information",
"for",
"a",
"container",
"group",
"."
] | [
"\"\"\"\n The diagnostic information for a container group.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0236402b2491bd7697477cd29bef672748ac3fdc | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/containerinstance/v20210301/get_container_group.py | [
"Apache-2.0"
] | Python | dns_config | Optional['outputs.DnsConfigurationResponse'] | def dns_config(self) -> Optional['outputs.DnsConfigurationResponse']:
"""
The DNS config information for a container group.
"""
return pulumi.get(self, "dns_config") |
The DNS config information for a container group.
| The DNS config information for a container group. | [
"The",
"DNS",
"config",
"information",
"for",
"a",
"container",
"group",
"."
] | def dns_config(self) -> Optional['outputs.DnsConfigurationResponse']:
return pulumi.get(self, "dns_config") | [
"def",
"dns_config",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.DnsConfigurationResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"dns_config\"",
")"
] | The DNS config information for a container group. | [
"The",
"DNS",
"config",
"information",
"for",
"a",
"container",
"group",
"."
] | [
"\"\"\"\n The DNS config information for a container group.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
0236402b2491bd7697477cd29bef672748ac3fdc | pulumi/pulumi-azure-nextgen | sdk/python/pulumi_azure_nextgen/containerinstance/v20210301/get_container_group.py | [
"Apache-2.0"
] | Python | encryption_properties | Optional['outputs.EncryptionPropertiesResponse'] | def encryption_properties(self) -> Optional['outputs.EncryptionPropertiesResponse']:
"""
The encryption properties for a container group.
"""
return pulumi.get(self, "encryption_properties") |
The encryption properties for a container group.
| The encryption properties for a container group. | [
"The",
"encryption",
"properties",
"for",
"a",
"container",
"group",
"."
] | def encryption_properties(self) -> Optional['outputs.EncryptionPropertiesResponse']:
return pulumi.get(self, "encryption_properties") | [
"def",
"encryption_properties",
"(",
"self",
")",
"->",
"Optional",
"[",
"'outputs.EncryptionPropertiesResponse'",
"]",
":",
"return",
"pulumi",
".",
"get",
"(",
"self",
",",
"\"encryption_properties\"",
")"
] | The encryption properties for a container group. | [
"The",
"encryption",
"properties",
"for",
"a",
"container",
"group",
"."
] | [
"\"\"\"\n The encryption properties for a container group.\n \"\"\""
] | [
{
"param": "self",
"type": null
}
] | {
"returns": [],
"raises": [],
"params": [
{
"identifier": "self",
"type": null,
"docstring": null,
"docstring_tokens": [],
"default": null,
"is_optional": null
}
],
"outlier_params": [],
"others": []
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.