diff --git a/sdk/dotnet/ActionsOrganizationPermissions.cs b/sdk/dotnet/ActionsOrganizationPermissions.cs index 90a06a69..22219c8c 100644 --- a/sdk/dotnet/ActionsOrganizationPermissions.cs +++ b/sdk/dotnet/ActionsOrganizationPermissions.cs @@ -53,10 +53,10 @@ namespace Pulumi.Github /// /// ## Import /// - /// This resource can be imported using the ID of the GitHub organization: + /// This resource can be imported using the name of the GitHub organization: /// /// ```sh - /// $ pulumi import github:index/actionsOrganizationPermissions:ActionsOrganizationPermissions test <github_organization_name> + /// $ pulumi import github:index/actionsOrganizationPermissions:ActionsOrganizationPermissions test github_organization_name /// ``` /// [GithubResourceType("github:index/actionsOrganizationPermissions:ActionsOrganizationPermissions")] diff --git a/sdk/dotnet/ActionsRepositoryAccessLevel.cs b/sdk/dotnet/ActionsRepositoryAccessLevel.cs index 307ff39c..30ec070e 100644 --- a/sdk/dotnet/ActionsRepositoryAccessLevel.cs +++ b/sdk/dotnet/ActionsRepositoryAccessLevel.cs @@ -42,7 +42,7 @@ namespace Pulumi.Github /// This resource can be imported using the name of the GitHub repository: /// /// ```sh - /// $ pulumi import github:index/actionsRepositoryAccessLevel:ActionsRepositoryAccessLevel test <github_repository_name> + /// $ pulumi import github:index/actionsRepositoryAccessLevel:ActionsRepositoryAccessLevel test my-repository /// ``` /// [GithubResourceType("github:index/actionsRepositoryAccessLevel:ActionsRepositoryAccessLevel")] diff --git a/sdk/dotnet/CodespacesSecret.cs b/sdk/dotnet/CodespacesSecret.cs index cf9c32a6..f7d78f8b 100644 --- a/sdk/dotnet/CodespacesSecret.cs +++ b/sdk/dotnet/CodespacesSecret.cs @@ -47,7 +47,7 @@ namespace Pulumi.Github /// This resource can be imported using an ID made up of the `repository` and `secret_name`: /// /// ```sh - /// $ pulumi import github:index/codespacesSecret:CodespacesSecret example_secret <repository>/<secret_name> + /// $ pulumi import github:index/codespacesSecret:CodespacesSecret example_secret example_repository/example_secret_name /// ``` /// NOTEthe implementation is limited in that it won't fetch the value of the `plaintext_value` or `encrypted_value` fields when importing. You may need to ignore changes for these as a workaround. /// diff --git a/sdk/go/github/actionsOrganizationPermissions.go b/sdk/go/github/actionsOrganizationPermissions.go index a944aa9c..06cc494b 100644 --- a/sdk/go/github/actionsOrganizationPermissions.go +++ b/sdk/go/github/actionsOrganizationPermissions.go @@ -62,11 +62,11 @@ import ( // // ## Import // -// This resource can be imported using the ID of the GitHub organization: +// This resource can be imported using the name of the GitHub organization: // // ```sh // -// $ pulumi import github:index/actionsOrganizationPermissions:ActionsOrganizationPermissions test +// $ pulumi import github:index/actionsOrganizationPermissions:ActionsOrganizationPermissions test github_organization_name // // ``` type ActionsOrganizationPermissions struct { diff --git a/sdk/go/github/actionsRepositoryAccessLevel.go b/sdk/go/github/actionsRepositoryAccessLevel.go index 99f6b32d..e6d68769 100644 --- a/sdk/go/github/actionsRepositoryAccessLevel.go +++ b/sdk/go/github/actionsRepositoryAccessLevel.go @@ -55,7 +55,7 @@ import ( // // ```sh // -// $ pulumi import github:index/actionsRepositoryAccessLevel:ActionsRepositoryAccessLevel test +// $ pulumi import github:index/actionsRepositoryAccessLevel:ActionsRepositoryAccessLevel test my-repository // // ``` type ActionsRepositoryAccessLevel struct { diff --git a/sdk/go/github/codespacesSecret.go b/sdk/go/github/codespacesSecret.go index 3c8aa50a..7cf2d44b 100644 --- a/sdk/go/github/codespacesSecret.go +++ b/sdk/go/github/codespacesSecret.go @@ -61,7 +61,7 @@ import ( // // ```sh // -// $ pulumi import github:index/codespacesSecret:CodespacesSecret example_secret / +// $ pulumi import github:index/codespacesSecret:CodespacesSecret example_secret example_repository/example_secret_name // // ``` // diff --git a/sdk/java/src/main/java/com/pulumi/github/ActionsOrganizationPermissions.java b/sdk/java/src/main/java/com/pulumi/github/ActionsOrganizationPermissions.java index 6c4d0086..6845fa8e 100644 --- a/sdk/java/src/main/java/com/pulumi/github/ActionsOrganizationPermissions.java +++ b/sdk/java/src/main/java/com/pulumi/github/ActionsOrganizationPermissions.java @@ -68,10 +68,10 @@ * * ## Import * - * This resource can be imported using the ID of the GitHub organization: + * This resource can be imported using the name of the GitHub organization: * * ```sh - * $ pulumi import github:index/actionsOrganizationPermissions:ActionsOrganizationPermissions test <github_organization_name> + * $ pulumi import github:index/actionsOrganizationPermissions:ActionsOrganizationPermissions test github_organization_name * ``` * */ diff --git a/sdk/java/src/main/java/com/pulumi/github/ActionsRepositoryAccessLevel.java b/sdk/java/src/main/java/com/pulumi/github/ActionsRepositoryAccessLevel.java index d87cb6a4..038101ec 100644 --- a/sdk/java/src/main/java/com/pulumi/github/ActionsRepositoryAccessLevel.java +++ b/sdk/java/src/main/java/com/pulumi/github/ActionsRepositoryAccessLevel.java @@ -59,7 +59,7 @@ * This resource can be imported using the name of the GitHub repository: * * ```sh - * $ pulumi import github:index/actionsRepositoryAccessLevel:ActionsRepositoryAccessLevel test <github_repository_name> + * $ pulumi import github:index/actionsRepositoryAccessLevel:ActionsRepositoryAccessLevel test my-repository * ``` * */ diff --git a/sdk/java/src/main/java/com/pulumi/github/CodespacesSecret.java b/sdk/java/src/main/java/com/pulumi/github/CodespacesSecret.java index fcdbea61..153cc8f7 100644 --- a/sdk/java/src/main/java/com/pulumi/github/CodespacesSecret.java +++ b/sdk/java/src/main/java/com/pulumi/github/CodespacesSecret.java @@ -65,7 +65,7 @@ * This resource can be imported using an ID made up of the `repository` and `secret_name`: * * ```sh - * $ pulumi import github:index/codespacesSecret:CodespacesSecret example_secret <repository>/<secret_name> + * $ pulumi import github:index/codespacesSecret:CodespacesSecret example_secret example_repository/example_secret_name * ``` * NOTEthe implementation is limited in that it won't fetch the value of the `plaintext_value` or `encrypted_value` fields when importing. You may need to ignore changes for these as a workaround. * diff --git a/sdk/nodejs/actionsOrganizationPermissions.ts b/sdk/nodejs/actionsOrganizationPermissions.ts index 384e9a91..a999b4de 100644 --- a/sdk/nodejs/actionsOrganizationPermissions.ts +++ b/sdk/nodejs/actionsOrganizationPermissions.ts @@ -36,10 +36,10 @@ import * as utilities from "./utilities"; * * ## Import * - * This resource can be imported using the ID of the GitHub organization: + * This resource can be imported using the name of the GitHub organization: * * ```sh - * $ pulumi import github:index/actionsOrganizationPermissions:ActionsOrganizationPermissions test + * $ pulumi import github:index/actionsOrganizationPermissions:ActionsOrganizationPermissions test github_organization_name * ``` */ export class ActionsOrganizationPermissions extends pulumi.CustomResource { diff --git a/sdk/nodejs/actionsRepositoryAccessLevel.ts b/sdk/nodejs/actionsRepositoryAccessLevel.ts index 3b98a647..bae7a347 100644 --- a/sdk/nodejs/actionsRepositoryAccessLevel.ts +++ b/sdk/nodejs/actionsRepositoryAccessLevel.ts @@ -26,7 +26,7 @@ import * as utilities from "./utilities"; * This resource can be imported using the name of the GitHub repository: * * ```sh - * $ pulumi import github:index/actionsRepositoryAccessLevel:ActionsRepositoryAccessLevel test + * $ pulumi import github:index/actionsRepositoryAccessLevel:ActionsRepositoryAccessLevel test my-repository * ``` */ export class ActionsRepositoryAccessLevel extends pulumi.CustomResource { diff --git a/sdk/nodejs/codespacesSecret.ts b/sdk/nodejs/codespacesSecret.ts index 9e7c3cf6..ea1f313c 100644 --- a/sdk/nodejs/codespacesSecret.ts +++ b/sdk/nodejs/codespacesSecret.ts @@ -31,7 +31,7 @@ import * as utilities from "./utilities"; * This resource can be imported using an ID made up of the `repository` and `secret_name`: * * ```sh - * $ pulumi import github:index/codespacesSecret:CodespacesSecret example_secret / + * $ pulumi import github:index/codespacesSecret:CodespacesSecret example_secret example_repository/example_secret_name * ``` * NOTEthe implementation is limited in that it won't fetch the value of the `plaintext_value` or `encrypted_value` fields when importing. You may need to ignore changes for these as a workaround. */ diff --git a/sdk/python/pulumi_github/actions_organization_permissions.py b/sdk/python/pulumi_github/actions_organization_permissions.py index 88456113..b51f22c1 100644 --- a/sdk/python/pulumi_github/actions_organization_permissions.py +++ b/sdk/python/pulumi_github/actions_organization_permissions.py @@ -247,10 +247,10 @@ def __init__(__self__, ## Import - This resource can be imported using the ID of the GitHub organization: + This resource can be imported using the name of the GitHub organization: ```sh - $ pulumi import github:index/actionsOrganizationPermissions:ActionsOrganizationPermissions test + $ pulumi import github:index/actionsOrganizationPermissions:ActionsOrganizationPermissions test github_organization_name ``` :param str resource_name: The name of the resource. @@ -295,10 +295,10 @@ def __init__(__self__, ## Import - This resource can be imported using the ID of the GitHub organization: + This resource can be imported using the name of the GitHub organization: ```sh - $ pulumi import github:index/actionsOrganizationPermissions:ActionsOrganizationPermissions test + $ pulumi import github:index/actionsOrganizationPermissions:ActionsOrganizationPermissions test github_organization_name ``` :param str resource_name: The name of the resource. diff --git a/sdk/python/pulumi_github/actions_repository_access_level.py b/sdk/python/pulumi_github/actions_repository_access_level.py index 670ab881..2a3eca27 100644 --- a/sdk/python/pulumi_github/actions_repository_access_level.py +++ b/sdk/python/pulumi_github/actions_repository_access_level.py @@ -152,7 +152,7 @@ def __init__(__self__, This resource can be imported using the name of the GitHub repository: ```sh - $ pulumi import github:index/actionsRepositoryAccessLevel:ActionsRepositoryAccessLevel test + $ pulumi import github:index/actionsRepositoryAccessLevel:ActionsRepositoryAccessLevel test my-repository ``` :param str resource_name: The name of the resource. @@ -187,7 +187,7 @@ def __init__(__self__, This resource can be imported using the name of the GitHub repository: ```sh - $ pulumi import github:index/actionsRepositoryAccessLevel:ActionsRepositoryAccessLevel test + $ pulumi import github:index/actionsRepositoryAccessLevel:ActionsRepositoryAccessLevel test my-repository ``` :param str resource_name: The name of the resource. diff --git a/sdk/python/pulumi_github/codespaces_secret.py b/sdk/python/pulumi_github/codespaces_secret.py index c4233f2a..8d3ff67f 100644 --- a/sdk/python/pulumi_github/codespaces_secret.py +++ b/sdk/python/pulumi_github/codespaces_secret.py @@ -276,7 +276,7 @@ def __init__(__self__, This resource can be imported using an ID made up of the `repository` and `secret_name`: ```sh - $ pulumi import github:index/codespacesSecret:CodespacesSecret example_secret / + $ pulumi import github:index/codespacesSecret:CodespacesSecret example_secret example_repository/example_secret_name ``` NOTEthe implementation is limited in that it won't fetch the value of the `plaintext_value` or `encrypted_value` fields when importing. You may need to ignore changes for these as a workaround. @@ -316,7 +316,7 @@ def __init__(__self__, This resource can be imported using an ID made up of the `repository` and `secret_name`: ```sh - $ pulumi import github:index/codespacesSecret:CodespacesSecret example_secret / + $ pulumi import github:index/codespacesSecret:CodespacesSecret example_secret example_repository/example_secret_name ``` NOTEthe implementation is limited in that it won't fetch the value of the `plaintext_value` or `encrypted_value` fields when importing. You may need to ignore changes for these as a workaround.