You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: src/_includes/cloud/enable-ssh.md
+22-18Lines changed: 22 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -38,34 +38,23 @@ If the directory does not exist or has no SSH key files, you must generate at le
38
38
39
39
If you have at least one SSH key in your directory, add the key to your Magento and GitHub accounts:
40
40
41
-
-[Add an SSH key to your GitHub account](https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/)
41
+
-[Add an SSH key to your GitHub account](https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/) and [test the SSH connection](https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/testing-your-ssh-connection).
42
42
-[Add your public SSH key to your Magento account](#ssh-add-to-account)
43
43
44
-
### Test the SSH keys {#test}
45
-
46
-
After adding the SSH keys, test the SSH connection to GitHub:
47
-
48
-
1. In the terminal, enter the following command:
49
-
50
-
```bash
51
-
ssh -T git@github.com
52
-
```
53
-
54
-
1. You may see a warning that the authenticity of the host can't be established followed by an RSA fingerprint. Enter `yes` to continue.
55
-
56
-
1. If successful, you should receive a success message. If you receive a permission denied error, see [Error: Permission denied (publickey)](https://help.github.com/articles/error-permission-denied-publickey) troubleshooting on GitHub.
57
-
58
44
## Add a public SSH key to your Magento account {#ssh-add-to-account}
59
45
60
46
You can add SSH keys to your account in any of the following ways:
61
47
62
48
- Using the [{{site.data.var.ece}} CLI](#add-key-cli)
63
49
- Using the [{{site.data.var.ece}} Web Interface](#add-key-web)
50
+
- Using the [{{site.data.var.ece}} Cloud account Dashboard](#add-key-cloud)
51
+
52
+
After you add a key, you must [redeploy active Cloud environments](#update-cloud-environments-with-a-new-ssh-key) to upload the key.
64
53
65
54
### Add your SSH key using the CLI {#add-key-cli}
66
55
67
56
{:.procedure}
68
-
To add an SSH key using the CLI:
57
+
To add an SSH key using the [Magento Cloud CLI]({{site.baseurl}}/cloud/reference/cli-ref-topic.html):
69
58
70
59
1. Open a terminal application on your local workstation.
71
60
@@ -118,8 +107,23 @@ To add an SSH key using the Project Web interface:
118
107
119
108
- Follow the prompts on your screen to complete the task.
120
109
121
-
{:.bs-callout-tip}
122
-
You can view and manage the SSH keys on your account in _Account settings_. In the upper right corner of the Project Web interface, click **your-user-name** > **Account Settings**.
110
+
### Add a key from the Cloud Account dashboard {#add-key-cloud}
111
+
112
+
You can add your SSH public key directly from the Cloud _Account Settings_ page.
113
+
114
+
1. Open your [Cloud account page](https://accounts.magento.cloud) and log in if required.
115
+
1. On the Cloud account dashboard, click the **Account Settings** tab.
116
+
1. Under _SSH keys_, click **Add a public key**.
117
+
118
+
## Update Cloud environments with a new SSH key
119
+
120
+
After you add an SSH key, redeploy each active Cloud environment to upload the new key.
121
+
122
+
Use the [Magento Cloud CLI]({{site.baseurl}}/cloud/reference/cli-ref-topic.html) to redeploy the environment:
Copy file name to clipboardExpand all lines: src/_includes/graphql/company.md
+17-17Lines changed: 17 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -7,20 +7,20 @@ Attribute | Data type | Description
7
7
`credit` | CompanyCredit! | The company credit balance
8
8
`credit_history(filter: CompanyCreditHistoryFilterInput, pageSize: Int = 20, currentPage: Int = 1)` | CompanyCreditHistory! | A history of company credit operations
9
9
`email` | String | The email address of the company contact
10
-
`id` | ID! | The ID assigned to the company
10
+
`id` | ID! | The unique ID of a `Company` object
11
11
`legal_address` | [CompanyLegalAddress](#CompanyLegalAddress) | The address where the company is registered to conduct business
12
12
`legal_name` | String | The full legal name of the company
13
13
`name` | String | The name of the company
14
14
`payment_methods` | [String] | The list of payment methods available to a company
15
15
`reseller_id` | String | The resale number that is assigned to the company for tax reporting purposes
16
-
`role(id: ID!)` | [CompanyRole](#CompanyRole) | Returns information about the specified company role
16
+
`role(id: ID!)` | [CompanyRole](#CompanyRole) | Returns a company role filtered by the unique ID for a `CompanyRole` object
17
17
`roles(pageSize: Int = 20, currentPage: Int = 1 )` | [CompanyRoles!](#CompanyRoles) | Returns the list of company roles
18
18
`sales_representative` | [CompanySalesRepresentative](#CompanySalesRepresentative) | The company sales representative
19
19
`structure(rootId: ID = 0 depth: Int = 10 )` | [CompanyStructure](#CompanyStructure) | Returns the company structure of teams and customers in depth-first order
20
-
`team(id: ID!)` | [CompanyTeam](#CompanyTeam) | Returns the specified company team
21
-
`user(id: ID!)` | [Customer]({{page.baseurl}}/graphql/queries/customer.html) | Returns the specified company user
22
-
`users(filter: CompanyUsersFilterInput, pageSize: Int = 20, currentPage: Int = 1)`| [CompanyUsers](#CompanyUsers) | Returns the company users that match the specified filter
23
-
`vat_id` | String | The value-added tax number that is assigned to the company by some jurisdictions for tax reporting purposes
20
+
`team(id: ID!)` | [CompanyTeam](#CompanyTeam) | Returns company team data filtered by the unique ID for a `CompanyTeam` object
21
+
`user(id: ID!)` | [Customer]({{page.baseurl}}/graphql/queries/customer.html) | Returns a company user filtered by the unique ID for a `Customer` object
22
+
`users(filter: CompanyUsersFilterInput, pageSize: Int = 20, currentPage: Int = 1)`| [CompanyUsers](#CompanyUsers) | Returns a list of company users based on activity status
23
+
`vat_tax_id` | String | The value-added tax number that is assigned to the company by some jurisdictions for tax reporting purposes
Copy file name to clipboardExpand all lines: src/_includes/graphql/create-customer.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
Attribute | Data Type | Description
2
2
--- | --- | ---
3
-
`date_of_birth` | String | The customer’s date of birth
3
+
`date_of_birth` | String | The customer’s date of birth. In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
4
4
`dob` | String | Deprecated. Use `date_of_birth` instead. The customer’s date of birth
5
5
`email` | String | The customer’s email address. Required to create a customer
6
6
`firstname` | String | The customer’s first name. Required to create a customer
Copy file name to clipboardExpand all lines: src/_includes/graphql/customer-input-24.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ Attribute | Data Type | Description
2
2
--- | --- | ---
3
3
`addresses` | [CustomerAddress](#customerAddressInput) | An array containing the customer's shipping and billing addresses
4
4
`created_at` | String | Timestamp indicating when the account was created
5
-
`date_of_birth` | String | The customer's date of birth
5
+
`date_of_birth` | String | The customer's date of birth. In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
6
6
`default_billing` | String | The ID assigned to the billing address
7
7
`default_shipping` | String | The ID assigned to the shipping address
8
8
`dob` | String | Deprecated. Use `date_of_birth` instead. The customer's date of birth
Copy file name to clipboardExpand all lines: src/_includes/graphql/customer-input.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ Attribute | Data Type | Description
2
2
--- | --- | ---
3
3
`addresses` | [CustomerAddress](#customerAddressInput) | An array containing the customer's shipping and billing addresses
4
4
`created_at` | String | Timestamp indicating when the account was created
5
-
`date_of_birth` | String | The customer's date of birth
5
+
`date_of_birth` | String | The customer's date of birth. In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
6
6
`default_billing` | String | The ID assigned to the billing address
7
7
`default_shipping` | String | The ID assigned to the shipping address
8
8
`dob` | String | Deprecated. Use `date_of_birth` instead. The customer's date of birth
Copy file name to clipboardExpand all lines: src/_includes/graphql/customer-output-24.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ Attribute | Data Type | Description
19
19
`addresses` | {{ customeraddress_text }} | An array containing the customer's shipping and billing addresses
20
20
`allow_remote_shopping_assistance` | Boolean! | Indicates whether the customer has enabled remote shopping assistance
21
21
`created_at` | String | Timestamp indicating when the account was created
22
-
`date_of_birth` | String | The customer's date of birth
22
+
`date_of_birth` | String | The customer's date of birth. In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
23
23
`default_billing` | String | The ID assigned to the billing address
24
24
`default_shipping` | String | The ID assigned to the shipping address
25
25
`dob` | String | Deprecated. Use `date_of_birth` instead. The customer's date of birth
Copy file name to clipboardExpand all lines: src/_includes/graphql/customer-output.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ Attribute | Data Type | Description
2
2
--- | --- | ---
3
3
`addresses` | [CustomerAddress](#customerAddressOutput) | An array containing the customer's shipping and billing addresses
4
4
`created_at` | String | Timestamp indicating when the account was created
5
-
`date_of_birth` | String | The customer's date of birth
5
+
`date_of_birth` | String | The customer's date of birth. In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
6
6
`default_billing` | String | The ID assigned to the billing address
7
7
`default_shipping` | String | The ID assigned to the shipping address
8
8
`dob` | String | Deprecated. Use `date_of_birth` instead. The customer's date of birth
0 commit comments