Skip to content

Commit 59cf618

Browse files
author
Manushi Majumdar
committed
requested changes for premium guide
1 parent d60f96e commit 59cf618

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

guide/13-managing-arcgis-applications/hub-premium-guide.ipynb

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"\n",
3232
"Note: In order to replicate these workflows for yourself, you may have to verify the features available to you, per your ArcGIS Hub licensing. \n",
3333
"\n",
34-
"You may also want to look at these examples for site and page creation and cloning using __ArcGIS Basic__ (insert live URL) and site and page layout and theme editing using __Enterprise Sites__ (insert live URL) to see the other ways of working with your Hub using the ArcGIS API for Python. "
34+
"You may also want to look at these examples for site and page creation and cloning using [ArcGIS Basic](../guide/hub-for-guide-basic) and site and page layout and theme editing using [Enterprise Sites](../guide/enterprise-sites) to see the other ways of working with your Hub using the ArcGIS API for Python. "
3535
]
3636
},
3737
{
@@ -49,15 +49,15 @@
4949
}
5050
],
5151
"source": [
52-
"gis = GIS(\"https://www.arcgis.com\", \"mmajumdar_dcdev\")"
52+
"gis = GIS(profile=\"your_online_hub_premium_profile\")"
5353
]
5454
},
5555
{
5656
"cell_type": "markdown",
5757
"id": "723532c9",
5858
"metadata": {},
5959
"source": [
60-
"Next, we will connect to the Hub associated with this Web GIS."
60+
"Next, we will initialize a [Hub](https://developers.arcgis.com/python/api-reference/arcgis.apps.hub.html#hub) object to create an initiative with this Hub Premium Web GIS."
6161
]
6262
},
6363
{
@@ -127,6 +127,8 @@
127127
"id": "166f9ac9",
128128
"metadata": {},
129129
"source": [
130+
"A Hub Initiative comes with an Initiative item and a Site item. You also get a Content Team group created to manage the content in your initiative's content library and a Followers Team group that maintains a list of the followers of the initiative. Users with Administrative privileges that create an initiative will also have a Core Team group created as part of the initiative, to allow collaboration among members of that team.\n",
131+
"\n",
130132
"To access the site of an initiative, you can fetch the site using the `site_id` property of the initiative."
131133
]
132134
},
@@ -243,7 +245,9 @@
243245
"source": [
244246
"### Update an Initiative\n",
245247
"\n",
246-
"You can update certain initiative properties using the `update` method on the initiative object. The list of properties that can be updated using this method can be found [here](https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#arcgis.gis.Item.update)."
248+
"You can update certain initiative properties using the `update` method on the initiative object. The list of properties that can be updated using this method can be found [here](https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#arcgis.gis.Item.update).\n",
249+
"\n",
250+
"We will first print the current snippet of the initiative we created, update it and verify the update."
247251
]
248252
},
249253
{
@@ -314,7 +318,9 @@
314318
"id": "170d00cc",
315319
"metadata": {},
316320
"source": [
317-
"### Delete an Initiative"
321+
"### Delete an Initiative\n",
322+
"\n",
323+
"Deleting an initiative deletes the initiative and site items, as well as the groups created as part of the initiative creation process."
318324
]
319325
},
320326
{
@@ -463,7 +469,7 @@
463469
"name": "python",
464470
"nbconvert_exporter": "python",
465471
"pygments_lexer": "ipython3",
466-
"version": "3.7.11"
472+
"version": "3.7.16"
467473
}
468474
},
469475
"nbformat": 4,

0 commit comments

Comments
 (0)